List Namespaces
s3tables_list_namespaces | R Documentation |
Lists the namespaces within a table bucket¶
Description¶
Lists the namespaces within a table bucket. For more information, see Table namespaces in the Amazon Simple Storage Service User Guide.
Permissions¶
You must have the s3tables:ListNamespaces
permission to use this
operation.
Usage¶
s3tables_list_namespaces(tableBucketARN, prefix, continuationToken,
maxNamespaces)
Arguments¶
tableBucketARN |
[required] The Amazon Resource Name (ARN) of the table bucket. |
prefix |
The prefix of the namespaces. |
continuationToken |
|
maxNamespaces |
The maximum number of namespaces to return in the list. |
Value¶
A list with the following syntax:
list(
namespaces = list(
list(
namespace = list(
"string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
ownerAccountId = "string"
)
),
continuationToken = "string"
)
Request syntax¶
svc$list_namespaces(
tableBucketARN = "string",
prefix = "string",
continuationToken = "string",
maxNamespaces = 123
)