Method: Aws::DynamoDB::Types::UpdateTableInput#replica_updates

Defined in:
lib/aws-sdk-dynamodb/types.rb

#replica_updatesArray<Types::ReplicationGroupUpdate>

A list of replica update actions (create, delete, or update) for the table.

<note markdown=“1”> For global tables, this property only applies to global tables using Version 2019.11.21 (Current version).

</note>

Returns:



10594
10595
10596
10597
10598
10599
10600
10601
10602
10603
10604
10605
10606
10607
10608
10609
10610
# File 'lib/aws-sdk-dynamodb/types.rb', line 10594

class UpdateTableInput < Struct.new(
  :attribute_definitions,
  :table_name,
  :billing_mode,
  :provisioned_throughput,
  :global_secondary_index_updates,
  :stream_specification,
  :sse_specification,
  :replica_updates,
  :table_class,
  :deletion_protection_enabled,
  :multi_region_consistency,
  :on_demand_throughput,
  :warm_throughput)
  SENSITIVE = []
  include Aws::Structure
end