interface PrivateEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.PrivateEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_PrivateEndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.PrivateEndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.PrivateEndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » PrivateEndpointProperty |
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint 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 privateEndpointProperty: bedrockagentcore.CfnHarnessPropsMixin.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 service-managed VPC endpoint. |
| self | IResolvable | Self | Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration. |
managedVpcResource?
Type:
IResolvable | Managed
(optional)
Configuration for a service-managed VPC endpoint.
selfManagedLatticeResource?
Type:
IResolvable | Self
(optional)
Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.

.NET
Go
Java
Python
TypeScript