Interface CfnVpcEndpointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcEndpointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:02.030Z")
@Stability(Stable)
public interface CfnVpcEndpointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVpcEndpointPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.*;
CfnVpcEndpointMixinProps cfnVpcEndpointMixinProps = CfnVpcEndpointMixinProps.builder()
.name("name")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVpcEndpointMixinPropsstatic final classAn implementation forCfnVpcEndpointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()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.default StringgetVpcId()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:
-
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.Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- 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:
-
builder
- Returns:
- a
CfnVpcEndpointMixinProps.BuilderofCfnVpcEndpointMixinProps
-