Skip to content

Describe Lookup Tables

cloudwatchlogs_describe_lookup_tables R Documentation

Retrieves metadata about lookup tables in your account

Description

Retrieves metadata about lookup tables in your account. You can optionally filter the results by table name prefix. Results are sorted by table name in ascending order.

Usage

cloudwatchlogs_describe_lookup_tables(lookupTableNamePrefix, maxResults,
  nextToken)

Arguments

lookupTableNamePrefix

A prefix to filter lookup tables by name. Only tables whose names start with this prefix are returned. If you don't specify a prefix, all tables in the account and Region are returned.

maxResults

The maximum number of lookup tables to return in the response. The default value is 50 and the maximum value is 100.

nextToken

The token for the next set of items to return. (You received this token from a previous call.)

Value

A list with the following syntax:

list(
  lookupTables = list(
    list(
      lookupTableArn = "string",
      lookupTableName = "string",
      description = "string",
      tableFields = list(
        "string"
      ),
      recordsCount = 123,
      sizeBytes = 123,
      lastUpdatedTime = 123,
      kmsKeyId = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$describe_lookup_tables(
  lookupTableNamePrefix = "string",
  maxResults = 123,
  nextToken = "string"
)