Interface CfnModelInvocationJobPropsMixin.VpcConfigProperty

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

@Stability(Stable) public static interface CfnModelInvocationJobPropsMixin.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration of a virtual private cloud (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.cfnpropertymixins.services.bedrock.*;
 VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: