Get Table
| s3tables_get_table | R Documentation | 
Gets details about a table¶
Description¶
Gets details about a table. For more information, see S3 Tables in the Amazon Simple Storage Service User Guide.
Permissions¶
You must have the s3tables:GetTable permission to use this operation.
Usage¶
s3tables_get_table(tableBucketARN, namespace, name)
Arguments¶
tableBucketARN | 
[required] The Amazon Resource Name (ARN) of the table bucket associated with the table.  | 
namespace | 
[required] The name of the namespace the table is associated with.  | 
name | 
[required] The name of the table.  | 
Value¶
A list with the following syntax:
list(
  name = "string",
  type = "customer"|"aws",
  tableARN = "string",
  namespace = list(
    "string"
  ),
  namespaceId = "string",
  versionToken = "string",
  metadataLocation = "string",
  warehouseLocation = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  managedByService = "string",
  modifiedAt = as.POSIXct(
    "2015-01-01"
  ),
  modifiedBy = "string",
  ownerAccountId = "string",
  format = "ICEBERG",
  tableBucketId = "string"
)
Request syntax¶
svc$get_table(
  tableBucketARN = "string",
  namespace = "string",
  name = "string"
)