interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnImageBuilder.VpcConfigProperty |
Java | software.amazon.awscdk.services.appstream.CfnImageBuilder.VpcConfigProperty |
Python | aws_cdk.aws_appstream.CfnImageBuilder.VpcConfigProperty |
TypeScript | @aws-cdk/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 * as appstream from '@aws-cdk/aws-appstream';
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.

.NET
Java
Python
TypeScript