aws-sdk-dynamodb 1.129.0 → 1.130.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: 2a63110f5a2633865fccdbceaffd6d3ef99d21ea857572ce41205711fab7ee15
4
- data.tar.gz: a755989aee7fb20a0cf1fd69044434bda084ec13e28620bcd09e01d7caf1eb59
3
+ metadata.gz: 14964407a2acb9e6592aacd97326988eb46f76c4837d896635ade93e48550bbc
4
+ data.tar.gz: 1ce3c66bb492a578e97703f13078fb614493d95abbdb10577372c04082714a11
5
5
  SHA512:
6
- metadata.gz: f16399fd5edb0c7e601c7fe4aa91108ab1bdf23528fde5e4d707bd2a4f30b48bcb0d8ef357cc8724dec359bcb58fe73ebcc9800ace936533d5aa828a3501349a
7
- data.tar.gz: d914ca634425756276efa15c0bc069e4e3038de4ef536a7e6af6db5526e3ce6805383a5b6ca84e1fb40d8fdf3204bbf04940b291debb811fa9da8f68a0fa20f1
6
+ metadata.gz: 0ce159cb6446c59a3bb204155c6f36b2b6c7f693d832b5f810f3fc0784578fe3b70596a92b0213500e46f69f1e0cde2bde6131534568d7a5051f86b4d230694f
7
+ data.tar.gz: 9f43f5d128cd3d994a0f9a2b2af2257999265d0706f715c79df10eb4a7dd5bdaf503111dc1729661874e53a3c4906410b155b072d9e37dcff7e954b3d27eddc9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.129.0 (2024-11-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.0
@@ -665,14 +665,12 @@ module Aws::DynamoDB
665
665
  #
666
666
  # * To prevent special characters in an attribute name from being
667
667
  # misinterpreted in an expression.
668
- #
669
668
  # Use the **#** character in an expression to dereference an attribute
670
669
  # name. For example, consider the following attribute name:
671
670
  #
672
671
  # * `Percentile`
673
672
  #
674
673
  # ^
675
- #
676
674
  # The name of this attribute conflicts with a reserved word, so it
677
675
  # cannot be used directly in an expression. (For the complete list of
678
676
  # reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
@@ -682,14 +680,12 @@ module Aws::DynamoDB
682
680
  # * `{"#P":"Percentile"}`
683
681
  #
684
682
  # ^
685
- #
686
683
  # You could then use this substitution in an expression, as in this
687
684
  # example:
688
685
  #
689
686
  # * `#P = :val`
690
687
  #
691
688
  # ^
692
- #
693
689
  # <note markdown="1"> Tokens that begin with the **\:** character are *expression
694
690
  # attribute values*, which are placeholders for the actual value at
695
691
  # runtime.
@@ -979,7 +975,6 @@ module Aws::DynamoDB
979
975
  # *both* the partition key and the sort key.
980
976
  #
981
977
  # ^
982
- #
983
978
  # * `PutRequest` - Perform a `PutItem` operation on the specified item.
984
979
  # The item to be put is identified by an `Item` subelement:
985
980
  #
@@ -1421,7 +1416,6 @@ module Aws::DynamoDB
1421
1416
  #
1422
1417
  # * `ALL` - All of the table attributes are projected into the
1423
1418
  # index.
1424
- #
1425
1419
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
1426
1420
  # that are projected into the secondary index. The total count of
1427
1421
  # attributes provided in `NonKeyAttributes`, summed across all of
@@ -1458,14 +1452,12 @@ module Aws::DynamoDB
1458
1452
  #
1459
1453
  # * `ALL` - All of the table attributes are projected into the
1460
1454
  # index.
1461
- #
1462
1455
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
1463
1456
  # that are projected into the secondary index. The total count of
1464
1457
  # attributes provided in `NonKeyAttributes`, summed across all of
1465
1458
  # the secondary indexes, must not exceed 100. If you project the
1466
1459
  # same attribute into two different indexes, this counts as two
1467
1460
  # distinct attributes when determining the total.
1468
- #
1469
1461
  # * `ProvisionedThroughput` - The provisioned throughput settings for
1470
1462
  # the global secondary index, consisting of read and write capacity
1471
1463
  # units.
@@ -3031,7 +3023,6 @@ module Aws::DynamoDB
3031
3023
  # * If the table has one or more global secondary indexes (GSIs),
3032
3024
  # loop over these GSIs and add their provisioned capacity values
3033
3025
  # to your variables as well.
3034
- #
3035
3026
  # 5. Report the account quotas for that Region returned by
3036
3027
  # `DescribeLimits`, along with the total current provisioned
3037
3028
  # capacity levels you have calculated.
@@ -7572,7 +7563,6 @@ module Aws::DynamoDB
7572
7563
  # * `list_append (operand, operand)` - evaluates to a list with a new
7573
7564
  # element added to it. You can append the new element to the start
7574
7565
  # or the end of the list by reversing the order of the operands.
7575
- #
7576
7566
  # These function names are case-sensitive.
7577
7567
  #
7578
7568
  # * `REMOVE` - Removes one or more attributes from an item.
@@ -7612,7 +7602,6 @@ module Aws::DynamoDB
7612
7602
  # Both sets must have the same primitive data type. For example, if
7613
7603
  # the existing data type is a set of strings, the `Value` must also
7614
7604
  # be a set of strings.
7615
- #
7616
7605
  # The `ADD` action only supports Number and set data types. In
7617
7606
  # addition, `ADD` can only be used on top-level attributes, not nested
7618
7607
  # attributes.
@@ -8570,7 +8559,7 @@ module Aws::DynamoDB
8570
8559
  tracer: tracer
8571
8560
  )
8572
8561
  context[:gem_name] = 'aws-sdk-dynamodb'
8573
- context[:gem_version] = '1.129.0'
8562
+ context[:gem_version] = '1.130.0'
8574
8563
  Seahorse::Client::Request.new(handlers, context)
8575
8564
  end
8576
8565
 
@@ -79,14 +79,12 @@ module Aws::DynamoDB
79
79
  #
80
80
  # * To prevent special characters in an attribute name from being
81
81
  # misinterpreted in an expression.
82
- #
83
82
  # Use the **#** character in an expression to dereference an attribute
84
83
  # name. For example, consider the following attribute name:
85
84
  #
86
85
  # * `Percentile`
87
86
  #
88
87
  # ^
89
- #
90
88
  # The name of this attribute conflicts with a reserved word, so it
91
89
  # cannot be used directly in an expression. (For the complete list of
92
90
  # reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
@@ -96,14 +94,12 @@ module Aws::DynamoDB
96
94
  # * `{"#P":"Percentile"}`
97
95
  #
98
96
  # ^
99
- #
100
97
  # You could then use this substitution in an expression, as in this
101
98
  # example:
102
99
  #
103
100
  # * `#P = :val`
104
101
  #
105
102
  # ^
106
- #
107
103
  # <note markdown="1"> Tokens that begin with the **\:** character are *expression
108
104
  # attribute values*, which are placeholders for the actual value at
109
105
  # runtime.
@@ -206,7 +202,6 @@ module Aws::DynamoDB
206
202
  # *both* the partition key and the sort key.
207
203
  #
208
204
  # ^
209
- #
210
205
  # * `PutRequest` - Perform a `PutItem` operation on the specified item.
211
206
  # The item to be put is identified by an `Item` subelement:
212
207
  #
@@ -422,7 +417,6 @@ module Aws::DynamoDB
422
417
  #
423
418
  # * `ALL` - All of the table attributes are projected into the
424
419
  # index.
425
- #
426
420
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
427
421
  # that are projected into the secondary index. The total count of
428
422
  # attributes provided in `NonKeyAttributes`, summed across all of
@@ -458,14 +452,12 @@ module Aws::DynamoDB
458
452
  #
459
453
  # * `ALL` - All of the table attributes are projected into the
460
454
  # index.
461
- #
462
455
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
463
456
  # that are projected into the secondary index. The total count of
464
457
  # attributes provided in `NonKeyAttributes`, summed across all of
465
458
  # the secondary indexes, must not exceed 100. If you project the
466
459
  # same attribute into two different indexes, this counts as two
467
460
  # distinct attributes when determining the total.
468
- #
469
461
  # * `ProvisionedThroughput` - The provisioned throughput settings for
