interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.ManagedVpcResourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.ManagedVpcResourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » ManagedVpcResourceProperty |
Configuration for a service-managed VPC endpoint.
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.CfnHarness.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 } |
endpointIpAddressType
Type:
string
subnetIds
Type:
string[]
vpcIdentifier
Type:
string
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript