class
Amazonite::DynamoDB::TransactWriteItem
- Amazonite::DynamoDB::TransactWriteItem
- Reference
- Object
Overview
A list of requests that can perform update, put, delete, or check operations on multiple items in one or more tables atomically.
Included Modules
- JSON::Serializable
Defined in:
dynamodb/transact_write_item.crConstructors
- .new(pull : JSON::PullParser)
- .new(condition_check : ConditionCheck | Nil = nil, put : Put | Nil = nil, delete : Delete | Nil = nil, update : Update | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#condition_check : ConditionCheck | Nil
A request to perform a check item operation.
-
#condition_check=(condition_check : ConditionCheck | Nil)
A request to perform a check item operation.
-
#delete : Delete | Nil
A request to perform a
DeleteItemoperation. -
#delete=(delete : Delete | Nil)
A request to perform a
DeleteItemoperation. -
#hash(hasher)
See
Object#hash(hasher) -
#put : Put | Nil
A request to perform a
PutItemoperation. -
#put=(put : Put | Nil)
A request to perform a
PutItemoperation. -
#update : Update | Nil
A request to perform an
UpdateItemoperation. -
#update=(update : Update | Nil)
A request to perform an
UpdateItemoperation. - #validate! : Nil
Constructor Detail
def self.new(condition_check : ConditionCheck | Nil = nil, put : Put | Nil = nil, delete : Delete | Nil = nil, update : Update | Nil = nil)
#
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true if this reference is the same as other. Invokes same?.
def condition_check=(condition_check : ConditionCheck | Nil)
#
A request to perform a check item operation.