interface VpcConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnImageBuilder.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnImageBuilder_VpcConfigProperty |
Java | software.amazon.awscdk.services.appstream.CfnImageBuilder.VpcConfigProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
security | string[] | The identifiers of the security groups for the image builder. |
subnet | 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.