interface PrivateEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_PrivateEndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » PrivateEndpointProperty |
The private endpoint configuration for connecting to private resources in your VPC.
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 privateEndpointProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty = {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
vpcIdentifier: 'vpcIdentifier',
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| managed | IResolvable | Managed | Configuration for a managed VPC Lattice resource. |
| self | IResolvable | Self | Configuration for a self-managed VPC Lattice resource. |
managedVpcResource?
Type:
IResolvable | Managed
(optional)
Configuration for a managed VPC Lattice resource.
AgentCore creates and manages the VPC Lattice resource gateway and resource configuration on your behalf.
selfManagedLatticeResource?
Type:
IResolvable | Self
(optional)
Configuration for a self-managed VPC Lattice resource.
You create and manage the VPC Lattice resource gateway and resource configuration, then provide the resource configuration identifier.

.NET
Go
Java
Python
TypeScript