470
462
  # the global secondary index, consisting of read and write capacity
471
463
  # units.
@@ -58,7 +58,6 @@ module Aws::DynamoDB
58
58
  # * `HASH` - partition key
59
59
  #
60
60
  # * `RANGE` - sort key
61
- #
62
61
  # <note markdown="1"> The partition key of an item is also known as its *hash attribute*.
63
62
  # The term "hash attribute" derives from DynamoDB's usage of an
64
63
  # internal hash function to evenly distribute data items across
@@ -191,14 +190,12 @@ module Aws::DynamoDB
191
190
  #
192
191
  # * `ALL` - All of the table attributes are projected into the
193
192
  # index.
194
- #
195
193
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
196
194
  # that are projected into the secondary index. The total count of
197
195
  # attributes provided in `NonKeyAttributes`, summed across all of
198
196
  # the secondary indexes, must not exceed 100. If you project the
199
197
  # same attribute into two different indexes, this counts as two
200
198
  # distinct attributes when determining the total.
201
- #
202
199
  # * `IndexSizeBytes` - Represents the total size of the index, in bytes.
203
200
  # DynamoDB updates this value approximately every six hours. Recent
204
201
  # changes might not be reflected in this value.
@@ -246,7 +243,6 @@ module Aws::DynamoDB
246
243
  # * `DELETING` - The index is being deleted.
247
244
  #
248
245
  # * `ACTIVE` - The index is ready for use.
249
- #
250
246
  # * `ItemCount` - The number of items in the global secondary index.
251
247
  # DynamoDB updates this value approximately every six hours. Recent
252
248
  # changes might not be reflected in this value.
@@ -272,14 +268,12 @@ module Aws::DynamoDB
272
268
  #
273
269
  # * `ALL` - All of the table attributes are projected into the
274
270
  # index.
275
- #
276
271
  # * `NonKeyAttributes` - A list of one or more non-key attribute names
277
272
  # that are projected into the secondary index. The total count of
278
273
  # attributes provided in `NonKeyAttributes`, summed across all of
279
274
  # the secondary indexes, must not exceed 100. If you project the
280
275
  # same attribute into two different indexes, this counts as two
281
276
  # distinct attributes when determining the total.
282
- #
283
277
  # * `ProvisionedThroughput` - The provisioned throughput settings for
284
278
  # the global secondary index, consisting of read and write capacity
285
279
  # units, along with data about increases and decreases.
@@ -2157,7 +2151,6 @@ module Aws::DynamoDB
2157
2151
  # * `list_append (operand, operand)` - evaluates to a list with a new
2158
2152
  # element added to it. You can append the new element to the start
2159
2153
  # or the end of the list by reversing the order of the operands.
2160
- #
2161
2154
  # These function names are case-sensitive.
2162
2155
  #
2163
2156
  # * `REMOVE` - Removes one or more attributes from an item.
@@ -2197,7 +2190,6 @@ module Aws::DynamoDB
2197
2190
  # Both sets must have the same primitive data type. For example, if
2198
2191
  # the existing data type is a set of strings, the `Value` must also
2199
2192
  # be a set of strings.
2200
- #
2201
2193
  # The `ADD` action only supports Number and set data types. In
2202
2194
  # addition, `ADD` can only be used on top-level attributes, not nested
2203
2195
  # attributes.
@@ -258,7 +258,6 @@ module Aws::DynamoDB
258
258
  # if the existing data type is a set of strings, the `Value` must
259
259
  # also be a set of strings. The same holds true for number sets
260
260
  # and binary sets.
261
- #
262
261
  # This action is only valid for an existing attribute whose data
263
262
  # type is number or is a set. Do not use `ADD` for any other data
264
263
  # types.
@@ -760,7 +759,6 @@ module Aws::DynamoDB
760
759
  #
761
760
  # * To prevent special characters in an attribute name from being
762
761
  # misinterpreted in an expression.
763
- #
764
762
  # Use the **#** character in an expression to dereference an
765
763
  # attribute name. For example, consider the following attribute
766
764
  # name:
@@ -768,7 +766,6 @@ module Aws::DynamoDB
768
766
  # * `Percentile`
769
767
  #
770
768
  # ^
771
- #
772
769
  # The name of this attribute conflicts with a reserved word, so it
