Skip to content

List Table Buckets

s3tables_list_table_buckets R Documentation

Lists table buckets for your account

Description

Lists table buckets for your account. For more information, see S3 Table buckets in the Amazon Simple Storage Service User Guide.

Permissions

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

Usage

s3tables_list_table_buckets(prefix, continuationToken, maxBuckets)

Arguments

prefix

The prefix of the table buckets.

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.

maxBuckets

The maximum number of table buckets to return in the list.

Value

A list with the following syntax:

list(
  tableBuckets = list(
    list(
      arn = "string",
      name = "string",
      ownerAccountId = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  continuationToken = "string"
)

Request syntax

svc$list_table_buckets(
  prefix = "string",
  continuationToken = "string",
  maxBuckets = 123
)