Interface CfnHostPropsMixin.VpcConfigurationProperty

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

@Stability(Stable) public static interface CfnHostPropsMixin.VpcConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The VPC configuration provisioned for the host.

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.codeconnections.*;
 VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .tlsCertificate("tlsCertificate")
         .vpcId("vpcId")
         .build();
 

See Also: