Copyright | Soostone Inc |
---|---|
License | BSD3 |
Maintainer | Ozgun Ataman <ozgun.ataman@soostone.com> |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Implementation of Amazon DynamoDb Scan command.
See: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Scan.html
Synopsis
- data Scan = Scan {
- sTableName :: Text
- sConsistentRead :: Bool
- sFilter :: Conditions
- sStartKey :: Maybe [Attribute]
- sLimit :: Maybe Int
- sIndex :: Maybe Text
- sSelect :: QuerySelect
- sRetCons :: ReturnConsumption
- sSegment :: Int
- sTotalSegments :: Int
- scan :: Text -> Scan
- data ScanResponse = ScanResponse {}
Documentation
A Scan command that uses primary keys for an expedient scan.
Scan | |
|
Instances
ToJSON Scan Source # | |
SignQuery Scan Source # | |
Defined in Aws.DynamoDb.Commands.Scan signQuery :: Scan -> ServiceConfiguration Scan queryType -> SignatureData -> SignedQuery Source # | |
Read Scan Source # | |
Show Scan Source # | |
Eq Scan Source # | |
Ord Scan Source # | |
IteratedTransaction Scan ScanResponse Source # | |
Defined in Aws.DynamoDb.Commands.Scan nextIteratedRequest :: Scan -> ScanResponse -> Maybe Scan Source # | |
Transaction Scan ScanResponse Source # | |
Defined in Aws.DynamoDb.Commands.Scan | |
type ServiceConfiguration Scan Source # | |
Defined in Aws.DynamoDb.Commands.Scan |
data ScanResponse Source #
Response to a Scan
query.