Interface CfnImageBuilder.VpcConfigProperty

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

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