public static interface EndpointDescription.Builder extends SdkPojo, CopyableBuilder<EndpointDescription.Builder,EndpointDescription>
Modifier and Type | Method and Description |
---|---|
EndpointDescription.Builder |
endpointId(String endpointId)
An ID for the endpoint.
|
EndpointDescription.Builder |
healthReason(String healthReason)
The reason code associated with why the endpoint is not healthy.
|
EndpointDescription.Builder |
healthState(HealthState healthState)
The health status of the endpoint.
|
EndpointDescription.Builder |
healthState(String healthState)
The health status of the endpoint.
|
EndpointDescription.Builder |
weight(Integer weight)
The weight associated with the endpoint.
|
copy
applyMutation, build
EndpointDescription.Builder endpointId(String endpointId)
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID.
endpointId
- An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this
is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is
the Elastic IP address allocation ID.EndpointDescription.Builder weight(Integer weight)
The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint Weights in the AWS Global Accelerator Developer Guide.
weight
- The weight associated with the endpoint. When you add weights to endpoints, you configure AWS Global
Accelerator to route traffic based on proportions that you specify. For example, you might specify
endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is
routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is
routed to the last endpoint. For more information, see Endpoint Weights in the AWS Global Accelerator Developer Guide.EndpointDescription.Builder healthState(String healthState)
The health status of the endpoint.
healthState
- The health status of the endpoint.HealthState
,
HealthState
EndpointDescription.Builder healthState(HealthState healthState)
The health status of the endpoint.
healthState
- The health status of the endpoint.HealthState
,
HealthState
EndpointDescription.Builder healthReason(String healthReason)
The reason code associated with why the endpoint is not healthy. If the endpoint state is healthy, a reason code is not provided.
If the endpoint state is unhealthy, the reason code can be one of the following values:
Timeout: The health check requests to the endpoint are timing out before returning a status.
Failed: The health check failed, for example because the endpoint response was invalid (malformed).
If the endpoint state is initial, the reason code can be one of the following values:
ProvisioningInProgress: The endpoint is in the process of being provisioned.
InitialHealthChecking: Global Accelerator is still setting up the minimum number of health checks for the endpoint that are required to determine its health status.
healthReason
- The reason code associated with why the endpoint is not healthy. If the endpoint state is healthy, a
reason code is not provided.
If the endpoint state is unhealthy, the reason code can be one of the following values:
Timeout: The health check requests to the endpoint are timing out before returning a status.
Failed: The health check failed, for example because the endpoint response was invalid (malformed).
If the endpoint state is initial, the reason code can be one of the following values:
ProvisioningInProgress: The endpoint is in the process of being provisioned.
InitialHealthChecking: Global Accelerator is still setting up the minimum number of health checks for the endpoint that are required to determine its health status.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.