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

.NET
Go
Java
Python
TypeScript