interface VpcAttachmentOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OSIS.Mixins.CfnPipelinePropsMixin.VpcAttachmentOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsosis/mixins#CfnPipelinePropsMixin_VpcAttachmentOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.osis.mixins.CfnPipelinePropsMixin.VpcAttachmentOptionsProperty |
Python | aws_cdk.mixins_preview.aws_osis.mixins.CfnPipelinePropsMixin.VpcAttachmentOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_osis » mixins » CfnPipelinePropsMixin » VpcAttachmentOptionsProperty |
Options for attaching a VPC to pipeline.
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 vpcAttachmentOptionsProperty: osis_mixins.CfnPipelinePropsMixin.VpcAttachmentOptionsProperty = {
attachToVpc: false,
cidrBlock: 'cidrBlock',
};
Properties
| Name | Type | Description |
|---|---|---|
| attach | boolean | IResolvable | Whether a VPC is attached to the pipeline. |
| cidr | string | The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs). |
attachToVpc?
Type:
boolean | IResolvable
(optional)
Whether a VPC is attached to the pipeline.
cidrBlock?
Type:
string
(optional)
The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).

.NET
Go
Java
Python
TypeScript