Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html#cfn-appstream-imagebuilder-vpcconfig-securitygroupids

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html#cfn-appstream-imagebuilder-vpcconfig-subnetids

Back to top Generated by DocFX