@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:07.485Z") @Stability(value=Experimental) 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.core.*;
import software.amazon.awscdk.services.globalaccelerator.*;
Duration duration;
IEndpoint endpoint;
Listener listener;
EndpointGroupProps endpointGroupProps = EndpointGroupProps.builder()
.listener(listener)
// the properties below are optional
.endpointGroupName("endpointGroupName")
.endpoints(List.of(endpoint))
.healthCheckInterval(duration)
.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()
(experimental) The Amazon Resource Name (ARN) of the listener.
|
getEndpointGroupName, getEndpoints, getHealthCheckInterval, getHealthCheckPath, getHealthCheckPort, getHealthCheckProtocol, getHealthCheckThreshold, getPortOverrides, getRegion, getTrafficDialPercentage@Stability(value=Experimental) @NotNull IListener getListener()
@Stability(value=Experimental) static EndpointGroupProps.Builder builder()
builder in interface EndpointGroupOptionsEndpointGroupProps.Builder of EndpointGroupPropsCopyright © 2022. All rights reserved.