Class: Aws::DynamoDB::Types::TransactWriteItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TransactWriteItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
A list of requests that can perform update, put, delete, or check operations on multiple items in one or more tables atomically.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition_check ⇒ Types::ConditionCheck
A request to perform a check item operation.
-
#delete ⇒ Types::Delete
A request to perform a ‘DeleteItem` operation.
-
#put ⇒ Types::Put
A request to perform a ‘PutItem` operation.
-
#update ⇒ Types::Update
A request to perform an ‘UpdateItem` operation.
Instance Attribute Details
#condition_check ⇒ Types::ConditionCheck
A request to perform a check item operation.
9251 9252 9253 9254 9255 9256 9257 9258 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9251 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end |
#delete ⇒ Types::Delete
A request to perform a ‘DeleteItem` operation.
9251 9252 9253 9254 9255 9256 9257 9258 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9251 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end |
#put ⇒ Types::Put
A request to perform a ‘PutItem` operation.
9251 9252 9253 9254 9255 9256 9257 9258 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9251 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end |
#update ⇒ Types::Update
A request to perform an ‘UpdateItem` operation.
9251 9252 9253 9254 9255 9256 9257 9258 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9251 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end |