interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.ManagedVpcResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.ManagedVpcResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » 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/cfn-property-mixins';
const managedVpcResourceProperty: bedrockagentcore.CfnHarnessPropsMixin.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 } | |
| vpc | string |
endpointIpAddressType?
Type:
string
(optional)
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)
subnetIds?
Type:
string[]
(optional)
tags?
Type:
{ [string]: string }
(optional)
vpcIdentifier?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript