2019/08/28 - AWS Global Accelerator - 4 updated api methods
Changes API Update for AWS Global Accelerator Client IP Preservation
{'EndpointConfigurations': {'ClientIPPreservationEnabled': 'boolean'}}Response
{'EndpointGroup': {'EndpointDescriptions': {'ClientIPPreservationEnabled': 'boolean'}}}
Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one AWS Region. To see an AWS CLI example of creating an endpoint group, scroll down to Example .
See also: AWS API Documentation
Request Syntax
client.create_endpoint_group( ListenerArn='string', EndpointGroupRegion='string', EndpointConfigurations=[ { 'EndpointId': 'string', 'Weight': 123, 'ClientIPPreservationEnabled': True|False }, ], TrafficDialPercentage=..., HealthCheckPort=123, HealthCheckProtocol='TCP'|'HTTP'|'HTTPS', HealthCheckPath='string', HealthCheckIntervalSeconds=123, ThresholdCount=123, IdempotencyToken='string' )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
string
[REQUIRED]
The name of the AWS Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
list
The list of endpoint objects.
(dict) --
A complex type for endpoints.
EndpointId (string) --
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.
Weight (integer) --
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 .
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
float
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
integer
The port that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If listener port is a list of ports, Global Accelerator uses the first port in the list.
string
The protocol that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default value is TCP.
string
If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).
integer
The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
integer
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
string
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
dict
Response Syntax
{ 'EndpointGroup': { 'EndpointGroupArn': 'string', 'EndpointGroupRegion': 'string', 'EndpointDescriptions': [ { 'EndpointId': 'string', 'Weight': 123, 'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY', 'HealthReason': 'string', 'ClientIPPreservationEnabled': True|False }, ], 'TrafficDialPercentage': ..., 'HealthCheckPort': 123, 'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS', 'HealthCheckPath': 'string', 'HealthCheckIntervalSeconds': 123, 'ThresholdCount': 123 } }
Response Structure
(dict) --
EndpointGroup (dict) --
The information about the endpoint group that was created.
EndpointGroupArn (string) --
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) --
The AWS Region that this endpoint group belongs.
EndpointDescriptions (list) --
The list of endpoint objects.
(dict) --
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) --
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. An Application Load Balancer can be either internal or internet-facing.
Weight (integer) --
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 .
HealthState (string) --
The health status of the endpoint.
HealthReason (string) --
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.
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
TrafficDialPercentage (float) --
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) --
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) --
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) --
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) --
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) --
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
{'EndpointGroup': {'EndpointDescriptions': {'ClientIPPreservationEnabled': 'boolean'}}}
Describe an endpoint group.
See also: AWS API Documentation
Request Syntax
client.describe_endpoint_group( EndpointGroupArn='string' )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to describe.
dict
Response Syntax
{ 'EndpointGroup': { 'EndpointGroupArn': 'string', 'EndpointGroupRegion': 'string', 'EndpointDescriptions': [ { 'EndpointId': 'string', 'Weight': 123, 'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY', 'HealthReason': 'string', 'ClientIPPreservationEnabled': True|False }, ], 'TrafficDialPercentage': ..., 'HealthCheckPort': 123, 'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS', 'HealthCheckPath': 'string', 'HealthCheckIntervalSeconds': 123, 'ThresholdCount': 123 } }
Response Structure
(dict) --
EndpointGroup (dict) --
The description of an endpoint group.
EndpointGroupArn (string) --
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) --
The AWS Region that this endpoint group belongs.
EndpointDescriptions (list) --
The list of endpoint objects.
(dict) --
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) --
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. An Application Load Balancer can be either internal or internet-facing.
Weight (integer) --
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 .
HealthState (string) --
The health status of the endpoint.
HealthReason (string) --
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.
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
TrafficDialPercentage (float) --
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) --
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) --
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) --
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) --
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) --
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
{'EndpointGroups': {'EndpointDescriptions': {'ClientIPPreservationEnabled': 'boolean'}}}
List the endpoint groups that are associated with a listener.
See also: AWS API Documentation
Request Syntax
client.list_endpoint_groups( ListenerArn='string', MaxResults=123, NextToken='string' )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
integer
The number of endpoint group objects that you want to return with this call. The default value is 10.
string
The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{ 'EndpointGroups': [ { 'EndpointGroupArn': 'string', 'EndpointGroupRegion': 'string', 'EndpointDescriptions': [ { 'EndpointId': 'string', 'Weight': 123, 'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY', 'HealthReason': 'string', 'ClientIPPreservationEnabled': True|False }, ], 'TrafficDialPercentage': ..., 'HealthCheckPort': 123, 'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS', 'HealthCheckPath': 'string', 'HealthCheckIntervalSeconds': 123, 'ThresholdCount': 123 }, ], 'NextToken': 'string' }
Response Structure
(dict) --
EndpointGroups (list) --
The list of the endpoint groups associated with a listener.
(dict) --
A complex type for the endpoint group. An AWS Region can have only one endpoint group for a specific listener.
EndpointGroupArn (string) --
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) --
The AWS Region that this endpoint group belongs.
EndpointDescriptions (list) --
The list of endpoint objects.
(dict) --
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) --
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. An Application Load Balancer can be either internal or internet-facing.
Weight (integer) --
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 .
HealthState (string) --
The health status of the endpoint.
HealthReason (string) --
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.
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
TrafficDialPercentage (float) --
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) --
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) --
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) --
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) --
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) --
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
NextToken (string) --
The token for the next set of results. You receive this token from a previous call.
{'EndpointConfigurations': {'ClientIPPreservationEnabled': 'boolean'}}Response
{'EndpointGroup': {'EndpointDescriptions': {'ClientIPPreservationEnabled': 'boolean'}}}
Update an endpoint group. To see an AWS CLI example of updating an endpoint group, scroll down to Example .
See also: AWS API Documentation
Request Syntax
client.update_endpoint_group( EndpointGroupArn='string', EndpointConfigurations=[ { 'EndpointId': 'string', 'Weight': 123, 'ClientIPPreservationEnabled': True|False }, ], TrafficDialPercentage=..., HealthCheckPort=123, HealthCheckProtocol='TCP'|'HTTP'|'HTTPS', HealthCheckPath='string', HealthCheckIntervalSeconds=123, ThresholdCount=123 )
string
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
list
The list of endpoint objects.
(dict) --
A complex type for endpoints.
EndpointId (string) --
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.
Weight (integer) --
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 .
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
float
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
integer
The port that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If the listener port is a list of ports, Global Accelerator uses the first port in the list.
string
The protocol that AWS Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default value is TCP.
string
If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).
integer
The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
integer
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
dict
Response Syntax
{ 'EndpointGroup': { 'EndpointGroupArn': 'string', 'EndpointGroupRegion': 'string', 'EndpointDescriptions': [ { 'EndpointId': 'string', 'Weight': 123, 'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY', 'HealthReason': 'string', 'ClientIPPreservationEnabled': True|False }, ], 'TrafficDialPercentage': ..., 'HealthCheckPort': 123, 'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS', 'HealthCheckPath': 'string', 'HealthCheckIntervalSeconds': 123, 'ThresholdCount': 123 } }
Response Structure
(dict) --
EndpointGroup (dict) --
The information about the endpoint group that was updated.
EndpointGroupArn (string) --
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) --
The AWS Region that this endpoint group belongs.
EndpointDescriptions (list) --
The list of endpoint objects.
(dict) --
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) --
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. An Application Load Balancer can be either internal or internet-facing.
Weight (integer) --
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 .
HealthState (string) --
The health status of the endpoint.
HealthReason (string) --
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.
ClientIPPreservationEnabled (boolean) --
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.
For more information, see Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .
TrafficDialPercentage (float) --
The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) --
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) --
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) --
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) --
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) --
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.