interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.ManagedVpcResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.ManagedVpcResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » 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/cfn-property-mixins';
const managedVpcResourceProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.ManagedVpcResourceProperty = {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
vpcIdentifier: 'vpcIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | |
| routing | string | |
| security | string[] | |
| subnet | string[] | |
| tags? | { [string]: string } | Tags applied to the AWS-managed VPC Lattice resource gateway when it is created on your behalf (tag-on-create). |
| vpc | string |
endpointIpAddressType?
Type:
string
(optional)
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)
subnetIds?
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.
vpcIdentifier?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript