Skip to content

List Listeners

vpclattice_list_listeners R Documentation

Lists the listeners for the specified service

Description

Lists the listeners for the specified service.

Usage

vpclattice_list_listeners(serviceIdentifier, maxResults, nextToken)

Arguments

serviceIdentifier

[required] The ID or ARN of the service.

maxResults

The maximum number of results to return.

nextToken

A pagination token for the next page of results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      id = "string",
      name = "string",
      protocol = "HTTP"|"HTTPS"|"TLS_PASSTHROUGH",
      port = 123,
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_listeners(
  serviceIdentifier = "string",
  maxResults = 123,
  nextToken = "string"
)