UpdateEndpointGroup
Update an endpoint group. A resource must be valid and active when you add it as an endpoint.
Request Syntax
{
"EndpointConfigurations": [
{
"AttachmentArn": "string
",
"ClientIPPreservationEnabled": boolean
,
"EndpointId": "string
",
"Weight": number
}
],
"EndpointGroupArn": "string
",
"HealthCheckIntervalSeconds": number
,
"HealthCheckPath": "string
",
"HealthCheckPort": number
,
"HealthCheckProtocol": "string
",
"PortOverrides": [
{
"EndpointPort": number
,
"ListenerPort": number
}
],
"ThresholdCount": number
,
"TrafficDialPercentage": number
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
- EndpointConfigurations
-
The list of endpoint objects. A resource must be valid and active when you add it as an endpoint.
Type: Array of EndpointConfiguration objects
Array Members: Minimum number of 0 items. Maximum number of 10 items.
Required: No
- EndpointGroupArn
-
The Amazon Resource Name (ARN) of the endpoint group.
Type: String
Length Constraints: Maximum length of 255.
Required: Yes
- HealthCheckIntervalSeconds
-
The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
Type: Integer
Valid Range: Minimum value of 10. Maximum value of 30.
Required: No
- HealthCheckPath
-
If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).
Type: String
Length Constraints: Maximum length of 255.
Pattern:
^/[-a-zA-Z0-9@:%_\\+.~#?&/=]*$
Required: No
- HealthCheckPort
-
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.
Type: Integer
Valid Range: Minimum value of 1. Maximum value of 65535.
Required: No
- HealthCheckProtocol
-
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.
Type: String
Valid Values:
TCP | HTTP | HTTPS
Required: No
- PortOverrides
-
Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the AWS Global Accelerator Developer Guide.
Type: Array of PortOverride objects
Array Members: Minimum number of 0 items. Maximum number of 10 items.
Required: No
- ThresholdCount
-
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.
Type: Integer
Valid Range: Minimum value of 1. Maximum value of 10.
Required: No
- TrafficDialPercentage
-
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.
Type: Float
Valid Range: Minimum value of 0. Maximum value of 100.
Required: No
Response Syntax
{
"EndpointGroup": {
"EndpointDescriptions": [
{
"ClientIPPreservationEnabled": boolean,
"EndpointId": "string",
"HealthReason": "string",
"HealthState": "string",
"Weight": number
}
],
"EndpointGroupArn": "string",
"EndpointGroupRegion": "string",
"HealthCheckIntervalSeconds": number,
"HealthCheckPath": "string",
"HealthCheckPort": number,
"HealthCheckProtocol": "string",
"PortOverrides": [
{
"EndpointPort": number,
"ListenerPort": number
}
],
"ThresholdCount": number,
"TrafficDialPercentage": number
}
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- EndpointGroup
-
The information about the endpoint group that was updated.
Type: EndpointGroup object
Errors
For information about the errors that are common to all actions, see Common Errors.
- AccessDeniedException
-
You don't have access permission.
HTTP Status Code: 400
- EndpointGroupNotFoundException
-
The endpoint group that you specified doesn't exist.
HTTP Status Code: 400
- InternalServiceErrorException
-
There was an internal error for AWS Global Accelerator.
HTTP Status Code: 400
- InvalidArgumentException
-
An argument that you specified is invalid.
HTTP Status Code: 400
- LimitExceededException
-
Processing your request would cause you to exceed an AWS Global Accelerator limit.
HTTP Status Code: 400
Examples
Update an endpoint group
The following is an example of adding endpoints to an endpoint group, and the response.
aws globalaccelerator update-endpoint-group --endpoint-group-arn arn:aws:globalaccelerator::012345678901:accelerator/1234abcd-abcd-1234-abcd-1234abcdefgh/listener/6789vxyz/endpoint-group/ab88888example --port-overrides ListenerPort=443,EndpointPort=1443 --endpoint-configurations EndpointId=i-1234567890abcdef0,Weight=128 EndpointId=arn:aws:elasticloadbalancing:us-east-1:000123456789:loadbalancer/app/ALBTesting/alb01234567890xyz,Weight=128 EndpointId=arn:aws:elasticloadbalancing:us-east-1:000123456789:loadbalancer/net/NLBTesting/alb01234567890qrs,Weight=128
{ "EndpointGroup": { "TrafficDialPercentage": 100.0, "EndpointDescriptions": [ { "Weight": 128, "EndpointId": "i-1234567890abcdef0" }, { "Weight": 128, "EndpointId": "arn:aws:elasticloadbalancing:us-east-1:000123456789:loadbalancer/app/ALBTesting/alb01234567890xyz" }, { "Weight": 128, "EndpointId": "arn:aws:elasticloadbalancing:us-east-1:000123456789:loadbalancer/net/NLBTesting/alb01234567890qrs" } ], "PortOverrides": [ { "EndpointPort": 1443, "ListenerPort": 443 } ], "EndpointGroupArn": "arn:aws:globalaccelerator::012345678901:accelerator/1234abcd-abcd-1234-abcd-1234abcdefgh/listener/6789vxyz-vxyz-6789-vxyz-6789lmnopqrs/endpoint-group/4321abcd-abcd-4321-abcd-4321abcdefg", "EndpointGroupRegion": "us-east-1" } }
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: