List Custom Routing Endpoint Groups
| globalaccelerator_list_custom_routing_endpoint_groups | R Documentation |
List the endpoint groups that are associated with a listener for a custom routing accelerator¶
Description¶
List the endpoint groups that are associated with a listener for a custom routing accelerator.
Usage¶
Arguments¶
ListenerArn[required] The Amazon Resource Name (ARN) of the listener to list endpoint groups for.
MaxResultsThe number of endpoint group objects that you want to return with this call. The default value is 10.
NextTokenThe token for the next set of results. You receive this token from a previous call.
Value¶
A list with the following syntax:
list(
EndpointGroups = list(
list(
EndpointGroupArn = "string",
EndpointGroupRegion = "string",
DestinationDescriptions = list(
list(
FromPort = 123,
ToPort = 123,
Protocols = list(
"TCP"|"UDP"
)
)
),
EndpointDescriptions = list(
list(
EndpointId = "string"
)
)
)
),
NextToken = "string"
)