Class: Aws::DynamoDB::Types::GlobalTable

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

Overview

Represents the properties of a global table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#global_table_nameString

The global table name.

Returns:

  • (String)


4389
4390
4391
4392
4393
4394
# File 'lib/aws-sdk-dynamodb/types.rb', line 4389

class GlobalTable < Struct.new(
  :global_table_name,
  :replication_group)
  SENSITIVE = []
  include Aws::Structure
end

#replication_groupArray<Types::Replica>

The Regions where the global table has replicas.

Returns:



4389
4390
4391
4392
4393
4394
# File 'lib/aws-sdk-dynamodb/types.rb', line 4389

class GlobalTable < Struct.new(
  :global_table_name,
  :replication_group)
  SENSITIVE = []
  include Aws::Structure
end