Class: Aws::S3Tables::Types::TableBucketReplicationConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb

Overview

The replication configuration for a table bucket. This configuration defines how tables in the source bucket are replicated to destination table buckets, including the IAM role used for replication.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#roleString

The Amazon Resource Name (ARN) of the IAM role that S3 Tables assumes to replicate tables on your behalf.

Returns:

  • (String)


2059
2060
2061
2062
2063
2064
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2059

class TableBucketReplicationConfiguration < Struct.new(
  :role,
  :rules)
  SENSITIVE = []
  include Aws::Structure
end

#rulesArray<Types::TableBucketReplicationRule>

An array of replication rules that define which tables to replicate and where to replicate them.



2059
2060
2061
2062
2063
2064
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2059

class TableBucketReplicationConfiguration < Struct.new(
  :role,
  :rules)
  SENSITIVE = []
  include Aws::Structure
end