Describe Listener
globalaccelerator_describe_listener | R Documentation |
Describe a listener¶
Description¶
Describe a listener.
Usage¶
Arguments¶
ListenerArn
[required] The Amazon Resource Name (ARN) of the listener to describe.
Value¶
A list with the following syntax:
list(
Listener = list(
ListenerArn = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
),
Protocol = "TCP"|"UDP",
ClientAffinity = "NONE"|"SOURCE_IP"
)
)