interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnModelInvocationJobPropsMixin.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnModelInvocationJobPropsMixin_VpcConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnModelInvocationJobPropsMixin.VpcConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnModelInvocationJobPropsMixin.VpcConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnModelInvocationJobPropsMixin » 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/cfn-property-mixins';
const vpcConfigProperty: bedrock.CfnModelInvocationJobPropsMixin.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[]
(optional)
An array of IDs for each security group in the VPC to use.
subnetIds?
Type:
string[]
(optional)
An array of IDs for each subnet in the VPC to use.

.NET
Go
Java
Python
TypeScript