interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderPropsMixin » 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/cfn-property-mixins';
const vpcConfigurationProperty: bedrockagentcore.CfnCapacityProviderPropsMixin.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[]
(optional)
The IDs of the security groups to associate with the instances.
subnets?
Type:
string[]
(optional)
The IDs of the subnets in which to launch instances.

.NET
Go
Java
Python
TypeScript