Copyright | Soostone Inc |
---|---|
License | BSD3 |
Maintainer | Ozgun Ataman <ozgun.ataman@soostone.com> |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data GetItem = GetItem {
- giTableName :: Text
- giKey :: PrimaryKey
- giAttrs :: Maybe [Text]
- giConsistent :: Bool
- giRetCons :: ReturnConsumption
- getItem :: Text -> PrimaryKey -> GetItem
- data GetItemResponse = GetItemResponse {}
Documentation
A GetItem query that fetches a specific object from DDB.
See: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/API_GetItem.html
GetItem | |
|
Instances
ToJSON GetItem Source # | |
SignQuery GetItem Source # | |
Defined in Aws.DynamoDb.Commands.GetItem signQuery :: GetItem -> ServiceConfiguration GetItem queryType -> SignatureData -> SignedQuery Source # | |
Read GetItem Source # | |
Show GetItem Source # | |
Eq GetItem Source # | |
Ord GetItem Source # | |
Defined in Aws.DynamoDb.Commands.GetItem | |
Transaction GetItem GetItemResponse Source # | |
Defined in Aws.DynamoDb.Commands.GetItem | |
type ServiceConfiguration GetItem Source # | |
Defined in Aws.DynamoDb.Commands.GetItem |
:: Text | Table name |
-> PrimaryKey | Primary key |
-> GetItem |
Construct a minimal GetItem
request.
data GetItemResponse Source #
Response to a GetItem
query.