Interface CfnVpcEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:25:01.758Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVpcEndpointProps
static final class
An implementation forCfnVpcEndpointProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnVpcEndpointProps.Builder
builder()
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
-
getName
The name of the endpoint.- See Also:
-
getSubnetIds
The ID of the subnets from which you access OpenSearch Serverless.- See Also:
-
getVpcId
The ID of the VPC from which you access OpenSearch Serverless.- See Also:
-
getSecurityGroupIds
The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.- See Also:
-
builder
- Returns:
- a
CfnVpcEndpointProps.Builder
ofCfnVpcEndpointProps
-