Interface EndpointGroupProps
- All Superinterfaces:
EndpointGroupOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EndpointGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:45.512Z")
@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.services.globalaccelerator.*;
import software.amazon.awscdk.core.*;
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEndpointGroupPropsstatic final classAn implementation forEndpointGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic EndpointGroupProps.Builderbuilder()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, getTrafficDialPercentageMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListener
The Amazon Resource Name (ARN) of the listener. -
builder
- Returns:
- a
EndpointGroupProps.BuilderofEndpointGroupProps
-