Get Namespace
s3tables_get_namespace | R Documentation |
Gets details about a namespace¶
Description¶
Gets details about a namespace. For more information, see Table namespaces in the Amazon Simple Storage Service User Guide.
Permissions¶
You must have the s3tables:GetNamespace
permission to use this
operation.
Usage¶
s3tables_get_namespace(tableBucketARN, namespace)
Arguments¶
tableBucketARN |
[required] The Amazon Resource Name (ARN) of the table bucket. |
namespace |
[required] The name of the namespace. |
Value¶
A list with the following syntax:
list(
namespace = list(
"string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
ownerAccountId = "string"
)
Request syntax¶
svc$get_namespace(
tableBucketARN = "string",
namespace = "string"
)