Skip to content

Get Table Replication

s3tables_get_table_replication R Documentation

Retrieves the replication configuration for a specific table

Description

Retrieves the replication configuration for a specific table.

Permissions

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

Usage

s3tables_get_table_replication(tableArn)

Arguments

tableArn

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

Value

A list with the following syntax:

list(
  versionToken = "string",
  configuration = list(
    role = "string",
    rules = list(
      list(
        destinations = list(
          list(
            destinationTableBucketARN = "string"
          )
        )
      )
    )
  )
)

Request syntax

svc$get_table_replication(
  tableArn = "string"
)