You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateGlobalTableInput as input to an Aws::Client method, you can use a vanilla 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)

    The global table name.

#replica_updatesArray<Types::ReplicaUpdate>

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

Returns:

  • (Array<Types::ReplicaUpdate>)

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