interface PrivateEndpointOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.PrivateEndpointOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_PrivateEndpointOverrideProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.PrivateEndpointOverrideProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.PrivateEndpointOverrideProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » PrivateEndpointOverrideProperty |
Override mapping of a domain to a private endpoint.
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.CfnRuntime.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. |
| private | IResolvable | Private | Private endpoint configuration. |
domain
Type:
string
The domain to override.
privateEndpoint
Type:
IResolvable | Private
Private endpoint configuration.
Exactly one of SelfManagedLatticeResource or ManagedVpcResource must be specified.

.NET
Go
Java
Python
TypeScript