Class CfnPipelinePropsMixin.VpcAttachmentOptionsProperty
Options for attaching a VPC to pipeline.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.OSIS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.VpcAttachmentOptionsProperty : CfnPipelinePropsMixin.IVpcAttachmentOptionsProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.VpcAttachmentOptionsProperty Implements CfnPipelinePropsMixin.IVpcAttachmentOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OSIS;
var vpcAttachmentOptionsProperty = new VpcAttachmentOptionsProperty {
AttachToVpc = false,
CidrBlock = "cidrBlock"
};
Synopsis
Constructors
| VpcAttachmentOptionsProperty() | Options for attaching a VPC to pipeline. |
Properties
| AttachToVpc | Whether a VPC is attached to the pipeline. |
| CidrBlock | The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs). |
Constructors
VpcAttachmentOptionsProperty()
Options for attaching a VPC to pipeline.
public VpcAttachmentOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OSIS;
var vpcAttachmentOptionsProperty = new VpcAttachmentOptionsProperty {
AttachToVpc = false,
CidrBlock = "cidrBlock"
};
Properties
AttachToVpc
Whether a VPC is attached to the pipeline.
public object? AttachToVpc { get; set; }
Property Value
Remarks
CidrBlock
The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).
public string? CidrBlock { get; set; }