aws-cdk-lib.aws_appstream.CfnImageBuilder.VpcConfigProperty

interface VpcConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnImageBuilder.VpcConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnImageBuilder_VpcConfigProperty
Javasoftware.amazon.awscdk.services.appstream.CfnImageBuilder.VpcConfigProperty
Pythonaws_cdk.aws_appstream.CfnImageBuilder.VpcConfigProperty
TypeScript aws-cdk-lib » aws_appstream » CfnImageBuilder » VpcConfigProperty

The VPC configuration for the image builder.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const vpcConfigProperty: appstream.CfnImageBuilder.VpcConfigProperty = {
  securityGroupIds: ['securityGroupIds'],
  subnetIds: ['subnetIds'],
};

Properties

NameTypeDescription
securityGroupIds?string[]The identifiers of the security groups for the image builder.
subnetIds?string[]The identifier of the subnet to which a network interface is attached from the image builder instance.

securityGroupIds?

Type: string[] (optional)

The identifiers of the security groups for the image builder.


subnetIds?

Type: string[] (optional)

The identifier of the subnet to which a network interface is attached from the image builder instance.

An image builder instance can use one subnet.