Class: Aws::DynamoDB::Types::ReplicaUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ReplicaUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create ⇒ Types::CreateReplicaAction
The parameters required for creating a replica on an existing global table.
-
#delete ⇒ Types::DeleteReplicaAction
The name of the existing replica to be removed.
Instance Attribute Details
#create ⇒ Types::CreateReplicaAction
The parameters required for creating a replica on an existing global table.
7016 7017 7018 7019 7020 7021 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 7016 class ReplicaUpdate < Struct.new( :create, :delete) SENSITIVE = [] include Aws::Structure end |
#delete ⇒ Types::DeleteReplicaAction
The name of the existing replica to be removed.
7016 7017 7018 7019 7020 7021 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 7016 class ReplicaUpdate < Struct.new( :create, :delete) SENSITIVE = [] include Aws::Structure end |