interface VpcOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_osis.CfnPipeline.VpcOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsosis#CfnPipeline_VpcOptionsProperty |
Java | software.amazon.awscdk.services.osis.CfnPipeline.VpcOptionsProperty |
Python | aws_cdk.aws_osis.CfnPipeline.VpcOptionsProperty |
TypeScript | aws-cdk-lib » aws_osis » CfnPipeline » VpcOptionsProperty |
Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_osis as osis } from 'aws-cdk-lib';
const vpcOptionsProperty: osis.CfnPipeline.VpcOptionsProperty = {
subnetIds: ['subnetIds'],
// the properties below are optional
securityGroupIds: ['securityGroupIds'],
vpcAttachmentOptions: {
attachToVpc: false,
cidrBlock: 'cidrBlock',
},
vpcEndpointManagement: 'vpcEndpointManagement',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string[] | A list of subnet IDs associated with the VPC endpoint. |
| security | string[] | A list of security groups associated with the VPC endpoint. |
| vpc | IResolvable | Vpc | Options for attaching a VPC to a pipeline. |
| vpc | string | Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline. |
subnetIds
Type:
string[]
A list of subnet IDs associated with the VPC endpoint.
securityGroupIds?
Type:
string[]
(optional)
A list of security groups associated with the VPC endpoint.
vpcAttachmentOptions?
Type:
IResolvable | Vpc
(optional)
Options for attaching a VPC to a pipeline.
vpcEndpointManagement?
Type:
string
(optional)
Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.

.NET
Go
Java
Python
TypeScript