Interface CfnModelInvocationJob.VpcConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelInvocationJob.VpcConfigProperty.Jsii$Proxy
- Enclosing class:
CfnModelInvocationJob
@Stability(Stable)
public static interface CfnModelInvocationJob.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.services.bedrock.*;
VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelInvocationJob.VpcConfigPropertystatic final classAn implementation forCfnModelInvocationJob.VpcConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of IDs for each security group in the VPC to use.An array of IDs for each subnet in the VPC to use.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
An array of IDs for each security group in the VPC to use.- See Also:
-
getSubnetIds
An array of IDs for each subnet in the VPC to use.- See Also:
-
builder
-