Interface CfnPipeline.VpcEndpointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.VpcEndpointProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.VpcEndpointProperty extends software.amazon.jsii.JsiiSerializable
An OpenSearch Ingestion-managed VPC endpoint that will access one or more pipelines.

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.*;
 VpcEndpointProperty vpcEndpointProperty = VpcEndpointProperty.builder()
         .vpcEndpointId("vpcEndpointId")
         .vpcId("vpcId")
         .vpcOptions(VpcOptionsProperty.builder()
                 .subnetIds(List.of("subnetIds"))
                 // the properties below are optional
                 .securityGroupIds(List.of("securityGroupIds"))
                 .vpcAttachmentOptions(VpcAttachmentOptionsProperty.builder()
                         .attachToVpc(false)
                         .cidrBlock("cidrBlock")
                         .build())
                 .vpcEndpointManagement("vpcEndpointManagement")
                 .build())
         .build();
 

See Also: