aws-sdk-dynamodb 1.76.0 → 1.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38e9a6c4390046dd80d332b38be8078908a2b7a60249805aabc34ed489c9edd1
4
- data.tar.gz: f1b07247a61dc67564a2d37779247a438025d9a242d00b08eb4aa0c4a229a911
3
+ metadata.gz: bb18148b788c277866c03aa7a7c30820f0577f818b7f04bd4884ed87c4129914
4
+ data.tar.gz: 9cfd3a5109b6a9473eb584e914aad989d71e49588cf115cc5c33b83b59c64d35
5
5
  SHA512:
6
- metadata.gz: e8dd2c846e884e49051e21144be2f432f6fbc81d33a98bf7eea5ce3150ca1e40018e7318f56778648c33212ac54b748808bb0c6e6d938016d0444e4d8ad8e2f8
7
- data.tar.gz: a032cbaad4f8ac8d1994220c48d82ff81c918f567cb3aca4bd86b8e9db7f728a1442c4188fd44ef024698700fdf2bae66b90003d388b027ef6e6f317c63dbcbb
6
+ metadata.gz: e7f61441c77b866778da383a638dfff403fafacb92c128747a319133067dc50efeffc923378d9be2da3617f04cc54cd0dac5ad5abcbca72f1a1579719f15f45f
7
+ data.tar.gz: ec4eae1e3971f6935409178f2014538972d90007d1724c34c351804dc573ccec54498992b63fd8d27f2172d87eed3f308aeadcde4f3da76a235aa6324cf3603a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2022-09-15)
5
+ ------------------
6
+
7
+ * Feature - Increased DynamoDB transaction limit from 25 to 100.
8
+
4
9
  1.76.0 (2022-08-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.77.0
@@ -5915,7 +5915,7 @@ module Aws::DynamoDB
5915
5915
  # `TransactGetItems` is a synchronous operation that atomically
5916
5916
  # retrieves multiple items from one or more tables (but not from
5917
5917
  # indexes) in a single account and Region. A `TransactGetItems` call can
5918
- # contain up to 25 `TransactGetItem` objects, each of which contains a
5918
+ # contain up to 100 `TransactGetItem` objects, each of which contains a
5919
5919
  # `Get` structure that specifies an item to retrieve from a table in the
5920
5920
  # account and Region. A call to `TransactGetItems` cannot retrieve items
5921
5921
  # from tables in more than one Amazon Web Services account or Region.
@@ -5936,7 +5936,7 @@ module Aws::DynamoDB
5936
5936
  # MB.
5937
5937
  #
5938
5938
  # @option params [required, Array<Types::TransactGetItem>] :transact_items
5939
- # An ordered array of up to 25 `TransactGetItem` objects, each of which
5939
+ # An ordered array of up to 100 `TransactGetItem` objects, each of which
5940
5940
  # contains a `Get` structure.
5941
5941
  #
5942
5942
  # @option params [String] :return_consumed_capacity
@@ -6001,7 +6001,7 @@ module Aws::DynamoDB
6001
6001
  end
6002
6002
 
6003
6003
  # `TransactWriteItems` is a synchronous write operation that groups up
6004
- # to 25 action requests. These actions can target items in different
6004
+ # to 100 action requests. These actions can target items in different
6005
6005
  # tables, but not in different Amazon Web Services accounts or Regions,
6006
6006
  # and no two actions can target the same item. For example, you cannot
6007
6007
  # both `ConditionCheck` and `Update` the same item. The aggregate size
@@ -6059,7 +6059,7 @@ module Aws::DynamoDB
6059
6059
  # * There is a user error, such as an invalid data format.
6060
6060
  #
6061
6061
  # @option params [required, Array<Types::TransactWriteItem>] :transact_items
6062
- # An ordered array of up to 25 `TransactWriteItem` objects, each of
6062
+ # An ordered array of up to 100 `TransactWriteItem` objects, each of
6063
6063
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
6064
6064
  # object. These can operate on items in different tables, but the tables
6065
6065
  # must reside in the same Amazon Web Services account and Region, and no
@@ -7628,7 +7628,7 @@ module Aws::DynamoDB
7628
7628
  params: params,
7629
7629
  config: config)
7630
7630
  context[:gem_name] = 'aws-sdk-dynamodb'
7631
- context[:gem_version] = '1.76.0'
7631
+ context[:gem_version] = '1.77.0'
7632
7632
  Seahorse::Client::Request.new(handlers, context)
7633
7633
  end
7634
7634
 
@@ -9962,7 +9962,7 @@ module Aws::DynamoDB
9962
9962
  # }
9963
9963
  #
9964
9964
  # @!attribute [rw] transact_items
9965
- # An ordered array of up to 25 `TransactGetItem` objects, each of
9965
+ # An ordered array of up to 100 `TransactGetItem` objects, each of
9966
9966
  # which contains a `Get` structure.
9967
9967
  # @return [Array<Types::TransactGetItem>]
9968
9968
  #
@@ -9990,7 +9990,7 @@ module Aws::DynamoDB
9990
9990
  # @return [Array<Types::ConsumedCapacity>]
9991
9991
  #
9992
9992
  # @!attribute [rw] responses
9993
- # An ordered array of up to 25 `ItemResponse` objects, each of which
9993
+ # An ordered array of up to 100 `ItemResponse` objects, each of which
9994
9994
  # corresponds to the `TransactGetItem` object in the same position in
9995
9995
  # the *TransactItems* array. Each `ItemResponse` object contains a Map
9996
9996
  # of the name-value pairs that are the projected attributes of the
@@ -10175,7 +10175,7 @@ module Aws::DynamoDB
10175
10175
  # }
10176
10176
  #
10177
10177
  # @!attribute [rw] transact_items
10178
- # An ordered array of up to 25 `TransactWriteItem` objects, each of
10178
+ # An ordered array of up to 100 `TransactWriteItem` objects, each of
10179
10179
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
10180
10180
  # object. These can operate on items in different tables, but the
10181
10181
  # tables must reside in the same Amazon Web Services account and
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
50
50
  # @!group service
51
51
  module Aws::DynamoDB
52
52
 
53
- GEM_VERSION = '1.76.0'
53
+ GEM_VERSION = '1.77.0'
54
54
 
55
55
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dynamodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core