Interface CfnEipEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEipEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.789Z")
@Stability(Stable)
public interface CfnEipEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for a NetworkLoadBalancerEndpoint.
Example:
Listener listener;
CfnEIP eip;
listener.addEndpointGroup("Group", EndpointGroupOptions.builder()
.endpoints(List.of(
CfnEipEndpoint.Builder.create(eip)
.weight(128)
.build()))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEipEndpointPropsstatic final classAn implementation forCfnEipEndpointProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEipEndpointProps.Builderbuilder()default NumberEndpoint weight across all endpoints in the group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWeight
Endpoint weight across all endpoints in the group.Must be a value between 0 and 255.
Default: 128
-
builder
- Returns:
- a
CfnEipEndpointProps.BuilderofCfnEipEndpointProps
-