interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.ManagedVpcResourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.ManagedVpcResourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » ManagedVpcResourceProperty |
Configuration for a managed VPC Lattice resource.
AgentCore creates and manages the VPC Lattice resource gateway and resource configuration on your behalf.
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.CfnOAuth2CredentialProvider.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 | The IP address type for the resource configuration endpoint. |
| subnet | string[] | The subnet IDs within the VPC where the VPC Lattice resource gateway is placed. |
| vpc | string | The ID of the VPC that contains your private resource. |
| routing | string | An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint. |
| security | string[] | The security group IDs to associate with the VPC Lattice resource gateway. |
| tags? | { [string]: string } | A map of tags (key-value pairs) to apply to a resource. |
endpointIpAddressType
Type:
string
The IP address type for the resource configuration endpoint.
subnetIds
Type:
string[]
The subnet IDs within the VPC where the VPC Lattice resource gateway is placed.
vpcIdentifier
Type:
string
The ID of the VPC that contains your private resource.
routingDomain?
Type:
string
(optional)
An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint.
securityGroupIds?
Type:
string[]
(optional)
The security group IDs to associate with the VPC Lattice resource gateway.
tags?
Type:
{ [string]: string }
(optional)
A map of tags (key-value pairs) to apply to a resource.

.NET
Go
Java
Python
TypeScript