Create Custom Routing Endpoint Group
globalaccelerator_create_custom_routing_endpoint_group | R Documentation |
Create an endpoint group for the specified listener for a custom routing accelerator¶
Description¶
Create an endpoint group for the specified listener for a custom routing accelerator. An endpoint group is a collection of endpoints in one Amazon Web Services Region.
Usage¶
globalaccelerator_create_custom_routing_endpoint_group(ListenerArn,
EndpointGroupRegion, DestinationConfigurations, IdempotencyToken)
Arguments¶
ListenerArn
[required] The Amazon Resource Name (ARN) of the listener for a custom routing endpoint.
EndpointGroupRegion
[required] The Amazon Web Services Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
DestinationConfigurations
[required] Sets the port range and protocol for all endpoints (virtual private cloud subnets) in a custom routing endpoint group to accept client traffic on.
IdempotencyToken
[required] A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
Value¶
A list with the following syntax:
list(
EndpointGroup = list(
EndpointGroupArn = "string",
EndpointGroupRegion = "string",
DestinationDescriptions = list(
list(
FromPort = 123,
ToPort = 123,
Protocols = list(
"TCP"|"UDP"
)
)
),
EndpointDescriptions = list(
list(
EndpointId = "string"
)
)
)
)