Interface CfnImageBuilderPropsMixin.IVpcConfigProperty
The VPC configuration for the image builder.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppStream
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnImageBuilderPropsMixin.IVpcConfigProperty
Syntax (vb)
Public Interface CfnImageBuilderPropsMixin.IVpcConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppStream;
var vpcConfigProperty = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" }
};
Synopsis
Properties
| SecurityGroupIds | The identifiers of the security groups for the image builder. |
| SubnetIds | The identifier of the subnet to which a network interface is attached from the image builder instance. |
Properties
SecurityGroupIds
The identifiers of the security groups for the image builder.
string[]? SecurityGroupIds { get; }
Property Value
string[]
Remarks
SubnetIds
The identifier of the subnet to which a network interface is attached from the image builder instance.
string[]? SubnetIds { get; }
Property Value
string[]
Remarks
An image builder instance can use one subnet.