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¶
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 thisContinuationToken
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"
)