Interface CfnHost.VpcConfigurationProperty

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

@Stability(Stable) public static interface CfnHost.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.services.codeconnections.*;
 VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         // the properties below are optional
         .tlsCertificate("tlsCertificate")
         .build();
 

See Also: