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'],
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | |
| subnet | string[] | |
| vpc | string | |
| routing | string | |
| security | string[] |
endpointIpAddressType
Type:
string
subnetIds
Type:
string[]
vpcIdentifier
Type:
string
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript