aws-sdk-dynamodb 1.70.0 → 1.71.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: e15f9bd050a76bc26db4367c0aabbc70b5775449163824ae0e0d30fb043730b7
4
- data.tar.gz: ab8f6ea3a8aa45422be5e85d49dd68fdd094d570743978bbb85bac65ac3603bd
3
+ metadata.gz: d7f505e912836b001b782b6a2511a5918ea5f7c889719f67725cefdd692d587e
4
+ data.tar.gz: e2411a26dc0de46c3f02bed05cd8d56b0f6e7981756757d04f09b71ebd892422
5
5
  SHA512:
6
- metadata.gz: bbdfbfa5a90f5a136df25efb2f462eb24a4df02010969c05afa18822bd856ad03edea15c5d82a8dce0e231a8f74b3ebabd561dfd423ab5bbffc168576889284a
7
- data.tar.gz: 1c7f31903c7d0005daf10dc78db72540ef90379624e715d515693172ba66ee48e17a2c2c7d6bf44f63fc04ebc9f441750b9137c3d0a9679be7613281aca87dff
6
+ metadata.gz: a80325166dcd65a4292e6980e9d4b036b72c8aff952534172c900ce77f162df692be1e53c3828c3f35186e4b64bda1572c5d4f50f4f9d5fb1124568734ec45fe
7
+ data.tar.gz: ee4b167a2a261ef17cffa0fc5668b3362d08a899ba8849651c6d6b707882cdbdb2bfb445855760e1204a9bcd9da899d548694e0a2f75a067ababcefc0c84fc9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2022-02-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for DynamoDB Java SDK.
8
+
4
9
  1.70.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -740,9 +740,13 @@ module Aws::DynamoDB
740
740
  end
741
741
 
742
742
  # The `BatchWriteItem` operation puts or deletes multiple items in one
743
- # or more tables. A single call to `BatchWriteItem` can write up to 16
744
- # MB of data, which can comprise as many as 25 put or delete requests.
745
- # Individual items to be written can be as large as 400 KB.
743
+ # or more tables. A single call to `BatchWriteItem` can transmit up to
744
+ # 16MB of data over the network, consisting of up to 25 item put or
745
+ # delete operations. While individual items can be up to 400 KB once
746
+ # stored, it's important to note that an item's representation might
747
+ # be greater than 400KB while being sent in DynamoDB's JSON format for
748
+ # the API call. For more details on this distinction, see [Naming Rules
749
+ # and Data Types][1].
746
750
  #
747
751
  # <note markdown="1"> `BatchWriteItem` cannot update items. To update items, use the
748
752
  # `UpdateItem` action.
@@ -772,7 +776,7 @@ module Aws::DynamoDB
772
776
  # operation using exponential backoff, the individual requests in the
773
777
  # batch are much more likely to succeed.
774
778
  #
775
- # For more information, see [Batch Operations and Error Handling][1] in
779
+ # For more information, see [Batch Operations and Error Handling][2] in
776
780
  # the *Amazon DynamoDB Developer Guide*.
777
781
  #
778
782
  # With `BatchWriteItem`, you can efficiently write or delete large
@@ -821,7 +825,8 @@ module Aws::DynamoDB
821
825
  #
822
826
  #
823
827
  #
824
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#Programming.Errors.BatchOperations
828
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
829
+ # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#Programming.Errors.BatchOperations
825
830
  #
826
831
  # @option params [required, Hash<String,Array>] :request_items
827
832
  # A map of one or more table names and, for each table, a list of
@@ -5995,10 +6000,10 @@ module Aws::DynamoDB
5995
6000
  # index. CloudWatch Contributor Insights for DynamoDB graphs display the
5996
6001
  # partition key and (if applicable) sort key of frequently accessed
5997
6002
  # items and frequently throttled items in plaintext. If you require the
5998
- # use of AWS Key Management Service (KMS) to encrypt this table’s
5999
- # partition key and sort key data with an AWS managed key or customer
6000
- # managed key, you should not enable CloudWatch Contributor Insights for
6001
- # DynamoDB for this table.
6003
+ # use of Amazon Web Services Key Management Service (KMS) to encrypt
6004
+ # this table’s partition key and sort key data with an Amazon Web
6005
+ # Services managed key or customer managed key, you should not enable
6006
+ # CloudWatch Contributor Insights for DynamoDB for this table.
6002
6007
  #
6003
6008
  # @option params [required, String] :table_name
6004
6009
  # The name of the table.
@@ -7313,7 +7318,7 @@ module Aws::DynamoDB
7313
7318
  params: params,
7314
7319
  config: config)
7315
7320
  context[:gem_name] = 'aws-sdk-dynamodb'
7316
- context[:gem_version] = '1.70.0'
7321
+ context[:gem_version] = '1.71.0'
7317
7322
  Seahorse::Client::Request.new(handlers, context)
7318
7323
  end
7319
7324
 
@@ -5740,8 +5740,6 @@ module Aws::DynamoDB
5740
5740
  # @!attribute [rw] point_in_time_recovery_status
5741
5741
  # The current state of point in time recovery:
5742
5742
  #
5743
- # * `ENABLING` - Point in time recovery is being enabled.
5744
- #
5745
5743
  # * `ENABLED` - Point in time recovery is enabled.
5746
5744
  #
5747
5745
  # * `DISABLED` - Point in time recovery is disabled.
@@ -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.70.0'
53
+ GEM_VERSION = '1.71.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.70.0
4
+ version: 1.71.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core