Copyright | Soostone Inc |
---|---|
License | BSD3 |
Maintainer | Ozgun Ataman <ozgun.ataman@soostone.com> |
Stability | experimental |
Safe Haskell | None |
Language | Haskell2010 |
- data UpdateItem = UpdateItem {}
- updateItem :: Text -> PrimaryKey -> [AttributeUpdate] -> UpdateItem
- data AttributeUpdate = AttributeUpdate {}
- au :: Attribute -> AttributeUpdate
- data UpdateAction
- data UpdateItemResponse = UpdateItemResponse {}
Documentation
data UpdateItem Source #
An UpdateItem
request.
UpdateItem | |
|
:: Text | Table name |
-> PrimaryKey | Primary key for item |
-> [AttributeUpdate] | Updates for this item |
-> UpdateItem |
Construct a minimal UpdateItem
request.
data AttributeUpdate Source #
AttributeUpdate | |
|
au :: Attribute -> AttributeUpdate Source #
Shorthand for the AttributeUpdate
constructor. Defaults to PUT
for the update action.
data UpdateAction Source #
Type of attribute update to perform.
See AWS docs at:
http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateItem.html
data UpdateItemResponse Source #
UpdateItemResponse | |
|