interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.ManagedVpcResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.ManagedVpcResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » 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/cfn-property-mixins';
const managedVpcResourceProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.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 resource configuration endpoint. |
| 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. |
| subnet | string[] | The subnet IDs within the VPC where the VPC Lattice resource gateway is placed. |
| tags? | { [string]: string } | A map of tags (key-value pairs) to apply to a resource. |
| vpc | string | The ID of the VPC that contains your private resource. |
endpointIpAddressType?
Type:
string
(optional)
The IP address type for the resource configuration endpoint.
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.
subnetIds?
Type:
string[]
(optional)
The subnet IDs within the VPC where the VPC Lattice resource gateway is placed.
tags?
Type:
{ [string]: string }
(optional)
A map of tags (key-value pairs) to apply to a resource.
vpcIdentifier?
Type:
string
(optional)
The ID of the VPC that contains your private resource.

.NET
Go
Java
Python
TypeScript