@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.515Z") @Stability(value=Stable) public interface EndpointGroupProps extends software.amazon.jsii.JsiiSerializable, EndpointGroupOptions
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EndpointGroupProps.Builder
A builder for
EndpointGroupProps |
static class |
EndpointGroupProps.Jsii$Proxy
An implementation for
EndpointGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static EndpointGroupProps.Builder |
builder() |
IListener |
getListener()
The Amazon Resource Name (ARN) of the listener.
|
getEndpointGroupName, getEndpoints, getHealthCheckInterval, getHealthCheckPath, getHealthCheckPort, getHealthCheckProtocol, getHealthCheckThreshold, getPortOverrides, getRegion, getTrafficDialPercentage@Stability(value=Stable) @NotNull IListener getListener()
@Stability(value=Stable) static EndpointGroupProps.Builder builder()
builder in interface EndpointGroupOptionsEndpointGroupProps.Builder of EndpointGroupPropsCopyright © 2022. All rights reserved.