interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnAppBlockBuilderPropsMixin.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnAppBlockBuilderPropsMixin_VpcConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnAppBlockBuilderPropsMixin.VpcConfigProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnAppBlockBuilderPropsMixin.VpcConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnAppBlockBuilderPropsMixin » VpcConfigProperty |
Describes VPC configuration information for fleets and image builders.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const vpcConfigProperty: appstream_mixins.CfnAppBlockBuilderPropsMixin.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The identifiers of the security groups for the fleet or image builder. |
| subnet | string[] | The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. |
securityGroupIds?
Type:
string[]
(optional)
The identifiers of the security groups for the fleet or image builder.
subnetIds?
Type:
string[]
(optional)
The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance.
Fleet instances use one or more subnets. Image builder instances use one subnet.

.NET
Go
Java
Python
TypeScript