Interface CfnPipeline.VpcAttachmentOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.VpcAttachmentOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.VpcAttachmentOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.osis.*;
VpcAttachmentOptionsProperty vpcAttachmentOptionsProperty = VpcAttachmentOptionsProperty.builder()
.attachToVpc(false)
.cidrBlock("cidrBlock")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.VpcAttachmentOptionsPropertystatic final classAn implementation forCfnPipeline.VpcAttachmentOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Whether a VPC is attached to the pipeline.The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachToVpc
Whether a VPC is attached to the pipeline.Returns union: either
BooleanorIResolvable- See Also:
-
getCidrBlock
The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).- See Also:
-
builder
-