Class: Aws::DynamoDB::Types::UpdateGlobalTableInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::UpdateGlobalTableInput
- 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
},
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#global_table_name ⇒ String
The global table name.
-
#replica_updates ⇒ Array<Types::ReplicaUpdate>
A list of Regions that should be added or removed from the global table.
Instance Attribute Details
#global_table_name ⇒ String
The global table name.
10065 10066 10067 10068 10069 10070 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 10065 class UpdateGlobalTableInput < Struct.new( :global_table_name, :replica_updates) SENSITIVE = [] include Aws::Structure end |
#replica_updates ⇒ Array<Types::ReplicaUpdate>
A list of Regions that should be added or removed from the global table.
10065 10066 10067 10068 10069 10070 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 10065 class UpdateGlobalTableInput < Struct.new( :global_table_name, :replica_updates) SENSITIVE = [] include Aws::Structure end |