Class: Aws::S3Tables::Types::TableBucketReplicationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableBucketReplicationConfiguration
- 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
-
#role ⇒ String
The Amazon Resource Name (ARN) of the IAM role that S3 Tables assumes to replicate tables on your behalf.
-
#rules ⇒ Array<Types::TableBucketReplicationRule>
An array of replication rules that define which tables to replicate and where to replicate them.
Instance Attribute Details
#role ⇒ String
The Amazon Resource Name (ARN) of the IAM role that S3 Tables assumes to replicate tables on your behalf.
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 |
#rules ⇒ Array<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 |