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 |
|
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
)