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