interface ServiceNetworkEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ODB.CfnOdbNetwork.ServiceNetworkEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnOdbNetwork_ServiceNetworkEndpointProperty |
Java | software.amazon.awscdk.services.odb.CfnOdbNetwork.ServiceNetworkEndpointProperty |
Python | aws_cdk.aws_odb.CfnOdbNetwork.ServiceNetworkEndpointProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnOdbNetwork » ServiceNetworkEndpointProperty |
The configuration for a service network endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from 'aws-cdk-lib';
const serviceNetworkEndpointProperty: odb.CfnOdbNetwork.ServiceNetworkEndpointProperty = {
vpcEndpointId: 'vpcEndpointId',
vpcEndpointType: 'vpcEndpointType',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | The identifier of the VPC endpoint. |
| vpc | string | The type of the VPC endpoint. |
vpcEndpointId?
Type:
string
(optional)
The identifier of the VPC endpoint.
vpcEndpointType?
Type:
string
(optional)
The type of the VPC endpoint.

.NET
Go
Java
Python
TypeScript