Class: Aws::DynamoDB::Types::CreateGlobalTableInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::CreateGlobalTableInput
- 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",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#global_table_name ⇒ String
The global table name.
-
#replication_group ⇒ Array<Types::Replica>
The Regions where the global table needs to be created.
Instance Attribute Details
#global_table_name ⇒ String
The global table name.
1907 1908 1909 1910 1911 1912 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1907 class CreateGlobalTableInput < Struct.new( :global_table_name, :replication_group) SENSITIVE = [] include Aws::Structure end |
#replication_group ⇒ Array<Types::Replica>
The Regions where the global table needs to be created.
1907 1908 1909 1910 1911 1912 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1907 class CreateGlobalTableInput < Struct.new( :global_table_name, :replication_group) SENSITIVE = [] include Aws::Structure end |