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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.VpcEndpointPropertystatic final classAn implementation forCfnPipeline.VpcEndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpcEndpointId
The unique identifier of the endpoint.- See Also:
-
getVpcId
The ID for your VPC.AWS PrivateLink generates this value when you create a VPC.
- See Also:
-
getVpcOptions
Information about the VPC, including associated subnets and security groups.Returns union: either
IResolvableorCfnPipeline.VpcOptionsProperty- See Also:
-
builder
-