Skip to content

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

Arguments

tableBucketARN

The Amazon Resource Name (ARN) of the table bucket associated with the table.

namespace

The name of the namespace the table is associated with.

name

The name of the table.

tableArn

The Amazon Resource Name (ARN) 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",
  managedTableInformation = list(
    replicationInformation = list(
      sourceTableARN = "string"
    )
  )
)

Request syntax

svc$get_table(
  tableBucketARN = "string",
  namespace = "string",
  name = "string",
  tableArn = "string"
)