Interface CfnFleet.VpcConfigProperty

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

@Stability(Stable) public static interface CfnFleet.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about the VPC configuration that AWS CodeBuild accesses.

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

See Also: