Interface CfnFlywheel.VpcConfigProperty

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

@Stability(Stable) public static interface CfnFlywheel.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

For more information, see Amazon VPC .

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.comprehend.*;
 VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnets(List.of("subnets"))
         .build();
 

See Also: