aws-sdk-dynamodb 1.83.0 → 1.84.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +18 -24
- data/lib/aws-sdk-dynamodb/resource.rb +2 -2
- data/lib/aws-sdk-dynamodb/table.rb +12 -18
- data/lib/aws-sdk-dynamodb/types.rb +43 -44
- 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: b31fcc73d67db0049e012495b695e4ae4b85cc952c8f862181dcb417e0e4cf0a
|
4
|
+
data.tar.gz: 87bea8666f245827107d1ad9b06061de3ef361d396116ecb206fd056aa985b88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 273ec0815f3857aeb1a7d67c60973119f5b8c0c4a5f497405fc8869de0a5bd4200958ff128da8740a7f89973671fcd1060bcbb7c67903cf18e5d3b019b4e6646
|
7
|
+
data.tar.gz: 23231683370f4f0bb8a8d72a24496f82d0900fb6d9228e491b87ea79ffcef8b79d8cb1e0d7f7a6e99ddeddbb3bde0d798711e59fded447df468a441b72a289d5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.84.0
|
@@ -534,8 +534,8 @@ module Aws::DynamoDB
|
|
534
534
|
# every table in the request. If you want strongly consistent reads
|
535
535
|
# instead, you can set `ConsistentRead` to `true` for any or all tables.
|
536
536
|
#
|
537
|
-
# In order to minimize response latency, `BatchGetItem`
|
538
|
-
# in parallel.
|
537
|
+
# In order to minimize response latency, `BatchGetItem` may retrieve
|
538
|
+
# items in parallel.
|
539
539
|
#
|
540
540
|
# When designing your application, keep in mind that DynamoDB does not
|
541
541
|
# return items in any particular order. To help parse the response by
|
@@ -565,7 +565,7 @@ module Aws::DynamoDB
|
|
565
565
|
#
|
566
566
|
# * `ExpressionAttributeNames` - One or more substitution tokens for
|
567
567
|
# attribute names in the `ProjectionExpression` parameter. The
|
568
|
-
# following are some use cases for using `ExpressionAttributeNames
|
568
|
+
# following are some use cases for using `ExpressionAttributeNames`:
|
569
569
|
#
|
570
570
|
# * To access an attribute whose name conflicts with a DynamoDB
|
571
571
|
# reserved word.
|
@@ -587,7 +587,7 @@ module Aws::DynamoDB
|
|
587
587
|
# cannot be used directly in an expression. (For the complete list of
|
588
588
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
589
589
|
# Developer Guide*). To work around this, you could specify the
|
590
|
-
# following for `ExpressionAttributeNames
|
590
|
+
# following for `ExpressionAttributeNames`:
|
591
591
|
#
|
592
592
|
# * `\{"#P":"Percentile"\}`
|
593
593
|
#
|
@@ -1864,8 +1864,7 @@ module Aws::DynamoDB
|
|
1864
1864
|
#
|
1865
1865
|
# @option params [Hash<String,String>] :expression_attribute_names
|
1866
1866
|
# One or more substitution tokens for attribute names in an expression.
|
1867
|
-
# The following are some use cases for using
|
1868
|
-
# `ExpressionAttributeNames`\:
|
1867
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
1869
1868
|
#
|
1870
1869
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
1871
1870
|
# word.
|
@@ -1887,7 +1886,7 @@ module Aws::DynamoDB
|
|
1887
1886
|
# cannot be used directly in an expression. (For the complete list of
|
1888
1887
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
1889
1888
|
# Developer Guide*). To work around this, you could specify the
|
1890
|
-
# following for `ExpressionAttributeNames
|
1889
|
+
# following for `ExpressionAttributeNames`:
|
1891
1890
|
#
|
1892
1891
|
# * `\{"#P":"Percentile"\}`
|
1893
1892
|
#
|
@@ -3544,8 +3543,7 @@ module Aws::DynamoDB
|
|
3544
3543
|
#
|
3545
3544
|
# @option params [Hash<String,String>] :expression_attribute_names
|
3546
3545
|
# One or more substitution tokens for attribute names in an expression.
|
3547
|
-
# The following are some use cases for using
|
3548
|
-
# `ExpressionAttributeNames`\:
|
3546
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
3549
3547
|
#
|
3550
3548
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
3551
3549
|
# word.
|
@@ -3567,7 +3565,7 @@ module Aws::DynamoDB
|
|
3567
3565
|
# cannot be used directly in an expression. (For the complete list of
|
3568
3566
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
3569
3567
|
# Developer Guide*). To work around this, you could specify the
|
3570
|
-
# following for `ExpressionAttributeNames
|
3568
|
+
# following for `ExpressionAttributeNames`:
|
3571
3569
|
#
|
3572
3570
|
# * `\{"#P":"Percentile"\}`
|
3573
3571
|
#
|
@@ -4379,8 +4377,7 @@ module Aws::DynamoDB
|
|
4379
4377
|
#
|
4380
4378
|
# @option params [Hash<String,String>] :expression_attribute_names
|
4381
4379
|
# One or more substitution tokens for attribute names in an expression.
|
4382
|
-
# The following are some use cases for using
|
4383
|
-
# `ExpressionAttributeNames`\:
|
4380
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
4384
4381
|
#
|
4385
4382
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
4386
4383
|
# word.
|
@@ -4402,7 +4399,7 @@ module Aws::DynamoDB
|
|
4402
4399
|
# cannot be used directly in an expression. (For the complete list of
|
4403
4400
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
4404
4401
|
# Developer Guide*). To work around this, you could specify the
|
4405
|
-
# following for `ExpressionAttributeNames
|
4402
|
+
# following for `ExpressionAttributeNames`:
|
4406
4403
|
#
|
4407
4404
|
# * `\{"#P":"Percentile"\}`
|
4408
4405
|
#
|
@@ -4897,8 +4894,7 @@ module Aws::DynamoDB
|
|
4897
4894
|
#
|
4898
4895
|
# @option params [Hash<String,String>] :expression_attribute_names
|
4899
4896
|
# One or more substitution tokens for attribute names in an expression.
|
4900
|
-
# The following are some use cases for using
|
4901
|
-
# `ExpressionAttributeNames`\:
|
4897
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
4902
4898
|
#
|
4903
4899
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
4904
4900
|
# word.
|
@@ -4920,7 +4916,7 @@ module Aws::DynamoDB
|
|
4920
4916
|
# cannot be used directly in an expression. (For the complete list of
|
4921
4917
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
4922
4918
|
# Developer Guide*). To work around this, you could specify the
|
4923
|
-
# following for `ExpressionAttributeNames
|
4919
|
+
# following for `ExpressionAttributeNames`:
|
4924
4920
|
#
|
4925
4921
|
# * `\{"#P":"Percentile"\}`
|
4926
4922
|
#
|
@@ -5083,7 +5079,7 @@ module Aws::DynamoDB
|
|
5083
5079
|
end
|
5084
5080
|
|
5085
5081
|
# Creates a new table from an existing backup. Any number of users can
|
5086
|
-
# execute up to
|
5082
|
+
# execute up to 50 concurrent restores (any type of restore) in a given
|
5087
5083
|
# account.
|
5088
5084
|
#
|
5089
5085
|
# You can call `RestoreTableFromBackup` at a maximum rate of 10 times
|
@@ -5743,8 +5739,7 @@ module Aws::DynamoDB
|
|
5743
5739
|
#
|
5744
5740
|
# @option params [Hash<String,String>] :expression_attribute_names
|
5745
5741
|
# One or more substitution tokens for attribute names in an expression.
|
5746
|
-
# The following are some use cases for using
|
5747
|
-
# `ExpressionAttributeNames`\:
|
5742
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
5748
5743
|
#
|
5749
5744
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
5750
5745
|
# word.
|
@@ -5766,7 +5761,7 @@ module Aws::DynamoDB
|
|
5766
5761
|
# cannot be used directly in an expression. (For the complete list of
|
5767
5762
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
5768
5763
|
# Developer Guide*). To work around this, you could specify the
|
5769
|
-
# following for `ExpressionAttributeNames
|
5764
|
+
# following for `ExpressionAttributeNames`:
|
5770
5765
|
#
|
5771
5766
|
# * `\{"#P":"Percentile"\}`
|
5772
5767
|
#
|
@@ -6958,8 +6953,7 @@ module Aws::DynamoDB
|
|
6958
6953
|
#
|
6959
6954
|
# @option params [Hash<String,String>] :expression_attribute_names
|
6960
6955
|
# One or more substitution tokens for attribute names in an expression.
|
6961
|
-
# The following are some use cases for using
|
6962
|
-
# `ExpressionAttributeNames`\:
|
6956
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
6963
6957
|
#
|
6964
6958
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
6965
6959
|
# word.
|
@@ -6981,7 +6975,7 @@ module Aws::DynamoDB
|
|
6981
6975
|
# cannot be used directly in an expression. (For the complete list of
|
6982
6976
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
6983
6977
|
# Developer Guide*.) To work around this, you could specify the
|
6984
|
-
# following for `ExpressionAttributeNames
|
6978
|
+
# following for `ExpressionAttributeNames`:
|
6985
6979
|
#
|
6986
6980
|
# * `\{"#P":"Percentile"\}`
|
6987
6981
|
#
|
@@ -7754,7 +7748,7 @@ module Aws::DynamoDB
|
|
7754
7748
|
params: params,
|
7755
7749
|
config: config)
|
7756
7750
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7757
|
-
context[:gem_version] = '1.
|
7751
|
+
context[:gem_version] = '1.84.0'
|
7758
7752
|
Seahorse::Client::Request.new(handlers, context)
|
7759
7753
|
end
|
7760
7754
|
|
@@ -69,7 +69,7 @@ module Aws::DynamoDB
|
|
69
69
|
#
|
70
70
|
# * `ExpressionAttributeNames` - One or more substitution tokens for
|
71
71
|
# attribute names in the `ProjectionExpression` parameter. The
|
72
|
-
# following are some use cases for using `ExpressionAttributeNames
|
72
|
+
# following are some use cases for using `ExpressionAttributeNames`:
|
73
73
|
#
|
74
74
|
# * To access an attribute whose name conflicts with a DynamoDB
|
75
75
|
# reserved word.
|
@@ -91,7 +91,7 @@ module Aws::DynamoDB
|
|
91
91
|
# cannot be used directly in an expression. (For the complete list of
|
92
92
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
93
93
|
# Developer Guide*). To work around this, you could specify the
|
94
|
-
# following for `ExpressionAttributeNames
|
94
|
+
# following for `ExpressionAttributeNames`:
|
95
95
|
#
|
96
96
|
# * `\{"#P":"Percentile"\}`
|
97
97
|
#
|
@@ -630,8 +630,7 @@ module Aws::DynamoDB
|
|
630
630
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
631
631
|
# @option options [Hash<String,String>] :expression_attribute_names
|
632
632
|
# One or more substitution tokens for attribute names in an expression.
|
633
|
-
# The following are some use cases for using
|
634
|
-
# `ExpressionAttributeNames`\:
|
633
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
635
634
|
#
|
636
635
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
637
636
|
# word.
|
@@ -653,7 +652,7 @@ module Aws::DynamoDB
|
|
653
652
|
# cannot be used directly in an expression. (For the complete list of
|
654
653
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
655
654
|
# Developer Guide*). To work around this, you could specify the
|
656
|
-
# following for `ExpressionAttributeNames
|
655
|
+
# following for `ExpressionAttributeNames`:
|
657
656
|
#
|
658
657
|
# * `\{"#P":"Percentile"\}`
|
659
658
|
#
|
@@ -779,8 +778,7 @@ module Aws::DynamoDB
|
|
779
778
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
780
779
|
# @option options [Hash<String,String>] :expression_attribute_names
|
781
780
|
# One or more substitution tokens for attribute names in an expression.
|
782
|
-
# The following are some use cases for using
|
783
|
-
# `ExpressionAttributeNames`\:
|
781
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
784
782
|
#
|
785
783
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
786
784
|
# word.
|
@@ -802,7 +800,7 @@ module Aws::DynamoDB
|
|
802
800
|
# cannot be used directly in an expression. (For the complete list of
|
803
801
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
804
802
|
# Developer Guide*). To work around this, you could specify the
|
805
|
-
# following for `ExpressionAttributeNames
|
803
|
+
# following for `ExpressionAttributeNames`:
|
806
804
|
#
|
807
805
|
# * `\{"#P":"Percentile"\}`
|
808
806
|
#
|
@@ -970,8 +968,7 @@ module Aws::DynamoDB
|
|
970
968
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
971
969
|
# @option options [Hash<String,String>] :expression_attribute_names
|
972
970
|
# One or more substitution tokens for attribute names in an expression.
|
973
|
-
# The following are some use cases for using
|
974
|
-
# `ExpressionAttributeNames`\:
|
971
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
975
972
|
#
|
976
973
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
977
974
|
# word.
|
@@ -993,7 +990,7 @@ module Aws::DynamoDB
|
|
993
990
|
# cannot be used directly in an expression. (For the complete list of
|
994
991
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
995
992
|
# Developer Guide*). To work around this, you could specify the
|
996
|
-
# following for `ExpressionAttributeNames
|
993
|
+
# following for `ExpressionAttributeNames`:
|
997
994
|
#
|
998
995
|
# * `\{"#P":"Percentile"\}`
|
999
996
|
#
|
@@ -1359,8 +1356,7 @@ module Aws::DynamoDB
|
|
1359
1356
|
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ExpressionPlaceholders.html
|
1360
1357
|
# @option options [Hash<String,String>] :expression_attribute_names
|
1361
1358
|
# One or more substitution tokens for attribute names in an expression.
|
1362
|
-
# The following are some use cases for using
|
1363
|
-
# `ExpressionAttributeNames`\:
|
1359
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
1364
1360
|
#
|
1365
1361
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
1366
1362
|
# word.
|
@@ -1382,7 +1378,7 @@ module Aws::DynamoDB
|
|
1382
1378
|
# cannot be used directly in an expression. (For the complete list of
|
1383
1379
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
1384
1380
|
# Developer Guide*). To work around this, you could specify the
|
1385
|
-
# following for `ExpressionAttributeNames
|
1381
|
+
# following for `ExpressionAttributeNames`:
|
1386
1382
|
#
|
1387
1383
|
# * `\{"#P":"Percentile"\}`
|
1388
1384
|
#
|
@@ -1658,8 +1654,7 @@ module Aws::DynamoDB
|
|
1658
1654
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Query.FilterExpression
|
1659
1655
|
# @option options [Hash<String,String>] :expression_attribute_names
|
1660
1656
|
# One or more substitution tokens for attribute names in an expression.
|
1661
|
-
# The following are some use cases for using
|
1662
|
-
# `ExpressionAttributeNames`\:
|
1657
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
1663
1658
|
#
|
1664
1659
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
1665
1660
|
# word.
|
@@ -1681,7 +1676,7 @@ module Aws::DynamoDB
|
|
1681
1676
|
# cannot be used directly in an expression. (For the complete list of
|
1682
1677
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
1683
1678
|
# Developer Guide*). To work around this, you could specify the
|
1684
|
-
# following for `ExpressionAttributeNames
|
1679
|
+
# following for `ExpressionAttributeNames`:
|
1685
1680
|
#
|
1686
1681
|
# * `\{"#P":"Percentile"\}`
|
1687
1682
|
#
|
@@ -2162,8 +2157,7 @@ module Aws::DynamoDB
|
|
2162
2157
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
2163
2158
|
# @option options [Hash<String,String>] :expression_attribute_names
|
2164
2159
|
# One or more substitution tokens for attribute names in an expression.
|
2165
|
-
# The following are some use cases for using
|
2166
|
-
# `ExpressionAttributeNames`\:
|
2160
|
+
# The following are some use cases for using `ExpressionAttributeNames`:
|
2167
2161
|
#
|
2168
2162
|
# * To access an attribute whose name conflicts with a DynamoDB reserved
|
2169
2163
|
# word.
|
@@ -2185,7 +2179,7 @@ module Aws::DynamoDB
|
|
2185
2179
|
# cannot be used directly in an expression. (For the complete list of
|
2186
2180
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
2187
2181
|
# Developer Guide*.) To work around this, you could specify the
|
2188
|
-
# following for `ExpressionAttributeNames
|
2182
|
+
# following for `ExpressionAttributeNames`:
|
2189
2183
|
#
|
2190
2184
|
# * `\{"#P":"Percentile"\}`
|
2191
2185
|
#
|
@@ -747,8 +747,7 @@ module Aws::DynamoDB
|
|
747
747
|
#
|
748
748
|
# * `ExpressionAttributeNames` - One or more substitution tokens for
|
749
749
|
# attribute names in the `ProjectionExpression` parameter. The
|
750
|
-
# following are some use cases for using
|
751
|
-
# `ExpressionAttributeNames`\:
|
750
|
+
# following are some use cases for using `ExpressionAttributeNames`:
|
752
751
|
#
|
753
752
|
# * To access an attribute whose name conflicts with a DynamoDB
|
754
753
|
# reserved word.
|
@@ -771,7 +770,7 @@ module Aws::DynamoDB
|
|
771
770
|
# cannot be used directly in an expression. (For the complete list
|
772
771
|
# of reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
773
772
|
# Developer Guide*). To work around this, you could specify the
|
774
|
-
# following for `ExpressionAttributeNames
|
773
|
+
# following for `ExpressionAttributeNames`:
|
775
774
|
#
|
776
775
|
# * `\{"#P":"Percentile"\}`
|
777
776
|
#
|
@@ -1276,7 +1275,7 @@ module Aws::DynamoDB
|
|
1276
1275
|
#
|
1277
1276
|
# The following are descriptions of each comparison operator.
|
1278
1277
|
#
|
1279
|
-
# * `EQ
|
1278
|
+
# * `EQ` : Equal. `EQ` is supported for all data types, including
|
1280
1279
|
# lists and maps.
|
1281
1280
|
#
|
1282
1281
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
@@ -1289,7 +1288,7 @@ module Aws::DynamoDB
|
|
1289
1288
|
#
|
1290
1289
|
#
|
1291
1290
|
#
|
1292
|
-
# * `NE
|
1291
|
+
# * `NE` : Not equal. `NE` is supported for all data types, including
|
1293
1292
|
# lists and maps.
|
1294
1293
|
#
|
1295
1294
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
@@ -1301,7 +1300,7 @@ module Aws::DynamoDB
|
|
1301
1300
|
#
|
1302
1301
|
#
|
1303
1302
|
#
|
1304
|
-
# * `LE
|
1303
|
+
# * `LE` : Less than or equal.
|
1305
1304
|
#
|
1306
1305
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
1307
1306
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -1312,7 +1311,7 @@ module Aws::DynamoDB
|
|
1312
1311
|
#
|
1313
1312
|
#
|
1314
1313
|
#
|
1315
|
-
# * `LT
|
1314
|
+
# * `LT` : Less than.
|
1316
1315
|
#
|
1317
1316
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
1318
1317
|
# String, Number, or Binary (not a set type). If an item contains an
|
@@ -1323,7 +1322,7 @@ module Aws::DynamoDB
|
|
1323
1322
|
#
|
1324
1323
|
#
|
1325
1324
|
#
|
1326
|
-
# * `GE
|
1325
|
+
# * `GE` : Greater than or equal.
|
1327
1326
|
#
|
1328
1327
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
1329
1328
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -1334,7 +1333,7 @@ module Aws::DynamoDB
|
|
1334
1333
|
#
|
1335
1334
|
#
|
1336
1335
|
#
|
1337
|
-
# * `GT
|
1336
|
+
# * `GT` : Greater than.
|
1338
1337
|
#
|
1339
1338
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
1340
1339
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -1345,7 +1344,7 @@ module Aws::DynamoDB
|
|
1345
1344
|
#
|
1346
1345
|
#
|
1347
1346
|
#
|
1348
|
-
# * `NOT_NULL
|
1347
|
+
# * `NOT_NULL` : The attribute exists. `NOT_NULL` is supported for all
|
1349
1348
|
# data types, including lists and maps.
|
1350
1349
|
#
|
1351
1350
|
# <note markdown="1"> This operator tests for the existence of an attribute, not its
|
@@ -1356,7 +1355,7 @@ module Aws::DynamoDB
|
|
1356
1355
|
#
|
1357
1356
|
# </note>
|
1358
1357
|
#
|
1359
|
-
# * `NULL
|
1358
|
+
# * `NULL` : The attribute does not exist. `NULL` is supported for all
|
1360
1359
|
# data types, including lists and maps.
|
1361
1360
|
#
|
1362
1361
|
# <note markdown="1"> This operator tests for the nonexistence of an attribute, not its
|
@@ -1367,7 +1366,7 @@ module Aws::DynamoDB
|
|
1367
1366
|
#
|
1368
1367
|
# </note>
|
1369
1368
|
#
|
1370
|
-
# * `CONTAINS
|
1369
|
+
# * `CONTAINS` : Checks for a subsequence, or value in a set.
|
1371
1370
|
#
|
1372
1371
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
1373
1372
|
# of type String, Number, or Binary (not a set type). If the target
|
@@ -1383,7 +1382,7 @@ module Aws::DynamoDB
|
|
1383
1382
|
# b`", "`a`" can be a list; however, "`b`" cannot be a set, a
|
1384
1383
|
# map, or a list.
|
1385
1384
|
#
|
1386
|
-
# * `NOT_CONTAINS
|
1385
|
+
# * `NOT_CONTAINS` : Checks for absence of a subsequence, or absence
|
1387
1386
|
# of a value in a set.
|
1388
1387
|
#
|
1389
1388
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
@@ -1400,7 +1399,7 @@ module Aws::DynamoDB
|
|
1400
1399
|
# CONTAINS b`", "`a`" can be a list; however, "`b`" cannot be a
|
1401
1400
|
# set, a map, or a list.
|
1402
1401
|
#
|
1403
|
-
# * `BEGINS_WITH
|
1402
|
+
# * `BEGINS_WITH` : Checks for a prefix.
|
1404
1403
|
#
|
1405
1404
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
1406
1405
|
# String or Binary (not a Number or a set type). The target
|
@@ -1409,7 +1408,7 @@ module Aws::DynamoDB
|
|
1409
1408
|
#
|
1410
1409
|
#
|
1411
1410
|
#
|
1412
|
-
# * `IN
|
1411
|
+
# * `IN` : Checks for matching elements in a list.
|
1413
1412
|
#
|
1414
1413
|
# `AttributeValueList` can contain one or more `AttributeValue`
|
1415
1414
|
# elements of type String, Number, or Binary. These attributes are
|
@@ -1417,7 +1416,7 @@ module Aws::DynamoDB
|
|
1417
1416
|
# of the input are equal to the item attribute, the expression
|
1418
1417
|
# evaluates to true.
|
1419
1418
|
#
|
1420
|
-
# * `BETWEEN
|
1419
|
+
# * `BETWEEN` : Greater than or equal to the first value, and less
|
1421
1420
|
# than or equal to the second value.
|
1422
1421
|
#
|
1423
1422
|
# `AttributeValueList` must contain two `AttributeValue` elements of
|
@@ -2271,7 +2270,7 @@ module Aws::DynamoDB
|
|
2271
2270
|
# @!attribute [rw] expression_attribute_names
|
2272
2271
|
# One or more substitution tokens for attribute names in an
|
2273
2272
|
# expression. The following are some use cases for using
|
2274
|
-
# `ExpressionAttributeNames
|
2273
|
+
# `ExpressionAttributeNames`:
|
2275
2274
|
#
|
2276
2275
|
# * To access an attribute whose name conflicts with a DynamoDB
|
2277
2276
|
# reserved word.
|
@@ -2293,7 +2292,7 @@ module Aws::DynamoDB
|
|
2293
2292
|
# cannot be used directly in an expression. (For the complete list of
|
2294
2293
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
2295
2294
|
# Developer Guide*). To work around this, you could specify the
|
2296
|
-
# following for `ExpressionAttributeNames
|
2295
|
+
# following for `ExpressionAttributeNames`:
|
2297
2296
|
#
|
2298
2297
|
# * `\{"#P":"Percentile"\}`
|
2299
2298
|
#
|
@@ -3163,7 +3162,7 @@ module Aws::DynamoDB
|
|
3163
3162
|
#
|
3164
3163
|
# The following are descriptions of each comparison operator.
|
3165
3164
|
#
|
3166
|
-
# * `EQ
|
3165
|
+
# * `EQ` : Equal. `EQ` is supported for all data types, including
|
3167
3166
|
# lists and maps.
|
3168
3167
|
#
|
3169
3168
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
@@ -3176,7 +3175,7 @@ module Aws::DynamoDB
|
|
3176
3175
|
#
|
3177
3176
|
#
|
3178
3177
|
#
|
3179
|
-
# * `NE
|
3178
|
+
# * `NE` : Not equal. `NE` is supported for all data types, including
|
3180
3179
|
# lists and maps.
|
3181
3180
|
#
|
3182
3181
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
@@ -3188,7 +3187,7 @@ module Aws::DynamoDB
|
|
3188
3187
|
#
|
3189
3188
|
#
|
3190
3189
|
#
|
3191
|
-
# * `LE
|
3190
|
+
# * `LE` : Less than or equal.
|
3192
3191
|
#
|
3193
3192
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
3194
3193
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -3199,7 +3198,7 @@ module Aws::DynamoDB
|
|
3199
3198
|
#
|
3200
3199
|
#
|
3201
3200
|
#
|
3202
|
-
# * `LT
|
3201
|
+
# * `LT` : Less than.
|
3203
3202
|
#
|
3204
3203
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
3205
3204
|
# String, Number, or Binary (not a set type). If an item contains an
|
@@ -3210,7 +3209,7 @@ module Aws::DynamoDB
|
|
3210
3209
|
#
|
3211
3210
|
#
|
3212
3211
|
#
|
3213
|
-
# * `GE
|
3212
|
+
# * `GE` : Greater than or equal.
|
3214
3213
|
#
|
3215
3214
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
3216
3215
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -3221,7 +3220,7 @@ module Aws::DynamoDB
|
|
3221
3220
|
#
|
3222
3221
|
#
|
3223
3222
|
#
|
3224
|
-
# * `GT
|
3223
|
+
# * `GT` : Greater than.
|
3225
3224
|
#
|
3226
3225
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
3227
3226
|
# of type String, Number, or Binary (not a set type). If an item
|
@@ -3232,7 +3231,7 @@ module Aws::DynamoDB
|
|
3232
3231
|
#
|
3233
3232
|
#
|
3234
3233
|
#
|
3235
|
-
# * `NOT_NULL
|
3234
|
+
# * `NOT_NULL` : The attribute exists. `NOT_NULL` is supported for all
|
3236
3235
|
# data types, including lists and maps.
|
3237
3236
|
#
|
3238
3237
|
# <note markdown="1"> This operator tests for the existence of an attribute, not its
|
@@ -3243,7 +3242,7 @@ module Aws::DynamoDB
|
|
3243
3242
|
#
|
3244
3243
|
# </note>
|
3245
3244
|
#
|
3246
|
-
# * `NULL
|
3245
|
+
# * `NULL` : The attribute does not exist. `NULL` is supported for all
|
3247
3246
|
# data types, including lists and maps.
|
3248
3247
|
#
|
3249
3248
|
# <note markdown="1"> This operator tests for the nonexistence of an attribute, not its
|
@@ -3254,7 +3253,7 @@ module Aws::DynamoDB
|
|
3254
3253
|
#
|
3255
3254
|
# </note>
|
3256
3255
|
#
|
3257
|
-
# * `CONTAINS
|
3256
|
+
# * `CONTAINS` : Checks for a subsequence, or value in a set.
|
3258
3257
|
#
|
3259
3258
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
3260
3259
|
# of type String, Number, or Binary (not a set type). If the target
|
@@ -3270,7 +3269,7 @@ module Aws::DynamoDB
|
|
3270
3269
|
# b`", "`a`" can be a list; however, "`b`" cannot be a set, a
|
3271
3270
|
# map, or a list.
|
3272
3271
|
#
|
3273
|
-
# * `NOT_CONTAINS
|
3272
|
+
# * `NOT_CONTAINS` : Checks for absence of a subsequence, or absence
|
3274
3273
|
# of a value in a set.
|
3275
3274
|
#
|
3276
3275
|
# `AttributeValueList` can contain only one `AttributeValue` element
|
@@ -3287,7 +3286,7 @@ module Aws::DynamoDB
|
|
3287
3286
|
# CONTAINS b`", "`a`" can be a list; however, "`b`" cannot be a
|
3288
3287
|
# set, a map, or a list.
|
3289
3288
|
#
|
3290
|
-
# * `BEGINS_WITH
|
3289
|
+
# * `BEGINS_WITH` : Checks for a prefix.
|
3291
3290
|
#
|
3292
3291
|
# `AttributeValueList` can contain only one `AttributeValue` of type
|
3293
3292
|
# String or Binary (not a Number or a set type). The target
|
@@ -3296,7 +3295,7 @@ module Aws::DynamoDB
|
|
3296
3295
|
#
|
3297
3296
|
#
|
3298
3297
|
#
|
3299
|
-
# * `IN
|
3298
|
+
# * `IN` : Checks for matching elements in a list.
|
3300
3299
|
#
|
3301
3300
|
# `AttributeValueList` can contain one or more `AttributeValue`
|
3302
3301
|
# elements of type String, Number, or Binary. These attributes are
|
@@ -3304,7 +3303,7 @@ module Aws::DynamoDB
|
|
3304
3303
|
# of the input are equal to the item attribute, the expression
|
3305
3304
|
# evaluates to true.
|
3306
3305
|
#
|
3307
|
-
# * `BETWEEN
|
3306
|
+
# * `BETWEEN` : Greater than or equal to the first value, and less
|
3308
3307
|
# than or equal to the second value.
|
3309
3308
|
#
|
3310
3309
|
# `AttributeValueList` must contain two `AttributeValue` elements of
|
@@ -3736,7 +3735,7 @@ module Aws::DynamoDB
|
|
3736
3735
|
# @!attribute [rw] expression_attribute_names
|
3737
3736
|
# One or more substitution tokens for attribute names in an
|
3738
3737
|
# expression. The following are some use cases for using
|
3739
|
-
# `ExpressionAttributeNames
|
3738
|
+
# `ExpressionAttributeNames`:
|
3740
3739
|
#
|
3741
3740
|
# * To access an attribute whose name conflicts with a DynamoDB
|
3742
3741
|
# reserved word.
|
@@ -3758,7 +3757,7 @@ module Aws::DynamoDB
|
|
3758
3757
|
# cannot be used directly in an expression. (For the complete list of
|
3759
3758
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
3760
3759
|
# Developer Guide*). To work around this, you could specify the
|
3761
|
-
# following for `ExpressionAttributeNames
|
3760
|
+
# following for `ExpressionAttributeNames`:
|
3762
3761
|
#
|
3763
3762
|
# * `\{"#P":"Percentile"\}`
|
3764
3763
|
#
|
@@ -4746,7 +4745,7 @@ module Aws::DynamoDB
|
|
4746
4745
|
# @!attribute [rw] expression_attribute_names
|
4747
4746
|
# One or more substitution tokens for attribute names in an
|
4748
4747
|
# expression. The following are some use cases for using
|
4749
|
-
# `ExpressionAttributeNames
|
4748
|
+
# `ExpressionAttributeNames`:
|
4750
4749
|
#
|
4751
4750
|
# * To access an attribute whose name conflicts with a DynamoDB
|
4752
4751
|
# reserved word.
|
@@ -4768,7 +4767,7 @@ module Aws::DynamoDB
|
|
4768
4767
|
# cannot be used directly in an expression. (For the complete list of
|
4769
4768
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
4770
4769
|
# Developer Guide*). To work around this, you could specify the
|
4771
|
-
# following for `ExpressionAttributeNames
|
4770
|
+
# following for `ExpressionAttributeNames`:
|
4772
4771
|
#
|
4773
4772
|
# * `\{"#P":"Percentile"\}`
|
4774
4773
|
#
|
@@ -5832,7 +5831,7 @@ module Aws::DynamoDB
|
|
5832
5831
|
# @!attribute [rw] expression_attribute_names
|
5833
5832
|
# One or more substitution tokens for attribute names in an
|
5834
5833
|
# expression. The following are some use cases for using
|
5835
|
-
# `ExpressionAttributeNames
|
5834
|
+
# `ExpressionAttributeNames`:
|
5836
5835
|
#
|
5837
5836
|
# * To access an attribute whose name conflicts with a DynamoDB
|
5838
5837
|
# reserved word.
|
@@ -5854,7 +5853,7 @@ module Aws::DynamoDB
|
|
5854
5853
|
# cannot be used directly in an expression. (For the complete list of
|
5855
5854
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
5856
5855
|
# Developer Guide*). To work around this, you could specify the
|
5857
|
-
# following for `ExpressionAttributeNames
|
5856
|
+
# following for `ExpressionAttributeNames`:
|
5858
5857
|
#
|
5859
5858
|
# * `\{"#P":"Percentile"\}`
|
5860
5859
|
#
|
@@ -6316,7 +6315,7 @@ module Aws::DynamoDB
|
|
6316
6315
|
# @!attribute [rw] expression_attribute_names
|
6317
6316
|
# One or more substitution tokens for attribute names in an
|
6318
6317
|
# expression. The following are some use cases for using
|
6319
|
-
# `ExpressionAttributeNames
|
6318
|
+
# `ExpressionAttributeNames`:
|
6320
6319
|
#
|
6321
6320
|
# * To access an attribute whose name conflicts with a DynamoDB
|
6322
6321
|
# reserved word.
|
@@ -6338,7 +6337,7 @@ module Aws::DynamoDB
|
|
6338
6337
|
# cannot be used directly in an expression. (For the complete list of
|
6339
6338
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
6340
6339
|
# Developer Guide*). To work around this, you could specify the
|
6341
|
-
# following for `ExpressionAttributeNames
|
6340
|
+
# following for `ExpressionAttributeNames`:
|
6342
6341
|
#
|
6343
6342
|
# * `\{"#P":"Percentile"\}`
|
6344
6343
|
#
|
@@ -7611,7 +7610,7 @@ module Aws::DynamoDB
|
|
7611
7610
|
# @!attribute [rw] expression_attribute_names
|
7612
7611
|
# One or more substitution tokens for attribute names in an
|
7613
7612
|
# expression. The following are some use cases for using
|
7614
|
-
# `ExpressionAttributeNames
|
7613
|
+
# `ExpressionAttributeNames`:
|
7615
7614
|
#
|
7616
7615
|
# * To access an attribute whose name conflicts with a DynamoDB
|
7617
7616
|
# reserved word.
|
@@ -7633,7 +7632,7 @@ module Aws::DynamoDB
|
|
7633
7632
|
# cannot be used directly in an expression. (For the complete list of
|
7634
7633
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
7635
7634
|
# Developer Guide*). To work around this, you could specify the
|
7636
|
-
# following for `ExpressionAttributeNames
|
7635
|
+
# following for `ExpressionAttributeNames`:
|
7637
7636
|
#
|
7638
7637
|
# * `\{"#P":"Percentile"\}`
|
7639
7638
|
#
|
@@ -9419,7 +9418,7 @@ module Aws::DynamoDB
|
|
9419
9418
|
#
|
9420
9419
|
# You can have many actions in a single expression, such as the
|
9421
9420
|
# following: `SET a=:value1, b=:value2 DELETE :value3, :value4,
|
9422
|
-
#
|
9421
|
+
# \:value5`
|
9423
9422
|
#
|
9424
9423
|
# For more information on update expressions, see [Modifying Items and
|
9425
9424
|
# Attributes][1] in the *Amazon DynamoDB Developer Guide*.
|
@@ -9455,7 +9454,7 @@ module Aws::DynamoDB
|
|
9455
9454
|
# @!attribute [rw] expression_attribute_names
|
9456
9455
|
# One or more substitution tokens for attribute names in an
|
9457
9456
|
# expression. The following are some use cases for using
|
9458
|
-
# `ExpressionAttributeNames
|
9457
|
+
# `ExpressionAttributeNames`:
|
9459
9458
|
#
|
9460
9459
|
# * To access an attribute whose name conflicts with a DynamoDB
|
9461
9460
|
# reserved word.
|
@@ -9477,7 +9476,7 @@ module Aws::DynamoDB
|
|
9477
9476
|
# cannot be used directly in an expression. (For the complete list of
|
9478
9477
|
# reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
|
9479
9478
|
# Developer Guide*.) To work around this, you could specify the
|
9480
|
-
# following for `ExpressionAttributeNames
|
9479
|
+
# following for `ExpressionAttributeNames`:
|
9481
9480
|
#
|
9482
9481
|
# * `\{"#P":"Percentile"\}`
|
9483
9482
|
#
|
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.84.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-
|
11
|
+
date: 2023-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|