aws-0.13.0: Amazon Web Services (AWS) for Haskell

CopyrightSoostone Inc
LicenseBSD3
MaintainerOzgun Ataman <ozgun.ataman@soostone.com>
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Aws.DynamoDb.Commands.GetItem

Description

 

Synopsis

Documentation

data GetItem Source

A GetItem query that fetches a specific object from DDB.

See: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/API_GetItem.html

Constructors

GetItem 

Fields

giTableName :: Text
 
giKey :: PrimaryKey
 
giAttrs :: Maybe [Text]

Attributes to get. Nothing grabs everything.

giConsistent :: Bool

Whether to issue a consistent read.

giRetCons :: ReturnConsumption

Whether to return consumption stats.

getItem Source

Arguments

:: Text

Table name

-> PrimaryKey

Primary key

-> GetItem 

Construct a minimal GetItem request.