Skip to content

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

globalaccelerator_list_custom_routing_endpoint_groups(ListenerArn,
  MaxResults, NextToken)

Arguments

ListenerArn

[required] The Amazon Resource Name (ARN) of the listener to list endpoint groups for.

MaxResults

The number of endpoint group 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(
  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"
)

Request syntax

svc$list_custom_routing_endpoint_groups(
  ListenerArn = "string",
  MaxResults = 123,
  NextToken = "string"
)