Skip to content

Update Custom Routing Listener

globalaccelerator_update_custom_routing_listener R Documentation

Update a listener for a custom routing accelerator

Description

Update a listener for a custom routing accelerator.

Usage

globalaccelerator_update_custom_routing_listener(ListenerArn,
  PortRanges)

Arguments

ListenerArn

[required] The Amazon Resource Name (ARN) of the listener to update.

PortRanges

[required] The updated port range to support for connections from clients to your accelerator. If you remove ports that are currently being used by a subnet endpoint, the call fails.

Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators.

Value

A list with the following syntax:

list(
  Listener = list(
    ListenerArn = "string",
    PortRanges = list(
      list(
        FromPort = 123,
        ToPort = 123
      )
    )
  )
)

Request syntax

svc$update_custom_routing_listener(
  ListenerArn = "string",
  PortRanges = list(
    list(
      FromPort = 123,
      ToPort = 123
    )
  )
)