interface PrivateEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.PrivateEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_PrivateEndpointProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.PrivateEndpointProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.PrivateEndpointProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » PrivateEndpointProperty |
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 privateEndpointProperty: bedrockagentcore.CfnRuntime.PrivateEndpointProperty = {
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 |
|---|---|---|
| managed | IResolvable | Managed | Managed VPC resource configuration. |
| self | IResolvable | Self | Self-managed VPC Lattice resource configuration. |
managedVpcResource?
Type:
IResolvable | Managed
(optional)
Managed VPC resource configuration.
selfManagedLatticeResource?
Type:
IResolvable | Self
(optional)
Self-managed VPC Lattice resource configuration.

.NET
Go
Java
Python
TypeScript