Interface EndpointGroupProps
- All Superinterfaces:
EndpointGroupOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EndpointGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:02.380Z")
@Stability(Stable)
public interface EndpointGroupProps
extends software.amazon.jsii.JsiiSerializable, EndpointGroupOptions
Property of the EndpointGroup.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; import software.amazon.awscdk.services.globalaccelerator.*; IEndpoint endpoint; Listener listener; EndpointGroupProps endpointGroupProps = EndpointGroupProps.builder() .listener(listener) // the properties below are optional .endpointGroupName("endpointGroupName") .endpoints(List.of(endpoint)) .healthCheckInterval(Duration.minutes(30)) .healthCheckPath("healthCheckPath") .healthCheckPort(123) .healthCheckProtocol(HealthCheckProtocol.TCP) .healthCheckThreshold(123) .portOverrides(List.of(PortOverride.builder() .endpointPort(123) .listenerPort(123) .build())) .region("region") .trafficDialPercentage(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEndpointGroupProps
static final class
An implementation forEndpointGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic EndpointGroupProps.Builder
builder()
The Amazon Resource Name (ARN) of the listener.Methods inherited from interface software.amazon.awscdk.services.globalaccelerator.EndpointGroupOptions
getEndpointGroupName, getEndpoints, getHealthCheckInterval, getHealthCheckPath, getHealthCheckPort, getHealthCheckProtocol, getHealthCheckThreshold, getPortOverrides, getRegion, getTrafficDialPercentage
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListener
The Amazon Resource Name (ARN) of the listener. -
builder
- Returns:
- a
EndpointGroupProps.Builder
ofEndpointGroupProps
-