Interface CfnAppBlockBuilderPropsMixin.VpcConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAppBlockBuilderPropsMixin.VpcConfigProperty.Jsii$Proxy
Enclosing class:
CfnAppBlockBuilderPropsMixin

@Stability(Stable) public static interface CfnAppBlockBuilderPropsMixin.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.appstream.*;
 VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: