Skip to content

List Tables

s3tables_list_tables R Documentation

List tables in the given table bucket

Description

List tables in the given table bucket. For more information, see S3 Tables in the Amazon Simple Storage Service User Guide.

Permissions

You must have the s3tables:ListTables permission to use this operation.

Usage

s3tables_list_tables(tableBucketARN, namespace, prefix,
  continuationToken, maxTables)

Arguments

tableBucketARN

[required] The Amazon resource Name (ARN) of the table bucket.

namespace

The namespace of the tables.

prefix

The prefix of the tables.

continuationToken

ContinuationToken indicates to Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key. You can use this ContinuationToken for pagination of the list results.

maxTables

The maximum number of tables to return.

Value

A list with the following syntax:

list(
  tables = list(
    list(
      namespace = list(
        "string"
      ),
      name = "string",
      type = "customer"|"aws",
      tableARN = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      modifiedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  continuationToken = "string"
)

Request syntax

svc$list_tables(
  tableBucketARN = "string",
  namespace = "string",
  prefix = "string",
  continuationToken = "string",
  maxTables = 123
)