Class: Aws::DynamoDB::Types::ReplicaUpdate

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

{
  create: {
    region_name: "RegionName", # required
  },
  delete: {
    region_name: "RegionName", # required
  },
}

Represents one of the following:

  • A new replica to be added to an existing global table.

  • New parameters for an existing replica.

  • An existing replica to be removed from an existing global table.

Instance Attribute Summary collapse

Instance Attribute Details

#createTypes::CreateReplicaAction

The parameters required for creating a replica on an existing global table.



5677
5678
5679
5680
5681
# File 'lib/aws-sdk-dynamodb/types.rb', line 5677

class ReplicaUpdate < Struct.new(
  :create,
  :delete)
  include Aws::Structure
end

#deleteTypes::DeleteReplicaAction

The name of the existing replica to be removed.



5677
5678
5679
5680
5681
# File 'lib/aws-sdk-dynamodb/types.rb', line 5677

class ReplicaUpdate < Struct.new(
  :create,
  :delete)
  include Aws::Structure
end