Interface CfnVpcEndpointProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnVpcEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:00.560Z")
@Stability(Stable)
public interface CfnVpcEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnVpcEndpoint.
 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.opensearchserverless.*;
 CfnVpcEndpointProps cfnVpcEndpointProps = CfnVpcEndpointProps.builder()
         .name("name")
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         // the properties below are optional
         .securityGroupIds(List.of("securityGroupIds"))
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVpcEndpointPropsstatic final classAn implementation forCfnVpcEndpointProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnVpcEndpointProps.Builderbuilder()getName()The name of the endpoint.The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.The ID of the subnets from which you access OpenSearch Serverless.getVpcId()The ID of the VPC from which you access OpenSearch Serverless.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNameThe name of the endpoint.
- 
getSubnetIdsThe ID of the subnets from which you access OpenSearch Serverless.
- 
getVpcIdThe ID of the VPC from which you access OpenSearch Serverless.
- 
getSecurityGroupIdsThe unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
- 
builder- Returns:
- a CfnVpcEndpointProps.BuilderofCfnVpcEndpointProps
 
 
-