Class: Aws::S3Tables::Types::TableReplicationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableReplicationConfiguration
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
The replication configuration for an individual table. This configuration defines how the table is replicated to destination tables.
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 the table on your behalf.
-
#rules ⇒ Array<Types::TableReplicationRule>
An array of replication rules that define where this table should be replicated.
Instance Attribute Details
#role ⇒ String
The Amazon Resource Name (ARN) of the IAM role that S3 Tables assumes to replicate the table on your behalf.
2299 2300 2301 2302 2303 2304 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2299 class TableReplicationConfiguration < Struct.new( :role, :rules) SENSITIVE = [] include Aws::Structure end |
#rules ⇒ Array<Types::TableReplicationRule>
An array of replication rules that define where this table should be replicated.
2299 2300 2301 2302 2303 2304 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2299 class TableReplicationConfiguration < Struct.new( :role, :rules) SENSITIVE = [] include Aws::Structure end |