Skip to content

Get Table Bucket Replication

s3tables_get_table_bucket_replication R Documentation

Retrieves the replication configuration for a table bucket

Description

Retrieves the replication configuration for a table bucket.This operation returns the IAM role, versionToken, and replication rules that define how tables in this bucket are replicated to other buckets.

Permissions

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

Usage

s3tables_get_table_bucket_replication(tableBucketARN)

Arguments

tableBucketARN

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

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_bucket_replication(
  tableBucketARN = "string"
)