amazonka-kinesis 0.0.4 → 0.0.5
raw patch · 16 files changed
+32/−2 lines, 16 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-kinesis.cabal +2/−2
- gen/Network/AWS/Kinesis.hs +2/−0
- gen/Network/AWS/Kinesis/AddTagsToStream.hs +2/−0
- gen/Network/AWS/Kinesis/CreateStream.hs +2/−0
- gen/Network/AWS/Kinesis/DeleteStream.hs +2/−0
- gen/Network/AWS/Kinesis/DescribeStream.hs +2/−0
- gen/Network/AWS/Kinesis/GetRecords.hs +2/−0
- gen/Network/AWS/Kinesis/GetShardIterator.hs +2/−0
- gen/Network/AWS/Kinesis/ListStreams.hs +2/−0
- gen/Network/AWS/Kinesis/ListTagsForStream.hs +2/−0
- gen/Network/AWS/Kinesis/MergeShards.hs +2/−0
- gen/Network/AWS/Kinesis/PutRecord.hs +2/−0
- gen/Network/AWS/Kinesis/RemoveTagsFromStream.hs +2/−0
- gen/Network/AWS/Kinesis/SplitShard.hs +2/−0
- gen/Network/AWS/Kinesis/Types.hs +2/−0
README.md view
@@ -27,3 +27,5 @@ ## Licence `amazonka-kinesis` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-kinesis.cabal view
@@ -1,5 +1,5 @@ name: amazonka-kinesis-version: 0.0.4+version: 0.0.5 synopsis: Amazon Kinesis SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -53,5 +53,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/Kinesis.hs view
@@ -7,6 +7,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Amazon Kinesis is a managed service that scales elastically for real-time -- processing of streaming big data. The service takes in large streams of data
gen/Network/AWS/Kinesis/AddTagsToStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Adds or updates tags for the specified Amazon Kinesis stream. Each stream can -- have up to 10 tags.
gen/Network/AWS/Kinesis/CreateStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a Amazon Kinesis stream. A stream captures and transports data -- records that are continuously emitted from different data sources or /producers/
gen/Network/AWS/Kinesis/DeleteStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes a stream and all its shards and data. You must shut down any -- applications that are operating on the stream before you delete the stream.
gen/Network/AWS/Kinesis/DescribeStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Describes the specified stream. --
gen/Network/AWS/Kinesis/GetRecords.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Gets data records from a shard. --
gen/Network/AWS/Kinesis/GetShardIterator.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Gets a shard iterator. A shard iterator expires five minutes after it is -- returned to the requester.
gen/Network/AWS/Kinesis/ListStreams.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Lists your streams. --
gen/Network/AWS/Kinesis/ListTagsForStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Lists the tags for the specified Amazon Kinesis stream. --
gen/Network/AWS/Kinesis/MergeShards.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Merges two adjacent shards in a stream and combines them into a single shard -- to reduce the stream's capacity to ingest and transport data. Two shards are
gen/Network/AWS/Kinesis/PutRecord.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Puts a data record from a producer into an Amazon Kinesis stream. You must -- call 'PutRecord' to send data from the producer into the Amazon Kinesis stream
gen/Network/AWS/Kinesis/RemoveTagsFromStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes tags from the specified Amazon Kinesis stream. --
gen/Network/AWS/Kinesis/SplitShard.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Splits a shard into two new shards in the stream, to increase the stream's -- capacity to ingest and transport data. 'SplitShard' is called when there is a
gen/Network/AWS/Kinesis/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. module Network.AWS.Kinesis.Types (