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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +15 -10
- data/lib/aws-sdk-dynamodb/types.rb +0 -2
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7f505e912836b001b782b6a2511a5918ea5f7c889719f67725cefdd692d587e
|
4
|
+
data.tar.gz: e2411a26dc0de46c3f02bed05cd8d56b0f6e7981756757d04f09b71ebd892422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a80325166dcd65a4292e6980e9d4b036b72c8aff952534172c900ce77f162df692be1e53c3828c3f35186e4b64bda1572c5d4f50f4f9d5fb1124568734ec45fe
|
7
|
+
data.tar.gz: ee4b167a2a261ef17cffa0fc5668b3362d08a899ba8849651c6d6b707882cdbdb2bfb445855760e1204a9bcd9da899d548694e0a2f75a067ababcefc0c84fc9d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
744
|
-
#
|
745
|
-
#
|
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][
|
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/
|
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
|
5999
|
-
# partition key and sort key data with an
|
6000
|
-
# managed key, you should not enable
|
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.
|
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.
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
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.
|
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:
|
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
|