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

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

Aws.DynamoDb.Commands.Scan

Description

Implementation of Amazon DynamoDb Scan command.

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

Synopsis

Documentation

data Scan Source

A Scan command that uses primary keys for an expedient scan.

Constructors

Scan 

Fields

sTableName :: Text

Required.

sFilter :: Conditions

Whether to filter results before returning to client

sStartKey :: Maybe [Attribute]

Exclusive start key to resume a previous query.

sLimit :: Maybe Int

Whether to limit result set size

sSelect :: QuerySelect

What to return from Scan

sRetCons :: ReturnConsumption
 
sSegment :: Int

Segment number, starting at 0, for parallel queries.

sTotalSegments :: Int

Total number of parallel segments. 1 means sequential scan.

scan Source

Arguments

:: Text

Table name

-> Scan 

Construct a minimal Scan request.