interface PrivateEndpointOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_PrivateEndpointOverrideProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » PrivateEndpointOverrideProperty |
A mapping of a specific domain to a private endpoint for secure connectivity through a VPC Lattice resource configuration.
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 privateEndpointOverrideProperty: bedrockagentcore.CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty = {
domain: 'domain',
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
// the properties below are optional
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
tags: {
tagsKey: 'tags',
},
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain to override with a private endpoint. |
| private | IResolvable | Private | The private endpoint configuration for connecting to private resources in your VPC. |
domain
Type:
string
The domain to override with a private endpoint.
privateEndpoint
Type:
IResolvable | Private
The private endpoint configuration for connecting to private resources in your VPC.

.NET
Go
Java
Python
TypeScript