List Custom Routing Listeners
globalaccelerator_list_custom_routing_listeners | R Documentation |
List the listeners for a custom routing accelerator¶
Description¶
List the listeners for a custom routing accelerator.
Usage¶
Arguments¶
AcceleratorArn
[required] The Amazon Resource Name (ARN) of the accelerator to list listeners for.
MaxResults
The number of listener objects that you want to return with this call. The default value is 10.
NextToken
The token for the next set of results. You receive this token from a previous call.
Value¶
A list with the following syntax:
list(
Listeners = list(
list(
ListenerArn = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
)
),
NextToken = "string"
)