interface PrivateEndpointOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.PrivateEndpointOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_PrivateEndpointOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.PrivateEndpointOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.PrivateEndpointOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » 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/cfn-property-mixins';
const privateEndpointOverrideProperty: bedrockagentcore.CfnHarnessPropsMixin.PrivateEndpointOverrideProperty = {
domain: 'domain',
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
vpcIdentifier: 'vpcIdentifier',
},
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
(optional)
privateEndpoint?
Type:
IResolvable | Private
(optional)
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.

.NET
Go
Java
Python
TypeScript