Skip to content

List Rules

vpclattice_list_rules R Documentation

Lists the rules for the listener

Description

Lists the rules for the listener.

Usage

vpclattice_list_rules(listenerIdentifier, maxResults, nextToken,
  serviceIdentifier)

Arguments

listenerIdentifier

[required] The ID or Amazon Resource Name (ARN) of the listener.

maxResults

The maximum number of results to return.

nextToken

A pagination token for the next page of results.

serviceIdentifier

[required] The ID or Amazon Resource Name (ARN) of the service.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      id = "string",
      isDefault = TRUE|FALSE,
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      priority = 123
    )
  ),
  nextToken = "string"
)

Request syntax

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