interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.ManagedVpcResourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.ManagedVpcResourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » ManagedVpcResourceProperty |
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.CfnGatewayTarget.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 | |
| subnet | string[] | |
| vpc | string | |
| routing | string | |
| security | string[] | |
| tags? | { [string]: string } | Tags applied to the AWS-managed VPC Lattice resource gateway when it is created on your behalf (tag-on-create). |
endpointIpAddressType
Type:
string
subnetIds
Type:
string[]
vpcIdentifier
Type:
string
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)
tags?
Type:
{ [string]: string }
(optional)
Tags applied to the AWS-managed VPC Lattice resource gateway when it is created on your behalf (tag-on-create).
Useful for cost allocation. These tags are forwarded to VPC Lattice and are not stored on the gateway target itself.

.NET
Go
Java
Python
TypeScript