Class: Aws::DynamoDB::Types::UpdateGlobalTableInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass UpdateGlobalTableInput data as a hash:

{
  global_table_name: "TableName", # required
  replica_updates: [ # required
    {
      create: {
        region_name: "RegionName", # required
      },
      delete: {
        region_name: "RegionName", # required
      },
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#global_table_nameString

The global table name.

Returns:

  • (String)


7429
7430
7431
7432
7433
# File 'lib/aws-sdk-dynamodb/types.rb', line 7429

class UpdateGlobalTableInput < Struct.new(
  :global_table_name,
  :replica_updates)
  include Aws::Structure
end

#replica_updatesArray<Types::ReplicaUpdate>

A list of regions that should be added or removed from the global table.

Returns:



7429
7430
7431
7432
7433
# File 'lib/aws-sdk-dynamodb/types.rb', line 7429

class UpdateGlobalTableInput < Struct.new(
  :global_table_name,
  :replica_updates)
  include Aws::Structure
end