773
770
  # cannot be used directly in an expression. (For the complete list
774
771
  # of reserved words, see [Reserved Words][1] in the *Amazon DynamoDB
@@ -778,14 +775,12 @@ module Aws::DynamoDB
778
775
  # * `{"#P":"Percentile"}`
779
776
  #
780
777
  # ^
781
- #
782
778
  # You could then use this substitution in an expression, as in this
783
779
  # example:
784
780
  #
785
781
  # * `#P = :val`
786
782
  #
787
783
  # ^
788
- #
789
784
  # <note markdown="1"> Tokens that begin with the **\:** character are *expression
790
785
  # attribute values*, which are placeholders for the actual value at
791
786
  # runtime.
@@ -1013,7 +1008,6 @@ module Aws::DynamoDB
1013
1008
  # values for *both* the partition key and the sort key.
1014
1009
  #
1015
1010
  # ^
1016
- #
1017
1011
  # * `PutRequest` - Perform a `PutItem` operation on the specified
1018
1012
  # item. The item to be put is identified by an `Item` subelement:
1019
1013
  #
@@ -1089,7 +1083,6 @@ module Aws::DynamoDB
1089
1083
  # attribute name and an attribute value.
1090
1084
  #
1091
1085
  # ^
1092
- #
1093
1086
  # * `PutRequest` - Perform a `PutItem` operation on the specified
1094
1087
  # item. The item to be put is identified by an `Item` subelement:
1095
1088
  #
@@ -1932,7 +1925,6 @@ module Aws::DynamoDB
1932
1925
  #
1933
1926
  # * `ALL` - All of the table attributes are projected into the
1934
1927
  # index.
1935
- #
1936
1928
  # * `NonKeyAttributes` - A list of one or more non-key attribute
1937
1929
  # names that are projected into the secondary index. The total
1938
1930
  # count of attributes provided in `NonKeyAttributes`, summed
@@ -1971,14 +1963,12 @@ module Aws::DynamoDB
1971
1963
  #
1972
1964
  # * `ALL` - All of the table attributes are projected into the
1973
1965
  # index.
1974
- #
1975
1966
  # * `NonKeyAttributes` - A list of one or more non-key attribute
1976
1967
  # names that are projected into the secondary index. The total
1977
1968
  # count of attributes provided in `NonKeyAttributes`, summed
1978
1969
  # across all of the secondary indexes, must not exceed 100. If you
1979
1970
  # project the same attribute into two different indexes, this
1980
1971
  # counts as two distinct attributes when determining the total.
1981
- #
1982
1972
  # * `ProvisionedThroughput` - The provisioned throughput settings for
1983
1973
  # the global secondary index, consisting of read and write capacity
1984
1974
  # units.
@@ -8712,7 +8702,6 @@ module Aws::DynamoDB
8712
8702
  # * `HASH` - partition key
8713
8703
  #
8714
8704
  # * `RANGE` - sort key
8715
- #
8716
8705
  # <note markdown="1"> The partition key of an item is also known as its *hash
8717
8706
  # attribute*. The term "hash attribute" derives from DynamoDB's
8718
8707
  # usage of an internal hash function to evenly distribute data items
@@ -8828,14 +8817,12 @@ module Aws::DynamoDB
8828
8817
  #
8829
8818
  # * `ALL` - All of the table attributes are projected into the
8830
8819
  # index.
8831
- #
8832
8820
  # * `NonKeyAttributes` - A list of one or more non-key attribute
8833
8821
  # names that are projected into the secondary index. The total
8834
8822
  # count of attributes provided in `NonKeyAttributes`, summed
8835
8823
  # across all of the secondary indexes, must not exceed 100. If you
8836
8824
  # project the same attribute into two different indexes, this
8837
8825
  # counts as two distinct attributes when determining the total.
8838
- #
8839
8826
  # * `IndexSizeBytes` - Represents the total size of the index, in
8840
8827
  # bytes. DynamoDB updates this value approximately every six hours.
8841
8828
  # Recent changes might not be reflected in this value.
@@ -8881,7 +8868,6 @@ module Aws::DynamoDB
8881
8868
  # * `DELETING` - The index is being deleted.
8882
8869
  #
