aws-sdk-dynamodb 1.63.0 → 1.67.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +207 -73
- data/lib/aws-sdk-dynamodb/client_api.rb +6 -0
- data/lib/aws-sdk-dynamodb/resource.rb +4 -4
- data/lib/aws-sdk-dynamodb/table.rb +21 -19
- data/lib/aws-sdk-dynamodb/types.rb +187 -104
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +4 -4
@@ -92,11 +92,11 @@ module Aws::DynamoDB
|
|
92
92
|
#
|
93
93
|
# * `ACTIVE` - The table is ready for use.
|
94
94
|
#
|
95
|
-
# * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
99
|
-
#
|
95
|
+
# * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The KMS key used to encrypt
|
96
|
+
# the table in inaccessible. Table operations may fail due to failure
|
97
|
+
# to use the KMS key. DynamoDB will initiate the table archival
|
98
|
+
# process when a table's KMS key remains inaccessible for more than
|
99
|
+
# seven days.
|
100
100
|
#
|
101
101
|
# * `ARCHIVING` - The table is being archived. Operations are not
|
102
102
|
# allowed until archival is complete.
|
@@ -303,7 +303,7 @@ module Aws::DynamoDB
|
|
303
303
|
# have the same timestamp. However, the combination of the following
|
304
304
|
# three elements is guaranteed to be unique:
|
305
305
|
#
|
306
|
-
# *
|
306
|
+
# * Amazon Web Services customer ID
|
307
307
|
#
|
308
308
|
# * Table name
|
309
309
|
#
|
@@ -321,7 +321,7 @@ module Aws::DynamoDB
|
|
321
321
|
end
|
322
322
|
|
323
323
|
# Represents the version of [global tables][1] in use, if the table is
|
324
|
-
# replicated across
|
324
|
+
# replicated across Amazon Web Services Regions.
|
325
325
|
#
|
326
326
|
#
|
327
327
|
#
|
@@ -569,8 +569,8 @@ module Aws::DynamoDB
|
|
569
569
|
#
|
570
570
|
# </note>
|
571
571
|
# @option options [String] :return_consumed_capacity
|
572
|
-
# Determines the level of detail about provisioned
|
573
|
-
# consumption that is returned in the response:
|
572
|
+
# Determines the level of detail about either provisioned or on-demand
|
573
|
+
# throughput consumption that is returned in the response:
|
574
574
|
#
|
575
575
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
576
576
|
# for the operation, together with `ConsumedCapacity` for each table
|
@@ -728,8 +728,8 @@ module Aws::DynamoDB
|
|
728
728
|
# operation uses strongly consistent reads; otherwise, the operation
|
729
729
|
# uses eventually consistent reads.
|
730
730
|
# @option options [String] :return_consumed_capacity
|
731
|
-
# Determines the level of detail about provisioned
|
732
|
-
# consumption that is returned in the response:
|
731
|
+
# Determines the level of detail about either provisioned or on-demand
|
732
|
+
# throughput consumption that is returned in the response:
|
733
733
|
#
|
734
734
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
735
735
|
# for the operation, together with `ConsumedCapacity` for each table
|
@@ -889,14 +889,16 @@ module Aws::DynamoDB
|
|
889
889
|
# * `ALL_OLD` - If `PutItem` overwrote an attribute name-value pair,
|
890
890
|
# then the content of the old item is returned.
|
891
891
|
#
|
892
|
+
# The values returned are strongly consistent.
|
893
|
+
#
|
892
894
|
# <note markdown="1"> The `ReturnValues` parameter is used by several DynamoDB operations;
|
893
895
|
# however, `PutItem` does not recognize any values other than `NONE` or
|
894
896
|
# `ALL_OLD`.
|
895
897
|
#
|
896
898
|
# </note>
|
897
899
|
# @option options [String] :return_consumed_capacity
|
898
|
-
# Determines the level of detail about provisioned
|
899
|
-
# consumption that is returned in the response:
|
900
|
+
# Determines the level of detail about either provisioned or on-demand
|
901
|
+
# throughput consumption that is returned in the response:
|
900
902
|
#
|
901
903
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
902
904
|
# for the operation, together with `ConsumedCapacity` for each table
|
@@ -1196,8 +1198,8 @@ module Aws::DynamoDB
|
|
1196
1198
|
# The data type for `ExclusiveStartKey` must be String, Number, or
|
1197
1199
|
# Binary. No set data types are allowed.
|
1198
1200
|
# @option options [String] :return_consumed_capacity
|
1199
|
-
# Determines the level of detail about provisioned
|
1200
|
-
# consumption that is returned in the response:
|
1201
|
+
# Determines the level of detail about either provisioned or on-demand
|
1202
|
+
# throughput consumption that is returned in the response:
|
1201
1203
|
#
|
1202
1204
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
1203
1205
|
# for the operation, together with `ConsumedCapacity` for each table
|
@@ -1548,8 +1550,8 @@ module Aws::DynamoDB
|
|
1548
1550
|
# must specify the same segment whose previous `Scan` returned the
|
1549
1551
|
# corresponding value of `LastEvaluatedKey`.
|
1550
1552
|
# @option options [String] :return_consumed_capacity
|
1551
|
-
# Determines the level of detail about provisioned
|
1552
|
-
# consumption that is returned in the response:
|
1553
|
+
# Determines the level of detail about either provisioned or on-demand
|
1554
|
+
# throughput consumption that is returned in the response:
|
1553
1555
|
#
|
1554
1556
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
1555
1557
|
# for the operation, together with `ConsumedCapacity` for each table
|
@@ -1992,8 +1994,8 @@ module Aws::DynamoDB
|
|
1992
1994
|
#
|
1993
1995
|
# The values returned are strongly consistent.
|
1994
1996
|
# @option options [String] :return_consumed_capacity
|
1995
|
-
# Determines the level of detail about provisioned
|
1996
|
-
# consumption that is returned in the response:
|
1997
|
+
# Determines the level of detail about either provisioned or on-demand
|
1998
|
+
# throughput consumption that is returned in the response:
|
1997
1999
|
#
|
1998
2000
|
# * `INDEXES` - The response includes the aggregate `ConsumedCapacity`
|
1999
2001
|
# for the operation, together with `ConsumedCapacity` for each table
|