CreateEndpointGroup
Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one AWS Region. A resource must be valid and active when you add it as an endpoint.
For more information about endpoint types and requirements for endpoints that you can add to Global Accelerator, see Endpoints for standard accelerators in the AWS Global Accelerator Developer Guide.
Request Syntax
{
"EndpointConfigurations": [
{
"AttachmentArn": "string
",
"ClientIPPreservationEnabled": boolean
,
"EndpointId": "string
",
"Weight": number
}
],
"EndpointGroupRegion": "string
",
"HealthCheckIntervalSeconds": number
,
"HealthCheckPath": "string
",
"HealthCheckPort": number
,
"HealthCheckProtocol": "string
",
"IdempotencyToken": "string
",
"ListenerArn": "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.
Type: Array of EndpointConfiguration objects
Array Members: Minimum number of 0 items. Maximum number of 10 items.
Required: No
- EndpointGroupRegion
-
The AWS Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
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 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
- IdempotencyToken
-
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
Type: String
Length Constraints: Maximum length of 255.
Required: Yes
- ListenerArn
-
The Amazon Resource Name (ARN) of the listener.
Type: String
Length Constraints: Maximum length of 255.
Required: Yes
- 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 created.
Type: EndpointGroup object
Errors
For information about the errors that are common to all actions, see Common Errors.
- AcceleratorNotFoundException
-
The accelerator that you specified doesn't exist.
HTTP Status Code: 400
- AccessDeniedException
-
You don't have access permission.
HTTP Status Code: 400
- EndpointGroupAlreadyExistsException
-
The endpoint group that you specified already exists.
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
- ListenerNotFoundException
-
The listener that you specified doesn't exist.
HTTP Status Code: 400
Examples
Create an endpoint group
The following is an example of creating an endpoint group, and the response.
aws globalaccelerator create-endpoint-group --listener-arn arn:aws:globalaccelerator::012345678901:accelerator/1234abcd-abcd-1234-abcd-1234abcdefgh/listener/0123vxyz --endpoint-group-region us-east-1 --port-overrides ListenerPort=443,EndpointPort=1443 --endpoint-configurations EndpointId=i-1234567890abcdef0,Weight=128 --region us-west-2
{ "EndpointGroup": { "TrafficDialPercentage": 100.0, "EndpointDescriptions": [ { "Weight": 128, "EndpointId": "i-1234567890abcdef0" } ], "PortOverrides": [ { "EndpointPort": 1443, "ListenerPort": 443 } ], "EndpointGroupArn": "arn:aws:globalaccelerator::012345678901:accelerator/1234abcd-abcd-1234-abcd-1234abcdefgh/listener/0123vxyz/endpoint-group/098765zyxwvu", "EndpointGroupRegion": "us-east-1" } }
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: