amazonka-dynamodb 0.0.4 → 0.0.5
raw patch · 17 files changed
+34/−2 lines, 17 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-dynamodb.cabal +2/−2
- gen/Network/AWS/DynamoDB.hs +2/−0
- gen/Network/AWS/DynamoDB/BatchGetItem.hs +2/−0
- gen/Network/AWS/DynamoDB/BatchWriteItem.hs +2/−0
- gen/Network/AWS/DynamoDB/CreateTable.hs +2/−0
- gen/Network/AWS/DynamoDB/DeleteItem.hs +2/−0
- gen/Network/AWS/DynamoDB/DeleteTable.hs +2/−0
- gen/Network/AWS/DynamoDB/DescribeTable.hs +2/−0
- gen/Network/AWS/DynamoDB/GetItem.hs +2/−0
- gen/Network/AWS/DynamoDB/ListTables.hs +2/−0
- gen/Network/AWS/DynamoDB/PutItem.hs +2/−0
- gen/Network/AWS/DynamoDB/Query.hs +2/−0
- gen/Network/AWS/DynamoDB/Scan.hs +2/−0
- gen/Network/AWS/DynamoDB/Types.hs +2/−0
- gen/Network/AWS/DynamoDB/UpdateItem.hs +2/−0
- gen/Network/AWS/DynamoDB/UpdateTable.hs +2/−0
README.md view
@@ -30,3 +30,5 @@ ## Licence `amazonka-dynamodb` 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-dynamodb.cabal view
@@ -1,5 +1,5 @@ name: amazonka-dynamodb-version: 0.0.4+version: 0.0.5 synopsis: Amazon DynamoDB SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -57,5 +57,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/DynamoDB.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 DynamoDB is a fully managed NoSQL database service that provides fast -- and predictable performance with seamless scalability. You can use Amazon
gen/Network/AWS/DynamoDB/BatchGetItem.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. -- | The /BatchGetItem/ operation returns the attributes of one or more items from -- one or more tables. You identify requested items by primary key.
gen/Network/AWS/DynamoDB/BatchWriteItem.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. -- | The /BatchWriteItem/ operation puts or deletes multiple items in one or more -- tables. A single call to /BatchWriteItem/ can write up to 16 MB of data, which
gen/Network/AWS/DynamoDB/CreateTable.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. -- | The /CreateTable/ operation adds a new table to your account. In an AWS -- account, table names must be unique within each region. That is, you can have
gen/Network/AWS/DynamoDB/DeleteItem.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 single item in a table by primary key. You can perform a -- conditional delete operation that deletes the item if it exists, or if it has
gen/Network/AWS/DynamoDB/DeleteTable.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. -- | The /DeleteTable/ operation deletes a table and all of its items. After a /DeleteTable/ request, the specified table is in the 'DELETING' state until DynamoDB -- completes the deletion. If the table is in the 'ACTIVE' state, you can delete
gen/Network/AWS/DynamoDB/DescribeTable.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. -- | Returns information about the table, including the current status of the -- table, when it was created, the primary key schema, and any indexes on the
gen/Network/AWS/DynamoDB/GetItem.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. -- | The /GetItem/ operation returns a set of attributes for the item with the given -- primary key. If there is no matching item, /GetItem/ does not return any data.
gen/Network/AWS/DynamoDB/ListTables.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. -- | Returns an array of table names associated with the current account and -- endpoint. The output from /ListTables/ is paginated, with each page returning a
gen/Network/AWS/DynamoDB/PutItem.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 new item, or replaces an old item with a new item. If an item that -- has the same primary key as the new item already exists in the specified
gen/Network/AWS/DynamoDB/Query.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. -- | A /Query/ operation directly accesses items from a table using the table -- primary key, or from an index using the index key. You must provide a
gen/Network/AWS/DynamoDB/Scan.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. -- | The /Scan/ operation returns one or more items and item attributes by accessing -- every item in the table. To have DynamoDB return fewer items, you can provide
gen/Network/AWS/DynamoDB/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.DynamoDB.Types (
gen/Network/AWS/DynamoDB/UpdateItem.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. -- | Edits an existing item's attributes, or adds a new item to the table if it -- does not already exist. You can put, delete, or add attribute values. You can
gen/Network/AWS/DynamoDB/UpdateTable.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. -- | Updates the provisioned throughput for the given table. Setting the -- throughput for a table helps you manage performance and is part of the