interface ServiceNetworkEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnOdbNetworkPropsMixin.ServiceNetworkEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnOdbNetworkPropsMixin_ServiceNetworkEndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnOdbNetworkPropsMixin.ServiceNetworkEndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnOdbNetworkPropsMixin.ServiceNetworkEndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » CfnOdbNetworkPropsMixin » 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/cfn-property-mixins';
const serviceNetworkEndpointProperty: odb.CfnOdbNetworkPropsMixin.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