Interface CfnWorkforce.WorkforceVpcConfigRequestProperty

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

@Stability(Stable) public static interface CfnWorkforce.WorkforceVpcConfigRequestProperty extends software.amazon.jsii.JsiiSerializable
The VPC configuration for the workforce.

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.sagemaker.*;
 WorkforceVpcConfigRequestProperty workforceVpcConfigRequestProperty = WorkforceVpcConfigRequestProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnets(List.of("subnets"))
         .vpcId("vpcId")
         .build();
 

See Also: