interface VpcOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OSIS.Mixins.CfnPipelinePropsMixin.VpcOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsosis/mixins#CfnPipelinePropsMixin_VpcOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.osis.mixins.CfnPipelinePropsMixin.VpcOptionsProperty |
Python | aws_cdk.mixins_preview.aws_osis.mixins.CfnPipelinePropsMixin.VpcOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_osis » mixins » CfnPipelinePropsMixin » 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 { mixins as osis_mixins } from '@aws-cdk/mixins-preview/aws-osis';
const vpcOptionsProperty: osis_mixins.CfnPipelinePropsMixin.VpcOptionsProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcAttachmentOptions: {
attachToVpc: false,
cidrBlock: 'cidrBlock',
},
vpcEndpointManagement: 'vpcEndpointManagement',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | A list of security groups associated with the VPC endpoint. |
| subnet | string[] | A list of subnet IDs 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. |
securityGroupIds?
Type:
string[]
(optional)
A list of security groups associated with the VPC endpoint.
subnetIds?
Type:
string[]
(optional)
A list of subnet IDs 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