Class: Aws::S3Tables::Types::TableReplicationConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#roleString

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

Returns:

  • (String)


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

#rulesArray<Types::TableReplicationRule>

An array of replication rules that define where this table should be replicated.

Returns:



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