interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.ManagedVpcResourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.ManagedVpcResourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » ManagedVpcResourceProperty |
Managed VPC resource configuration.
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 managedVpcResourceProperty: bedrockagentcore.CfnRuntime.ManagedVpcResourceProperty = {
endpointIpAddressType: 'endpointIpAddressType',
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
// the properties below are optional
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The IP address type for the endpoint. |
| subnet | string[] | The subnet IDs. |
| vpc | string | The VPC identifier. |
| routing | string | An intermediate domain to use as the resource configuration endpoint instead of the actual target domain. |
| security | string[] | The security group IDs. |
| tags? | { [string]: string } | Tags to apply to the managed VPC Lattice resource gateway. |
endpointIpAddressType
Type:
string
The IP address type for the endpoint.
subnetIds
Type:
string[]
The subnet IDs.
vpcIdentifier
Type:
string
The VPC identifier.
routingDomain?
Type:
string
(optional)
An intermediate domain to use as the resource configuration endpoint instead of the actual target domain.
securityGroupIds?
Type:
string[]
(optional)
The security group IDs.
tags?
Type:
{ [string]: string }
(optional)
Tags to apply to the managed VPC Lattice resource gateway.

.NET
Go
Java
Python
TypeScript