interface VpcEndpointProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.OSIS.CfnPipeline.VpcEndpointProperty | 
  Java | software.amazon.awscdk.services.osis.CfnPipeline.VpcEndpointProperty | 
  Python | aws_cdk.aws_osis.CfnPipeline.VpcEndpointProperty | 
  TypeScript  | @aws-cdk/aws-osis » CfnPipeline » VpcEndpointProperty | 
An OpenSearch Ingestion-managed VPC endpoint that will access one or more pipelines.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as osis from '@aws-cdk/aws-osis';
const vpcEndpointProperty: osis.CfnPipeline.VpcEndpointProperty = {
  vpcEndpointId: 'vpcEndpointId',
  vpcId: 'vpcId',
  vpcOptions: {
    securityGroupIds: ['securityGroupIds'],
    subnetIds: ['subnetIds'],
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| vpc | string | The unique identifier of the endpoint. | 
| vpc | string | The ID for your VPC. | 
| vpc | IResolvable | Vpc | Information about the VPC, including associated subnets and security groups. | 
vpcEndpointId?
Type:
string
(optional)
The unique identifier of the endpoint.
vpcId?
Type:
string
(optional)
The ID for your VPC.
AWS PrivateLink generates this value when you create a VPC.
vpcOptions?
Type:
IResolvable | Vpc
(optional)
Information about the VPC, including associated subnets and security groups.

 .NET
 Java
 Python
 TypeScript