Skip to content

Get Table Replication Status

s3tables_get_table_replication_status R Documentation

Retrieves the replication status for a table, including the status of replication to each destination

Description

Retrieves the replication status for a table, including the status of replication to each destination. This operation provides visibility into replication health and progress.

Permissions

You must have the s3tables:GetTableReplicationStatus permission to use this operation.

Usage

s3tables_get_table_replication_status(tableArn)

Arguments

tableArn

[required] The Amazon Resource Name (ARN) of the table.

Value

A list with the following syntax:

list(
  sourceTableArn = "string",
  destinations = list(
    list(
      replicationStatus = "pending"|"completed"|"failed",
      destinationTableBucketArn = "string",
      destinationTableArn = "string",
      lastSuccessfulReplicatedUpdate = list(
        metadataLocation = "string",
        timestamp = as.POSIXct(
          "2015-01-01"
        )
      ),
      failureMessage = "string"
    )
  )
)

Request syntax

svc$get_table_replication_status(
  tableArn = "string"
)