name: amazonka-dynamodb-streams
version: 1.4.0
synopsis: Amazon DynamoDB Streams SDK.
homepage: https://github.com/brendanhay/amazonka
bug-reports: https://github.com/brendanhay/amazonka/issues
license: OtherLicense
license-file: LICENSE
author: Brendan Hay
maintainer: Brendan Hay <brendan.g.hay@gmail.com>
copyright: Copyright (c) 2013-2016 Brendan Hay
category: Network, AWS, Cloud, Distributed Computing
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md fixture/*.yaml fixture/*.proto
description:
Amazon DynamoDB Streams
This is the Amazon DynamoDB Streams API Reference. This guide describes
the low-level API actions for accessing streams and processing stream
records. For information about application development with DynamoDB
Streams, see the
<http://docs.aws.amazon.com/amazondynamodb/latest/developerguide//Streams.html Amazon DynamoDB Developer Guide>.
Note that this document is intended for use with the following DynamoDB
documentation:
- <http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ Amazon DynamoDB Developer Guide>
- <http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/ Amazon DynamoDB API Reference>
The following are short descriptions of each low-level DynamoDB Streams
API action, organized by function.
- /DescribeStream/ - Returns detailed information about a particular
stream.
- /GetRecords/ - Retrieves the stream records from within a shard.
- /GetShardIterator/ - Returns information on how to retrieve the
streams record from a shard with a given shard ID.
- /ListStreams/ - Returns a list of all the streams associated with
the current AWS account and endpoint.
.
The types from this library are intended to be used with
<http://hackage.haskell.org/package/amazonka amazonka>, which provides
mechanisms for specifying AuthN/AuthZ information and sending requests.
.
Use of lenses is required for constructing and manipulating types.
This is due to the amount of nesting of AWS types and transparency regarding
de/serialisation into more palatable Haskell values.
The provided lenses should be compatible with any of the major lens libraries
such as <http://hackage.haskell.org/package/lens lens> or
<http://hackage.haskell.org/package/lens-family-core lens-family-core>.
.
See "Network.AWS.DynamoDBStreams" or <https://aws.amazon.com/documentation/ the AWS Documentation>
to get started.
source-repository head
type: git
location: git://github.com/brendanhay/amazonka.git
library
default-language: Haskell2010
hs-source-dirs: src gen
ghc-options: -Wall
exposed-modules:
Network.AWS.DynamoDBStreams
, Network.AWS.DynamoDBStreams.DescribeStream
, Network.AWS.DynamoDBStreams.GetRecords
, Network.AWS.DynamoDBStreams.GetShardIterator
, Network.AWS.DynamoDBStreams.ListStreams
, Network.AWS.DynamoDBStreams.Types
, Network.AWS.DynamoDBStreams.Waiters
other-modules:
Network.AWS.DynamoDBStreams.Types.Product
, Network.AWS.DynamoDBStreams.Types.Sum
build-depends:
amazonka-core == 1.4.0.*
, base >= 4.7 && < 5
test-suite amazonka-dynamodb-streams-test
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options: -Wall -threaded
-- This section is encoded by the template and any modules added by
-- hand outside these namespaces will not correctly be added to the
-- distribution package.
other-modules:
Test.AWS.DynamoDBStreams
, Test.AWS.Gen.DynamoDBStreams
, Test.AWS.DynamoDBStreams.Internal
build-depends:
amazonka-core == 1.4.0.*
, amazonka-test == 1.4.0.*
, amazonka-dynamodb-streams == 1.4.0.*
, base
, bytestring
, tasty
, tasty-hunit
, text
, time
, unordered-containers