interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCapacityProvider.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCapacityProvider_VpcConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCapacityProvider.VpcConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCapacityProvider.VpcConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCapacityProvider » VpcConfigurationProperty |
VPC configuration for launching EC2 instances.
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-lib';
const vpcConfigurationProperty: bedrockagentcore.CfnCapacityProvider.VpcConfigurationProperty = {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The IDs of the security groups to associate with the instances. |
| subnets | string[] | The IDs of the subnets in which to launch instances. |
securityGroups
Type:
string[]
The IDs of the security groups to associate with the instances.
subnets
Type:
string[]
The IDs of the subnets in which to launch instances.

.NET
Go
Java
Python
TypeScript