interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_VpcConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.VpcConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.VpcConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnRuntimePropsMixin » VpcConfigProperty |
Network mode configuration for VPC.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const vpcConfigProperty: bedrockagentcore.CfnRuntimePropsMixin.VpcConfigProperty = {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | Security groups for VPC. |
| subnets? | string[] | Subnets for VPC. |
securityGroups?
Type:
string[]
(optional)
Security groups for VPC.
subnets?
Type:
string[]
(optional)
Subnets for VPC.

.NET
Go
Java
Python
TypeScript