List Rules
| vpclattice_list_rules | R Documentation | 
Lists the rules for the specified listener¶
Description¶
Lists the rules for the specified listener.
Usage¶
vpclattice_list_rules(listenerIdentifier, maxResults, nextToken,
  serviceIdentifier)
Arguments¶
listenerIdentifier | 
[required] The ID or 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 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"
)