interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnModelInvocationJob.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnModelInvocationJob_VpcConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnModelInvocationJob.VpcConfigProperty |
Python | aws_cdk.aws_bedrock.CfnModelInvocationJob.VpcConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnModelInvocationJob » VpcConfigProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const vpcConfigProperty: bedrock.CfnModelInvocationJob.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | An array of IDs for each security group in the VPC to use. |
| subnet | string[] | An array of IDs for each subnet in the VPC to use. |
securityGroupIds
Type:
string[]
An array of IDs for each security group in the VPC to use.
subnetIds
Type:
string[]
An array of IDs for each subnet in the VPC to use.

.NET
Go
Java
Python
TypeScript