Interface CfnEipEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEipEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:24:59.071Z")
@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 class
A builder forCfnEipEndpointProps
static final class
An implementation forCfnEipEndpointProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEipEndpointProps.Builder
builder()
default Number
Endpoint 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.Builder
ofCfnEipEndpointProps
-