Interface CfnTestGridProject.VpcConfigProperty

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

@Stability(Stable) public static interface CfnTestGridProject.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
The VPC security groups and subnets attached to the TestGrid project.

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

See Also: