interface VpcOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OSIS.CfnPipelinePropsMixin.VpcOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsosis#CfnPipelinePropsMixin_VpcOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.osis.CfnPipelinePropsMixin.VpcOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_osis.CfnPipelinePropsMixin.VpcOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_osis » 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 { aws_osis as osis } from '@aws-cdk/cfn-property-mixins';
const vpcOptionsProperty: osis.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