8883
8870
  # * `ACTIVE` - The index is ready for use.
8884
- #
8885
8871
  # * `ItemCount` - The number of items in the global secondary index.
8886
8872
  # DynamoDB updates this value approximately every six hours. Recent
8887
8873
  # changes might not be reflected in this value.
@@ -8908,14 +8894,12 @@ module Aws::DynamoDB
8908
8894
  #
8909
8895
  # * `ALL` - All of the table attributes are projected into the
8910
8896
  # index.
8911
- #
8912
8897
  # * `NonKeyAttributes` - A list of one or more non-key attribute
8913
8898
  # names that are projected into the secondary index. The total
8914
8899
  # count of attributes provided in `NonKeyAttributes`, summed
8915
8900
  # across all of the secondary indexes, must not exceed 100. If you
8916
8901
  # project the same attribute into two different indexes, this
8917
8902
  # counts as two distinct attributes when determining the total.
8918
- #
8919
8903
  # * `ProvisionedThroughput` - The provisioned throughput settings for
8920
8904
  # the global secondary index, consisting of read and write capacity
8921
8905
  # units, along with data about increases and decreases.
@@ -9428,25 +9412,21 @@ module Aws::DynamoDB
9428
9412
  # * Code: `None`
9429
9413
  #
9430
9414
  # * Message: `null`
9431
- #
9432
9415
  # * Conditional Check Failed:
9433
9416
  #
9434
9417
  # * Code: `ConditionalCheckFailed`
9435
9418
  #
9436
9419
  # * Message: The conditional request failed.
9437
- #
9438
9420
  # * Item Collection Size Limit Exceeded:
9439
9421
  #
9440
9422
  # * Code: `ItemCollectionSizeLimitExceeded`
9441
9423
  #
9442
9424
  # * Message: Collection size exceeded.
9443
- #
9444
9425
  # * Transaction Conflict:
9445
9426
  #
9446
9427
  # * Code: `TransactionConflict`
9447
9428
  #
9448
9429
  # * Message: Transaction is ongoing for the item.
9449
- #
9450
9430
  # * Provisioned Throughput Exceeded:
9451
9431
  #
9452
9432
  # * Code: `ProvisionedThroughputExceeded`
@@ -9471,7 +9451,6 @@ module Aws::DynamoDB
9471
9451
  # is on a provisioned GSI.
9472
9452
  #
9473
9453
  # </note>
9474
- #
9475
9454
  # * Throttling Error:
9476
9455
  #
9477
9456
  # * Code: `ThrottlingError`
@@ -9497,7 +9476,6 @@ module Aws::DynamoDB
9497
9476
  # On-Demand GSI as DynamoDB is automatically scaling the GSI.
9498
9477
  #
9499
9478
  # </note>
9500
- #
9501
9479
  # * Validation Error:
9502
9480
  #
9503
9481
  # * Code: `ValidationError`
@@ -10040,7 +10018,6 @@ module Aws::DynamoDB
10040
10018
  # new element added to it. You can append the new element to the
10041
10019
  # start or the end of the list by reversing the order of the
10042
10020
  # operands.
10043
- #
10044
10021
  # These function names are case-sensitive.
10045
10022
  #
10046
10023
  # * `REMOVE` - Removes one or more attributes from an item.
@@ -10081,7 +10058,6 @@ module Aws::DynamoDB
10081
10058
  # Both sets must have the same primitive data type. For example,
10082
10059
  # if the existing data type is a set of strings, the `Value` must
10083
10060
  # also be a set of strings.
10084
- #
10085
10061
  # The `ADD` action only supports Number and set data types. In
10086
10062
  # addition, `ADD` can only be used on top-level attributes, not
10087
10063
  # nested attributes.
@@ -56,7 +56,7 @@ module Aws::DynamoDB
56
56
  autoload :Endpoints, 'aws-sdk-dynamodb/endpoints'
57
57
  autoload :Table, 'aws-sdk-dynamodb/table'
58
58
 
59
- GEM_VERSION = '1.129.0'
59
+ GEM_VERSION = '1.130.0'
60
60
 
61
61
  end
62
62
 
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.129.0
4
+ version: 1.130.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: 2024-11-13 00:00:00.000000000 Z
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core