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

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

Aws.DynamoDb.Commands.PutItem

Description

http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutItem.html

Synopsis

Documentation

data PutItem Source

Constructors

PutItem 

Fields

piTable :: Text

Target table

piItem :: Item

An item to Put. Attributes here will replace what maybe under the key on DDB.

piExpect :: Conditions

(Possible) set of expections for a conditional Put

piReturn :: UpdateReturn

What to return from this query.

piRetCons :: ReturnConsumption
 
piRetMet :: ReturnItemCollectionMetrics
 

putItem Source

Arguments

:: Text

A Dynamo table name

-> Item

Item to be saved

-> PutItem 

Construct a minimal PutItem request.