aws-sdk-dynamodb 1.25.0 → 1.26.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/lib/aws-sdk-dynamodb.rb +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +123 -66
- data/lib/aws-sdk-dynamodb/client_api.rb +1 -0
- data/lib/aws-sdk-dynamodb/resource.rb +19 -6
- data/lib/aws-sdk-dynamodb/table.rb +48 -48
- data/lib/aws-sdk-dynamodb/types.rb +101 -85
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0840198ec3418a06260e64da7ac9a141105434d
|
4
|
+
data.tar.gz: 2963d94a05247894c8ebe152071035a013668afd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88c3d45df4f0c47fd88cb2db72d639c447e15c47921c741ba3c6ee510a5f5e41fe6afdd4f8cdcb2c62b105547d119998bfb88457685a4802edcd34db3445bad1
|
7
|
+
data.tar.gz: b0fe4f0ffb6d1bd7d6d8b0ebd837491bf804eadf968af05c156bcde6f1ac8e69239decc071b88f4f56ccb0d2b7118a59956e15d37002d96b4f27a0d96d601baf
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
@@ -236,6 +236,49 @@ module Aws::DynamoDB
|
|
236
236
|
# When `true`, request parameters are validated before
|
237
237
|
# sending the request.
|
238
238
|
#
|
239
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
240
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
241
|
+
#
|
242
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
243
|
+
# seconds to wait when opening a HTTP session before rasing a
|
244
|
+
# `Timeout::Error`.
|
245
|
+
#
|
246
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
247
|
+
# number of seconds to wait for response data. This value can
|
248
|
+
# safely be set
|
249
|
+
# per-request on the session yeidled by {#session_for}.
|
250
|
+
#
|
251
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
252
|
+
# seconds a connection is allowed to sit idble before it is
|
253
|
+
# considered stale. Stale connections are closed and removed
|
254
|
+
# from the pool before making a request.
|
255
|
+
#
|
256
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
257
|
+
# seconds to wait for a 100-continue response before sending the
|
258
|
+
# request body. This option has no effect unless the request has
|
259
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
260
|
+
# disables this behaviour. This value can safely be set per
|
261
|
+
# request on the session yeidled by {#session_for}.
|
262
|
+
#
|
263
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
264
|
+
# HTTP debug output will be sent to the `:logger`.
|
265
|
+
#
|
266
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
267
|
+
# SSL peer certificates are verified when establishing a
|
268
|
+
# connection.
|
269
|
+
#
|
270
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
271
|
+
# certificate authority bundle file that should be used when
|
272
|
+
# verifying peer certificates. If you do not pass
|
273
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
274
|
+
# will be used if available.
|
275
|
+
#
|
276
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
277
|
+
# directory that contains the unbundled SSL certificate
|
278
|
+
# authority files for verifying peer certificates. If you do
|
279
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
280
|
+
# system default will be used if available.
|
281
|
+
#
|
239
282
|
def initialize(*args)
|
240
283
|
super
|
241
284
|
end
|
@@ -302,8 +345,8 @@ module Aws::DynamoDB
|
|
302
345
|
#
|
303
346
|
#
|
304
347
|
#
|
305
|
-
# [1]:
|
306
|
-
# [2]:
|
348
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations
|
349
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#CapacityUnitCalculations
|
307
350
|
#
|
308
351
|
# @option params [required, Hash<String,Types::KeysAndAttributes>] :request_items
|
309
352
|
# A map of one or more table names and, for each table, a map that
|
@@ -387,9 +430,9 @@ module Aws::DynamoDB
|
|
387
430
|
#
|
388
431
|
#
|
389
432
|
#
|
390
|
-
# [1]:
|
391
|
-
# [2]:
|
392
|
-
# [3]:
|
433
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
434
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
435
|
+
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributesToGet.html
|
393
436
|
#
|
394
437
|
# @option params [String] :return_consumed_capacity
|
395
438
|
# Determines the level of detail about provisioned throughput
|
@@ -606,7 +649,7 @@ module Aws::DynamoDB
|
|
606
649
|
#
|
607
650
|
#
|
608
651
|
#
|
609
|
-
# [1]:
|
652
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations
|
610
653
|
#
|
611
654
|
# @option params [required, Hash<String,Array>] :request_items
|
612
655
|
# A map of one or more table names and, for each table, a list of
|
@@ -985,8 +1028,8 @@ module Aws::DynamoDB
|
|
985
1028
|
#
|
986
1029
|
#
|
987
1030
|
#
|
988
|
-
# [1]:
|
989
|
-
# [2]:
|
1031
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html
|
1032
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#WorkingWithTables.primary.key
|
990
1033
|
#
|
991
1034
|
# @option params [Array<Types::LocalSecondaryIndex>] :local_secondary_indexes
|
992
1035
|
# One or more local secondary indexes (the maximum is 5) to be created
|
@@ -1094,7 +1137,7 @@ module Aws::DynamoDB
|
|
1094
1137
|
#
|
1095
1138
|
#
|
1096
1139
|
#
|
1097
|
-
# [1]:
|
1140
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
|
1098
1141
|
#
|
1099
1142
|
# @option params [Types::StreamSpecification] :stream_specification
|
1100
1143
|
# The settings for DynamoDB Streams on the table. These settings consist
|
@@ -1122,6 +1165,14 @@ module Aws::DynamoDB
|
|
1122
1165
|
# @option params [Types::SSESpecification] :sse_specification
|
1123
1166
|
# Represents the settings used to enable server-side encryption.
|
1124
1167
|
#
|
1168
|
+
# @option params [Array<Types::Tag>] :tags
|
1169
|
+
# A list of key-value pairs to label the table. For more information,
|
1170
|
+
# see [Tagging for DynamoDB][1].
|
1171
|
+
#
|
1172
|
+
#
|
1173
|
+
#
|
1174
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
1175
|
+
#
|
1125
1176
|
# @return [Types::CreateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1126
1177
|
#
|
1127
1178
|
# * {Types::CreateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -1258,6 +1309,12 @@ module Aws::DynamoDB
|
|
1258
1309
|
# sse_type: "AES256", # accepts AES256, KMS
|
1259
1310
|
# kms_master_key_id: "KMSMasterKeyId",
|
1260
1311
|
# },
|
1312
|
+
# tags: [
|
1313
|
+
# {
|
1314
|
+
# key: "TagKeyString", # required
|
1315
|
+
# value: "TagValueString", # required
|
1316
|
+
# },
|
1317
|
+
# ],
|
1261
1318
|
# })
|
1262
1319
|
#
|
1263
1320
|
# @example Response structure
|
@@ -1440,7 +1497,7 @@ module Aws::DynamoDB
|
|
1440
1497
|
#
|
1441
1498
|
#
|
1442
1499
|
#
|
1443
|
-
# [1]:
|
1500
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.Expected.html
|
1444
1501
|
#
|
1445
1502
|
# @option params [String] :conditional_operator
|
1446
1503
|
# This is a legacy parameter. Use `ConditionExpression` instead. For
|
@@ -1449,7 +1506,7 @@ module Aws::DynamoDB
|
|
1449
1506
|
#
|
1450
1507
|
#
|
1451
1508
|
#
|
1452
|
-
# [1]:
|
1509
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
|
1453
1510
|
#
|
1454
1511
|
# @option params [String] :return_values
|
1455
1512
|
# Use `ReturnValues` if you want to get the item attributes as they
|
@@ -1511,7 +1568,7 @@ module Aws::DynamoDB
|
|
1511
1568
|
#
|
1512
1569
|
#
|
1513
1570
|
#
|
1514
|
-
# [1]:
|
1571
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
1515
1572
|
#
|
1516
1573
|
# @option params [Hash<String,String>] :expression_attribute_names
|
1517
1574
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -1561,8 +1618,8 @@ module Aws::DynamoDB
|
|
1561
1618
|
#
|
1562
1619
|
#
|
1563
1620
|
#
|
1564
|
-
# [1]:
|
1565
|
-
# [2]:
|
1621
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
1622
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
1566
1623
|
#
|
1567
1624
|
# @option params [Hash<String,Types::AttributeValue>] :expression_attribute_values
|
1568
1625
|
# One or more values that can be substituted in an expression.
|
@@ -1588,7 +1645,7 @@ module Aws::DynamoDB
|
|
1588
1645
|
#
|
1589
1646
|
#
|
1590
1647
|
#
|
1591
|
-
# [1]:
|
1648
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
1592
1649
|
#
|
1593
1650
|
# @return [Types::DeleteItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1594
1651
|
#
|
@@ -2131,7 +2188,7 @@ module Aws::DynamoDB
|
|
2131
2188
|
#
|
2132
2189
|
#
|
2133
2190
|
#
|
2134
|
-
# [1]:
|
2191
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
|
2135
2192
|
# [2]: https://console.aws.amazon.com/support/home#/
|
2136
2193
|
#
|
2137
2194
|
# @return [Types::DescribeLimitsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2377,7 +2434,7 @@ module Aws::DynamoDB
|
|
2377
2434
|
#
|
2378
2435
|
#
|
2379
2436
|
#
|
2380
|
-
# [1]:
|
2437
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributesToGet.html
|
2381
2438
|
#
|
2382
2439
|
# @option params [Boolean] :consistent_read
|
2383
2440
|
# Determines the read consistency model: If set to `true`, then the
|
@@ -2416,7 +2473,7 @@ module Aws::DynamoDB
|
|
2416
2473
|
#
|
2417
2474
|
#
|
2418
2475
|
#
|
2419
|
-
# [1]:
|
2476
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
2420
2477
|
#
|
2421
2478
|
# @option params [Hash<String,String>] :expression_attribute_names
|
2422
2479
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -2466,8 +2523,8 @@ module Aws::DynamoDB
|
|
2466
2523
|
#
|
2467
2524
|
#
|
2468
2525
|
#
|
2469
|
-
# [1]:
|
2470
|
-
# [2]:
|
2526
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
2527
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
2471
2528
|
#
|
2472
2529
|
# @return [Types::GetItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2473
2530
|
#
|
@@ -2733,7 +2790,7 @@ module Aws::DynamoDB
|
|
2733
2790
|
#
|
2734
2791
|
#
|
2735
2792
|
#
|
2736
|
-
# [1]:
|
2793
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
2737
2794
|
#
|
2738
2795
|
# @option params [required, String] :resource_arn
|
2739
2796
|
# The Amazon DynamoDB resource with tags to be listed. This value is an
|
@@ -2833,7 +2890,7 @@ module Aws::DynamoDB
|
|
2833
2890
|
# [7]: http://docs.aws.amazon.com/goto/SdkForPHPV3/dynamodb-2012-08-10/PutItem
|
2834
2891
|
# [8]: http://docs.aws.amazon.com/goto/boto3/dynamodb-2012-08-10/PutItem
|
2835
2892
|
# [9]: http://docs.aws.amazon.com/goto/SdkForRubyV2/dynamodb-2012-08-10/PutItem
|
2836
|
-
# [10]:
|
2893
|
+
# [10]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html
|
2837
2894
|
#
|
2838
2895
|
# @option params [required, String] :table_name
|
2839
2896
|
# The name of the table to contain the item.
|
@@ -2859,7 +2916,7 @@ module Aws::DynamoDB
|
|
2859
2916
|
#
|
2860
2917
|
#
|
2861
2918
|
#
|
2862
|
-
# [1]:
|
2919
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html#DataModelPrimaryKey
|
2863
2920
|
#
|
2864
2921
|
# @option params [Hash<String,Types::ExpectedAttributeValue>] :expected
|
2865
2922
|
# This is a legacy parameter. Use `ConditionExpression` instead. For
|
@@ -2868,7 +2925,7 @@ module Aws::DynamoDB
|
|
2868
2925
|
#
|
2869
2926
|
#
|
2870
2927
|
#
|
2871
|
-
# [1]:
|
2928
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.Expected.html
|
2872
2929
|
#
|
2873
2930
|
# @option params [String] :return_values
|
2874
2931
|
# Use `ReturnValues` if you want to get the item attributes as they
|
@@ -2918,7 +2975,7 @@ module Aws::DynamoDB
|
|
2918
2975
|
#
|
2919
2976
|
#
|
2920
2977
|
#
|
2921
|
-
# [1]:
|
2978
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
|
2922
2979
|
#
|
2923
2980
|
# @option params [String] :condition_expression
|
2924
2981
|
# A condition that must be satisfied in order for a conditional
|
@@ -2940,7 +2997,7 @@ module Aws::DynamoDB
|
|
2940
2997
|
#
|
2941
2998
|
#
|
2942
2999
|
#
|
2943
|
-
# [1]:
|
3000
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
2944
3001
|
#
|
2945
3002
|
# @option params [Hash<String,String>] :expression_attribute_names
|
2946
3003
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -2990,8 +3047,8 @@ module Aws::DynamoDB
|
|
2990
3047
|
#
|
2991
3048
|
#
|
2992
3049
|
#
|
2993
|
-
# [1]:
|
2994
|
-
# [2]:
|
3050
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
3051
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
2995
3052
|
#
|
2996
3053
|
# @option params [Hash<String,Types::AttributeValue>] :expression_attribute_values
|
2997
3054
|
# One or more values that can be substituted in an expression.
|
@@ -3017,7 +3074,7 @@ module Aws::DynamoDB
|
|
3017
3074
|
#
|
3018
3075
|
#
|
3019
3076
|
#
|
3020
|
-
# [1]:
|
3077
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
3021
3078
|
#
|
3022
3079
|
# @return [Types::PutItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3023
3080
|
#
|
@@ -3170,7 +3227,7 @@ module Aws::DynamoDB
|
|
3170
3227
|
#
|
3171
3228
|
#
|
3172
3229
|
#
|
3173
|
-
# [1]:
|
3230
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Query.html#Query.Pagination
|
3174
3231
|
#
|
3175
3232
|
# @option params [required, String] :table_name
|
3176
3233
|
# The name of the table containing the requested items.
|
@@ -3237,7 +3294,7 @@ module Aws::DynamoDB
|
|
3237
3294
|
#
|
3238
3295
|
#
|
3239
3296
|
#
|
3240
|
-
# [1]:
|
3297
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributesToGet.html
|
3241
3298
|
#
|
3242
3299
|
# @option params [Integer] :limit
|
3243
3300
|
# The maximum number of items to evaluate (not necessarily the number of
|
@@ -3254,7 +3311,7 @@ module Aws::DynamoDB
|
|
3254
3311
|
#
|
3255
3312
|
#
|
3256
3313
|
#
|
3257
|
-
# [1]:
|
3314
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html
|
3258
3315
|
#
|
3259
3316
|
# @option params [Boolean] :consistent_read
|
3260
3317
|
# Determines the read consistency model: If set to `true`, then the
|
@@ -3272,7 +3329,7 @@ module Aws::DynamoDB
|
|
3272
3329
|
#
|
3273
3330
|
#
|
3274
3331
|
#
|
3275
|
-
# [1]:
|
3332
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.KeyConditions.html
|
3276
3333
|
#
|
3277
3334
|
# @option params [Hash<String,Types::Condition>] :query_filter
|
3278
3335
|
# This is a legacy parameter. Use `FilterExpression` instead. For more
|
@@ -3281,7 +3338,7 @@ module Aws::DynamoDB
|
|
3281
3338
|
#
|
3282
3339
|
#
|
3283
3340
|
#
|
3284
|
-
# [1]:
|
3341
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.QueryFilter.html
|
3285
3342
|
#
|
3286
3343
|
# @option params [String] :conditional_operator
|
3287
3344
|
# This is a legacy parameter. Use `FilterExpression` instead. For more
|
@@ -3290,7 +3347,7 @@ module Aws::DynamoDB
|
|
3290
3347
|
#
|
3291
3348
|
#
|
3292
3349
|
#
|
3293
|
-
# [1]:
|
3350
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
|
3294
3351
|
#
|
3295
3352
|
# @option params [Boolean] :scan_index_forward
|
3296
3353
|
# Specifies the order for index traversal: If `true` (default), the
|
@@ -3349,7 +3406,7 @@ module Aws::DynamoDB
|
|
3349
3406
|
#
|
3350
3407
|
#
|
3351
3408
|
#
|
3352
|
-
# [1]:
|
3409
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
3353
3410
|
#
|
3354
3411
|
# @option params [String] :filter_expression
|
3355
3412
|
# A string that contains conditions that DynamoDB applies after the
|
@@ -3370,7 +3427,7 @@ module Aws::DynamoDB
|
|
3370
3427
|
#
|
3371
3428
|
#
|
3372
3429
|
#
|
3373
|
-
# [1]:
|
3430
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#FilteringResults
|
3374
3431
|
#
|
3375
3432
|
# @option params [String] :key_condition_expression
|
3376
3433
|
# The condition that specifies the key value(s) for items to be
|
@@ -3453,8 +3510,8 @@ module Aws::DynamoDB
|
|
3453
3510
|
#
|
3454
3511
|
#
|
3455
3512
|
#
|
3456
|
-
# [1]:
|
3457
|
-
# [2]:
|
3513
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
3514
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ExpressionPlaceholders.html
|
3458
3515
|
#
|
3459
3516
|
# @option params [Hash<String,String>] :expression_attribute_names
|
3460
3517
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -3504,8 +3561,8 @@ module Aws::DynamoDB
|
|
3504
3561
|
#
|
3505
3562
|
#
|
3506
3563
|
#
|
3507
|
-
# [1]:
|
3508
|
-
# [2]:
|
3564
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
3565
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
3509
3566
|
#
|
3510
3567
|
# @option params [Hash<String,Types::AttributeValue>] :expression_attribute_values
|
3511
3568
|
# One or more values that can be substituted in an expression.
|
@@ -3531,7 +3588,7 @@ module Aws::DynamoDB
|
|
3531
3588
|
#
|
3532
3589
|
#
|
3533
3590
|
#
|
3534
|
-
# [1]:
|
3591
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
3535
3592
|
#
|
3536
3593
|
# @return [Types::QueryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3537
3594
|
#
|
@@ -3921,8 +3978,8 @@ module Aws::DynamoDB
|
|
3921
3978
|
#
|
3922
3979
|
#
|
3923
3980
|
#
|
3924
|
-
# [1]:
|
3925
|
-
# [2]:
|
3981
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Scan.html#Scan.Pagination
|
3982
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Scan.html#Scan.ParallelScan
|
3926
3983
|
#
|
3927
3984
|
# @option params [required, String] :table_name
|
3928
3985
|
# The name of the table containing the requested items; or, if you
|
@@ -3941,7 +3998,7 @@ module Aws::DynamoDB
|
|
3941
3998
|
#
|
3942
3999
|
#
|
3943
4000
|
#
|
3944
|
-
# [1]:
|
4001
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributesToGet.html
|
3945
4002
|
#
|
3946
4003
|
# @option params [Integer] :limit
|
3947
4004
|
# The maximum number of items to evaluate (not necessarily the number of
|
@@ -3958,7 +4015,7 @@ module Aws::DynamoDB
|
|
3958
4015
|
#
|
3959
4016
|
#
|
3960
4017
|
#
|
3961
|
-
# [1]:
|
4018
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html
|
3962
4019
|
#
|
3963
4020
|
# @option params [String] :select
|
3964
4021
|
# The attributes to be returned in the result. You can retrieve all item
|
@@ -4017,7 +4074,7 @@ module Aws::DynamoDB
|
|
4017
4074
|
#
|
4018
4075
|
#
|
4019
4076
|
#
|
4020
|
-
# [1]:
|
4077
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ScanFilter.html
|
4021
4078
|
#
|
4022
4079
|
# @option params [String] :conditional_operator
|
4023
4080
|
# This is a legacy parameter. Use `FilterExpression` instead. For more
|
@@ -4026,7 +4083,7 @@ module Aws::DynamoDB
|
|
4026
4083
|
#
|
4027
4084
|
#
|
4028
4085
|
#
|
4029
|
-
# [1]:
|
4086
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
|
4030
4087
|
#
|
4031
4088
|
# @option params [Hash<String,Types::AttributeValue>] :exclusive_start_key
|
4032
4089
|
# The primary key of the first item that this operation will evaluate.
|
@@ -4104,7 +4161,7 @@ module Aws::DynamoDB
|
|
4104
4161
|
#
|
4105
4162
|
#
|
4106
4163
|
#
|
4107
|
-
# [1]:
|
4164
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
4108
4165
|
#
|
4109
4166
|
# @option params [String] :filter_expression
|
4110
4167
|
# A string that contains conditions that DynamoDB applies after the
|
@@ -4122,7 +4179,7 @@ module Aws::DynamoDB
|
|
4122
4179
|
#
|
4123
4180
|
#
|
4124
4181
|
#
|
4125
|
-
# [1]:
|
4182
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#FilteringResults
|
4126
4183
|
#
|
4127
4184
|
# @option params [Hash<String,String>] :expression_attribute_names
|
4128
4185
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -4172,8 +4229,8 @@ module Aws::DynamoDB
|
|
4172
4229
|
#
|
4173
4230
|
#
|
4174
4231
|
#
|
4175
|
-
# [1]:
|
4176
|
-
# [2]:
|
4232
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
4233
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
4177
4234
|
#
|
4178
4235
|
# @option params [Hash<String,Types::AttributeValue>] :expression_attribute_values
|
4179
4236
|
# One or more values that can be substituted in an expression.
|
@@ -4199,7 +4256,7 @@ module Aws::DynamoDB
|
|
4199
4256
|
#
|
4200
4257
|
#
|
4201
4258
|
#
|
4202
|
-
# [1]:
|
4259
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
4203
4260
|
#
|
4204
4261
|
# @option params [Boolean] :consistent_read
|
4205
4262
|
# A Boolean value that determines the read consistency model during the
|
@@ -4340,7 +4397,7 @@ module Aws::DynamoDB
|
|
4340
4397
|
#
|
4341
4398
|
#
|
4342
4399
|
#
|
4343
|
-
# [1]:
|
4400
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
4344
4401
|
#
|
4345
4402
|
# @option params [required, String] :resource_arn
|
4346
4403
|
# Identifies the Amazon DynamoDB resource to which tags should be added.
|
@@ -4683,7 +4740,7 @@ module Aws::DynamoDB
|
|
4683
4740
|
#
|
4684
4741
|
#
|
4685
4742
|
#
|
4686
|
-
# [1]:
|
4743
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
4687
4744
|
#
|
4688
4745
|
# @option params [required, String] :resource_arn
|
4689
4746
|
# The Amazon DyanamoDB resource the tags will be removed from. This
|
@@ -5042,7 +5099,7 @@ module Aws::DynamoDB
|
|
5042
5099
|
#
|
5043
5100
|
#
|
5044
5101
|
#
|
5045
|
-
# [1]:
|
5102
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributeUpdates.html
|
5046
5103
|
#
|
5047
5104
|
# @option params [Hash<String,Types::ExpectedAttributeValue>] :expected
|
5048
5105
|
# This is a legacy parameter. Use `ConditionExpression` instead. For
|
@@ -5051,7 +5108,7 @@ module Aws::DynamoDB
|
|
5051
5108
|
#
|
5052
5109
|
#
|
5053
5110
|
#
|
5054
|
-
# [1]:
|
5111
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.Expected.html
|
5055
5112
|
#
|
5056
5113
|
# @option params [String] :conditional_operator
|
5057
5114
|
# This is a legacy parameter. Use `ConditionExpression` instead. For
|
@@ -5060,7 +5117,7 @@ module Aws::DynamoDB
|
|
5060
5117
|
#
|
5061
5118
|
#
|
5062
5119
|
#
|
5063
|
-
# [1]:
|
5120
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
|
5064
5121
|
#
|
5065
5122
|
# @option params [String] :return_values
|
5066
5123
|
# Use `ReturnValues` if you want to get the item attributes as they
|
@@ -5198,7 +5255,7 @@ module Aws::DynamoDB
|
|
5198
5255
|
#
|
5199
5256
|
#
|
5200
5257
|
#
|
5201
|
-
# [1]:
|
5258
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.Modifying.html
|
5202
5259
|
#
|
5203
5260
|
# @option params [String] :condition_expression
|
5204
5261
|
# A condition that must be satisfied in order for a conditional update
|
@@ -5220,7 +5277,7 @@ module Aws::DynamoDB
|
|
5220
5277
|
#
|
5221
5278
|
#
|
5222
5279
|
#
|
5223
|
-
# [1]:
|
5280
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
5224
5281
|
#
|
5225
5282
|
# @option params [Hash<String,String>] :expression_attribute_names
|
5226
5283
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -5270,8 +5327,8 @@ module Aws::DynamoDB
|
|
5270
5327
|
#
|
5271
5328
|
#
|
5272
5329
|
#
|
5273
|
-
# [1]:
|
5274
|
-
# [2]:
|
5330
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
|
5331
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html
|
5275
5332
|
#
|
5276
5333
|
# @option params [Hash<String,Types::AttributeValue>] :expression_attribute_values
|
5277
5334
|
# One or more values that can be substituted in an expression.
|
@@ -5297,7 +5354,7 @@ module Aws::DynamoDB
|
|
5297
5354
|
#
|
5298
5355
|
#
|
5299
5356
|
#
|
5300
|
-
# [1]:
|
5357
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html
|
5301
5358
|
#
|
5302
5359
|
# @return [Types::UpdateItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5303
5360
|
#
|
@@ -5471,7 +5528,7 @@ module Aws::DynamoDB
|
|
5471
5528
|
#
|
5472
5529
|
#
|
5473
5530
|
#
|
5474
|
-
# [1]:
|
5531
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.OnlineOps.html
|
5475
5532
|
#
|
5476
5533
|
# @option params [Types::StreamSpecification] :stream_specification
|
5477
5534
|
# Represents the DynamoDB Streams configuration for the table.
|
@@ -5703,7 +5760,7 @@ module Aws::DynamoDB
|
|
5703
5760
|
#
|
5704
5761
|
#
|
5705
5762
|
#
|
5706
|
-
# [1]:
|
5763
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/TTL.html
|
5707
5764
|
#
|
5708
5765
|
# @option params [required, String] :table_name
|
5709
5766
|
# The name of the table to be configured.
|
@@ -5753,7 +5810,7 @@ module Aws::DynamoDB
|
|
5753
5810
|
params: params,
|
5754
5811
|
config: config)
|
5755
5812
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
5756
|
-
context[:gem_version] = '1.
|
5813
|
+
context[:gem_version] = '1.26.0'
|
5757
5814
|
Seahorse::Client::Request.new(handlers, context)
|
5758
5815
|
end
|
5759
5816
|
|