aws-sdk-dynamodb 1.85.0 → 1.87.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 221b5867daf131f845d838853787c6543d8ff0bd4d54ad98e6f68abacfc374cf
4
- data.tar.gz: 033f302798423df43dbc7e9c258122498166dc7c77fe9c56e53307ed530c6139
3
+ metadata.gz: 534893f6f9ef58de0a530aa3118ab4cb7237c98f44b3c2af52e07ba836bb5163
4
+ data.tar.gz: e9db746c0ee11f62d86416d49ac93fcca54535ca668398e716d1519d206a4843
5
5
  SHA512:
6
- metadata.gz: f1e726f9480b66ff18158772366c3ad6c214cdc1ce05793827e0eaca730cf9708c5782efcebeb3842255e84673f25b3ce5cdb6e4295a4e83c26c94347223a5c1
7
- data.tar.gz: 829e3c6f5b12d1507ccdfcf5e5575f0993e3b347f126328e50f68121f02996ce6c5f226fcdf4085fa748a960ae36ae32b4d61f0ec94871e3a6ffd3afeac95ac5
6
+ metadata.gz: 99b7d7b5a7ae745e096af3d39b97766d2ef37464ca99ebca9618b32e90e423bd29d8f643404a89b9fd4b1bce5e2ea0538d568595b3fe9f10feb3c34adc8cabee
7
+ data.tar.gz: 51e22d5c57c97be6a6eaecd435be754af2aef042f9f3fcf76cf82a670dd724e43739761ad79e2fee7e61e1a07b0f3f0b23fd50dc077c95a8e2e3a82265309cfc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2023-06-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.86.0 (2023-06-12)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for DynamoDB
13
+
4
14
  1.85.0 (2023-05-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.87.0
@@ -501,10 +501,10 @@ module Aws::DynamoDB
501
501
  # A single operation can retrieve up to 16 MB of data, which can contain
502
502
  # as many as 100 items. `BatchGetItem` returns a partial result if the
503
503
  # response size limit is exceeded, the table's provisioned throughput
504
- # is exceeded, or an internal processing failure occurs. If a partial
505
- # result is returned, the operation returns a value for
506
- # `UnprocessedKeys`. You can use this value to retry the operation
507
- # starting with the next item to get.
504
+ # is exceeded, more than 1MB per partition is requested, or an internal
505
+ # processing failure occurs. If a partial result is returned, the
506
+ # operation returns a value for `UnprocessedKeys`. You can use this
507
+ # value to retry the operation starting with the next item to get.
508
508
  #
509
509
  # If you request more than 100 items, `BatchGetItem` returns a
510
510
  # `ValidationException` with the message "Too many items requested for
@@ -7753,7 +7753,7 @@ module Aws::DynamoDB
7753
7753
  params: params,
7754
7754
  config: config)
7755
7755
  context[:gem_name] = 'aws-sdk-dynamodb'
7756
- context[:gem_version] = '1.85.0'
7756
+ context[:gem_version] = '1.87.0'
7757
7757
  Seahorse::Client::Request.new(handlers, context)
7758
7758
  end
7759
7759
 
@@ -9,6 +9,7 @@
9
9
 
10
10
 
11
11
  module Aws::DynamoDB
12
+ # @api private
12
13
  module Endpoints
13
14
 
14
15
  class BatchExecuteStatement
@@ -4888,6 +4888,12 @@ module Aws::DynamoDB
4888
4888
  #
4889
4889
  # There is a soft account quota of 2,500 tables.
4890
4890
  #
4891
+ # GetRecords was called with a value of more than 1000 for the limit
4892
+ # request parameter.
4893
+ #
4894
+ # More than 2 processes are reading from the same streams shard at the
4895
+ # same time. Exceeding this limit may result in request throttling.
4896
+ #
4891
4897
  # @!attribute [rw] message
4892
4898
  # Too many operations for a given subscriber.
4893
4899
  # @return [String]
@@ -5533,7 +5539,7 @@ module Aws::DynamoDB
5533
5539
  #
5534
5540
  #
5535
5541
  #
5536
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput
5542
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughput.html
5537
5543
  # @return [Integer]
5538
5544
  #
5539
5545
  # @!attribute [rw] write_capacity_units
@@ -5547,7 +5553,7 @@ module Aws::DynamoDB
5547
5553
  #
5548
5554
  #
5549
5555
  #
5550
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput
5556
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughput.html
5551
5557
  # @return [Integer]
5552
5558
  #
5553
5559
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ProvisionedThroughput AWS API Documentation
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
54
54
  # @!group service
55
55
  module Aws::DynamoDB
56
56
 
57
- GEM_VERSION = '1.85.0'
57
+ GEM_VERSION = '1.87.0'
58
58
 
59
59
  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.85.0
4
+ version: 1.87.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: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core