Interface CfnPipeline.VpcOptionsProperty

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

@Stability(Stable) public static interface CfnPipeline.VpcOptionsProperty extends software.amazon.jsii.JsiiSerializable
Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.

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.*;
 VpcOptionsProperty vpcOptionsProperty = VpcOptionsProperty.builder()
         .subnetIds(List.of("subnetIds"))
         // the properties below are optional
         .securityGroupIds(List.of("securityGroupIds"))
         .build();
 

See Also: