Class: Aws::DynamoDB::Types::CreateGlobalTableInput

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 CreateGlobalTableInput data as a hash:

{
  global_table_name: "TableName", # required
  replication_group: [ # required
    {
      region_name: "RegionName",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#global_table_nameString

The global table name.

Returns:

  • (String)


1620
1621
1622
1623
1624
# File 'lib/aws-sdk-dynamodb/types.rb', line 1620

class CreateGlobalTableInput < Struct.new(
  :global_table_name,
  :replication_group)
  include Aws::Structure
end

#replication_groupArray<Types::Replica>

The regions where the global table needs to be created.

Returns:



1620
1621
1622
1623
1624
# File 'lib/aws-sdk-dynamodb/types.rb', line 1620

class CreateGlobalTableInput < Struct.new(
  :global_table_name,
  :replication_group)
  include Aws::Structure
end