Learn R Programming

paws.database (version 0.1.12)

dynamodb_list_tables: Returns an array of table names associated with the current account and endpoint

Description

Returns an array of table names associated with the current account and endpoint. The output from list_tables is paginated, with each page returning a maximum of 100 table names.

Usage

dynamodb_list_tables(ExclusiveStartTableName, Limit)

Value

A list with the following syntax:

list(
  TableNames = list(
    "string"
  ),
  LastEvaluatedTableName = "string"
)

Arguments

ExclusiveStartTableName

The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

Limit

A maximum number of table names to return. If this parameter is not specified, the limit is 100.

Request syntax

svc$list_tables(
  ExclusiveStartTableName = "string",
  Limit = 123
)

Examples

Run this code
if (FALSE) {
# This example lists all of the tables associated with the current AWS
# account and endpoint.
svc$list_tables()
}

Run the code above in your browser using DataLab