Create Custom Routing Listener
globalaccelerator_create_custom_routing_listener | R Documentation |
Create a listener to process inbound connections from clients to a custom routing accelerator¶
Description¶
Create a listener to process inbound connections from clients to a custom routing accelerator. Connections arrive to assigned static IP addresses on the port range that you specify.
Usage¶
globalaccelerator_create_custom_routing_listener(AcceleratorArn,
PortRanges, IdempotencyToken)
Arguments¶
AcceleratorArn |
[required] The Amazon Resource Name (ARN) of the accelerator for a custom routing listener. |
PortRanges |
[required] The port range to support for connections from clients to your accelerator. Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators. |
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(
Listener = list(
ListenerArn = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
)
)
Request syntax¶
svc$create_custom_routing_listener(
AcceleratorArn = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
),
IdempotencyToken = "string"
)