interface PrivateEndpointOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.PrivateEndpointOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_PrivateEndpointOverrideProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.PrivateEndpointOverrideProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.PrivateEndpointOverrideProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » PrivateEndpointOverrideProperty |
Maps a domain to a private endpoint for resolving that domain over a private network.
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.CfnHarness.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 | |
| private | IResolvable | Private | Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network. |
domain
Type:
string
privateEndpoint
Type:
IResolvable | Private
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.

.NET
Go
Java
Python
TypeScript