aws-sdk-dynamodb 1.108.0 → 1.110.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +91 -127
- data/lib/aws-sdk-dynamodb/client_api.rb +1 -0
- data/lib/aws-sdk-dynamodb/resource.rb +4 -4
- data/lib/aws-sdk-dynamodb/table.rb +6 -10
- data/lib/aws-sdk-dynamodb/types.rb +36 -40
- 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: 338dd2554eb4036da264dc3f1eab3093f359f2f337c10736014518900e92974b
|
4
|
+
data.tar.gz: '09774898f27e3b5301eff619ce378c1af99c620d2e9418d774ad3c0a97cd61d9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab3e2917028de5e95fe721467dd02141a1f76e5104a49690a86434e896b811694139ff9fd9a5794b662e1f54a6b777d67a20ca85709c1ec42503c193b851b65b
|
7
|
+
data.tar.gz: 6021636e184e19572f4541501a957ecf90f76d7306e3115ddec27a26f1bd1a486e9c0793321e50e834685925cb251f4a02a20f4cafde672de925ed8ee0620400
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2024-05-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation only updates for DynamoDB.
|
8
|
+
|
9
|
+
1.109.0 (2024-05-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.108.0 (2024-05-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -312,8 +312,9 @@ module Aws::DynamoDB
|
|
312
312
|
#
|
313
313
|
# @option options [String] :sdk_ua_app_id
|
314
314
|
# A unique and opaque application ID that is appended to the
|
315
|
-
# User-Agent header as app
|
316
|
-
# maximum length of 50.
|
315
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
316
|
+
# maximum length of 50. This variable is sourced from environment
|
317
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
317
318
|
#
|
318
319
|
# @option options [String] :secret_access_key
|
319
320
|
#
|
@@ -906,6 +907,10 @@ module Aws::DynamoDB
|
|
906
907
|
#
|
907
908
|
# * The total request size exceeds 16 MB.
|
908
909
|
#
|
910
|
+
# * Any individual items with keys exceeding the key length limits. For
|
911
|
+
# a partition key, the limit is 2048 bytes and for a sort key, the
|
912
|
+
# limit is 1024 bytes.
|
913
|
+
#
|
909
914
|
#
|
910
915
|
#
|
911
916
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
|
@@ -1152,14 +1157,13 @@ module Aws::DynamoDB
|
|
1152
1157
|
# a replication relationship between two or more DynamoDB tables with
|
1153
1158
|
# the same table name in the provided Regions.
|
1154
1159
|
#
|
1155
|
-
#
|
1156
|
-
#
|
1157
|
-
#
|
1158
|
-
#
|
1159
|
-
#
|
1160
|
-
#
|
1161
|
-
#
|
1162
|
-
# global tables][4].
|
1160
|
+
# For global tables, this operation only applies to global tables using
|
1161
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
1162
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
1163
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
1164
|
+
# [Determining the version][1]. To update existing global tables from
|
1165
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
1166
|
+
# Updating global tables][2].
|
1163
1167
|
#
|
1164
1168
|
# If you want to add a new replica table to a global table, each of the
|
1165
1169
|
# following conditions must be true:
|
@@ -1202,10 +1206,8 @@ module Aws::DynamoDB
|
|
1202
1206
|
#
|
1203
1207
|
#
|
1204
1208
|
#
|
1205
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
1206
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1207
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
1208
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
1209
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
1210
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
1209
1211
|
#
|
1210
1212
|
# @option params [required, String] :global_table_name
|
1211
1213
|
# The global table name.
|
@@ -1418,16 +1420,16 @@ module Aws::DynamoDB
|
|
1418
1420
|
#
|
1419
1421
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
1420
1422
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
1421
|
-
#
|
1423
|
+
# capacity mode][1].
|
1422
1424
|
#
|
1423
1425
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
1424
1426
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
|
1425
|
-
# [On-
|
1427
|
+
# [On-demand capacity mode][2].
|
1426
1428
|
#
|
1427
1429
|
#
|
1428
1430
|
#
|
1429
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1430
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1431
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1432
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
1431
1433
|
#
|
1432
1434
|
# @option params [Types::ProvisionedThroughput] :provisioned_throughput
|
1433
1435
|
# Represents the provisioned throughput settings for a specified table
|
@@ -2198,8 +2200,8 @@ module Aws::DynamoDB
|
|
2198
2200
|
# DynamoDB returns a `ResourceNotFoundException`. If table is already in
|
2199
2201
|
# the `DELETING` state, no error is returned.
|
2200
2202
|
#
|
2201
|
-
#
|
2202
|
-
#
|
2203
|
+
# For global tables, this operation only applies to global tables using
|
2204
|
+
# Version 2019.11.21 (Current version).
|
2203
2205
|
#
|
2204
2206
|
# <note markdown="1"> DynamoDB might continue to accept data read and write operations, such
|
2205
2207
|
# as `GetItem` and `PutItem`, on a table in the `DELETING` state until
|
@@ -2215,10 +2217,6 @@ module Aws::DynamoDB
|
|
2215
2217
|
#
|
2216
2218
|
# Use the `DescribeTable` action to check the status of the table.
|
2217
2219
|
#
|
2218
|
-
#
|
2219
|
-
#
|
2220
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
2221
|
-
#
|
2222
2220
|
# @option params [required, String] :table_name
|
2223
2221
|
# The name of the table to delete. You can also provide the Amazon
|
2224
2222
|
# Resource Name (ARN) of the table in this parameter.
|
@@ -2608,21 +2606,18 @@ module Aws::DynamoDB
|
|
2608
2606
|
|
2609
2607
|
# Returns information about the specified global table.
|
2610
2608
|
#
|
2611
|
-
#
|
2612
|
-
#
|
2613
|
-
#
|
2614
|
-
#
|
2615
|
-
#
|
2616
|
-
#
|
2617
|
-
#
|
2618
|
-
# global tables][4].
|
2609
|
+
# For global tables, this operation only applies to global tables using
|
2610
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
2611
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
2612
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
2613
|
+
# [Determining the version][1]. To update existing global tables from
|
2614
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
2615
|
+
# Updating global tables][2].
|
2619
2616
|
#
|
2620
2617
|
#
|
2621
2618
|
#
|
2622
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
2623
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
2624
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
2625
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
2619
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
2620
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
2626
2621
|
#
|
2627
2622
|
# @option params [required, String] :global_table_name
|
2628
2623
|
# The name of the global table.
|
@@ -2670,21 +2665,18 @@ module Aws::DynamoDB
|
|
2670
2665
|
|
2671
2666
|
# Describes Region-specific settings for a global table.
|
2672
2667
|
#
|
2673
|
-
#
|
2674
|
-
#
|
2675
|
-
#
|
2676
|
-
#
|
2677
|
-
#
|
2678
|
-
#
|
2679
|
-
#
|
2680
|
-
# global tables][4].
|
2668
|
+
# For global tables, this operation only applies to global tables using
|
2669
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
2670
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
2671
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
2672
|
+
# [Determining the version][1]. To update existing global tables from
|
2673
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
2674
|
+
# Updating global tables][2].
|
2681
2675
|
#
|
2682
2676
|
#
|
2683
2677
|
#
|
2684
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
2685
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
2686
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
2687
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
2678
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
2679
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
2688
2680
|
#
|
2689
2681
|
# @option params [required, String] :global_table_name
|
2690
2682
|
# The name of the global table to describe.
|
@@ -2993,8 +2985,8 @@ module Aws::DynamoDB
|
|
2993
2985
|
# the table, when it was created, the primary key schema, and any
|
2994
2986
|
# indexes on the table.
|
2995
2987
|
#
|
2996
|
-
#
|
2997
|
-
#
|
2988
|
+
# For global tables, this operation only applies to global tables using
|
2989
|
+
# Version 2019.11.21 (Current version).
|
2998
2990
|
#
|
2999
2991
|
# <note markdown="1"> If you issue a `DescribeTable` request immediately after a
|
3000
2992
|
# `CreateTable` request, DynamoDB might return a
|
@@ -3005,10 +2997,6 @@ module Aws::DynamoDB
|
|
3005
2997
|
#
|
3006
2998
|
# </note>
|
3007
2999
|
#
|
3008
|
-
#
|
3009
|
-
#
|
3010
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
3011
|
-
#
|
3012
3000
|
# @option params [required, String] :table_name
|
3013
3001
|
# The name of the table to describe. You can also provide the Amazon
|
3014
3002
|
# Resource Name (ARN) of the table in this parameter.
|
@@ -3176,12 +3164,8 @@ module Aws::DynamoDB
|
|
3176
3164
|
# Describes auto scaling settings across replicas of the global table at
|
3177
3165
|
# once.
|
3178
3166
|
#
|
3179
|
-
#
|
3180
|
-
#
|
3181
|
-
#
|
3182
|
-
#
|
3183
|
-
#
|
3184
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
3167
|
+
# For global tables, this operation only applies to global tables using
|
3168
|
+
# Version 2019.11.21 (Current version).
|
3185
3169
|
#
|
3186
3170
|
# @option params [required, String] :table_name
|
3187
3171
|
# The name of the table. You can also provide the Amazon Resource Name
|
@@ -4344,21 +4328,18 @@ module Aws::DynamoDB
|
|
4344
4328
|
|
4345
4329
|
# Lists all global tables that have a replica in the specified Region.
|
4346
4330
|
#
|
4347
|
-
#
|
4348
|
-
#
|
4349
|
-
#
|
4350
|
-
#
|
4351
|
-
#
|
4352
|
-
#
|
4353
|
-
#
|
4354
|
-
# global tables][4].
|
4331
|
+
# For global tables, this operation only applies to global tables using
|
4332
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
4333
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
4334
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
4335
|
+
# [Determining the version][1]. To update existing global tables from
|
4336
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
4337
|
+
# Updating global tables][2].
|
4355
4338
|
#
|
4356
4339
|
#
|
4357
4340
|
#
|
4358
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
4359
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
4360
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
4361
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
4341
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
4342
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
4362
4343
|
#
|
4363
4344
|
# @option params [String] :exclusive_start_global_table_name
|
4364
4345
|
# The first global table name that this operation will evaluate.
|
@@ -6954,18 +6935,17 @@ module Aws::DynamoDB
|
|
6954
6935
|
# have the same key schema, have DynamoDB Streams enabled, and have the
|
6955
6936
|
# same provisioned and maximum write capacity units.
|
6956
6937
|
#
|
6957
|
-
#
|
6958
|
-
#
|
6959
|
-
#
|
6960
|
-
#
|
6961
|
-
#
|
6962
|
-
#
|
6963
|
-
#
|
6964
|
-
# global tables][4].
|
6938
|
+
# For global tables, this operation only applies to global tables using
|
6939
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
6940
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
6941
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
6942
|
+
# [Determining the version][1]. To update existing global tables from
|
6943
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
6944
|
+
# Updating global tables][2].
|
6965
6945
|
#
|
6966
|
-
# <note markdown="1">
|
6967
|
-
#
|
6968
|
-
# use [UpdateTable][
|
6946
|
+
# <note markdown="1"> For global tables, this operation only applies to global tables using
|
6947
|
+
# Version 2019.11.21 (Current version). If you are using global tables
|
6948
|
+
# [Version 2019.11.21][3] you can use [UpdateTable][4] instead.
|
6969
6949
|
#
|
6970
6950
|
# Although you can use `UpdateGlobalTable` to add replicas and remove
|
6971
6951
|
# replicas in a single request, for simplicity we recommend that you
|
@@ -6986,11 +6966,10 @@ module Aws::DynamoDB
|
|
6986
6966
|
#
|
6987
6967
|
#
|
6988
6968
|
#
|
6989
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
6990
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
6991
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
6992
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/
|
6993
|
-
# [5]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html
|
6969
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
6970
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
6971
|
+
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html
|
6972
|
+
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html
|
6994
6973
|
#
|
6995
6974
|
# @option params [required, String] :global_table_name
|
6996
6975
|
# The global table name.
|
@@ -7052,21 +7031,18 @@ module Aws::DynamoDB
|
|
7052
7031
|
|
7053
7032
|
# Updates settings for a global table.
|
7054
7033
|
#
|
7055
|
-
#
|
7056
|
-
#
|
7057
|
-
#
|
7058
|
-
#
|
7059
|
-
#
|
7060
|
-
#
|
7061
|
-
#
|
7062
|
-
# global tables][4].
|
7034
|
+
# For global tables, this operation only applies to global tables using
|
7035
|
+
# Version 2019.11.21 (Current version), as it provides greater
|
7036
|
+
# flexibility, higher efficiency and consumes less write capacity than
|
7037
|
+
# 2017.11.29 (Legacy). To determine which version you are using, see
|
7038
|
+
# [Determining the version][1]. To update existing global tables from
|
7039
|
+
# version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [
|
7040
|
+
# Updating global tables][2].
|
7063
7041
|
#
|
7064
7042
|
#
|
7065
7043
|
#
|
7066
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.
|
7067
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7068
|
-
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
7069
|
-
# [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
7044
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
|
7045
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
|
7070
7046
|
#
|
7071
7047
|
# @option params [required, String] :global_table_name
|
7072
7048
|
# The name of the global table
|
@@ -7078,16 +7054,16 @@ module Aws::DynamoDB
|
|
7078
7054
|
#
|
7079
7055
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
7080
7056
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
7081
|
-
#
|
7057
|
+
# capacity mode][1].
|
7082
7058
|
#
|
7083
7059
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
7084
7060
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
|
7085
|
-
# [On-
|
7061
|
+
# [On-demand capacity mode][2].
|
7086
7062
|
#
|
7087
7063
|
#
|
7088
7064
|
#
|
7089
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7090
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7065
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
7066
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
7091
7067
|
#
|
7092
7068
|
# @option params [Integer] :global_table_provisioned_write_capacity_units
|
7093
7069
|
# The maximum number of writes consumed per second before DynamoDB
|
@@ -7715,8 +7691,8 @@ module Aws::DynamoDB
|
|
7715
7691
|
# Modifies the provisioned throughput settings, global secondary
|
7716
7692
|
# indexes, or DynamoDB Streams settings for a given table.
|
7717
7693
|
#
|
7718
|
-
#
|
7719
|
-
#
|
7694
|
+
# For global tables, this operation only applies to global tables using
|
7695
|
+
# Version 2019.11.21 (Current version).
|
7720
7696
|
#
|
7721
7697
|
# You can only perform one of the following operations at once:
|
7722
7698
|
#
|
@@ -7734,10 +7710,6 @@ module Aws::DynamoDB
|
|
7734
7710
|
# table returns to the `ACTIVE` state, the `UpdateTable` operation is
|
7735
7711
|
# complete.
|
7736
7712
|
#
|
7737
|
-
#
|
7738
|
-
#
|
7739
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
7740
|
-
#
|
7741
7713
|
# @option params [Array<Types::AttributeDefinition>] :attribute_definitions
|
7742
7714
|
# An array of attributes that describe the key schema for the table and
|
7743
7715
|
# indexes. If you are adding a new global secondary index to the table,
|
@@ -7758,16 +7730,16 @@ module Aws::DynamoDB
|
|
7758
7730
|
#
|
7759
7731
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
7760
7732
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
7761
|
-
#
|
7733
|
+
# capacity mode][1].
|
7762
7734
|
#
|
7763
7735
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
7764
7736
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
|
7765
|
-
# [On-
|
7737
|
+
# [On-demand capacity mode][2].
|
7766
7738
|
#
|
7767
7739
|
#
|
7768
7740
|
#
|
7769
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7770
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7741
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
7742
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
7771
7743
|
#
|
7772
7744
|
# @option params [Types::ProvisionedThroughput] :provisioned_throughput
|
7773
7745
|
# The new provisioned throughput settings for the specified table or
|
@@ -7810,15 +7782,11 @@ module Aws::DynamoDB
|
|
7810
7782
|
# A list of replica update actions (create, delete, or update) for the
|
7811
7783
|
# table.
|
7812
7784
|
#
|
7813
|
-
# <note markdown="1">
|
7814
|
-
#
|
7785
|
+
# <note markdown="1"> For global tables, this property only applies to global tables using
|
7786
|
+
# Version 2019.11.21 (Current version).
|
7815
7787
|
#
|
7816
7788
|
# </note>
|
7817
7789
|
#
|
7818
|
-
#
|
7819
|
-
#
|
7820
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
7821
|
-
#
|
7822
7790
|
# @option params [String] :table_class
|
7823
7791
|
# The table class of the table to be updated. Valid values are
|
7824
7792
|
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
@@ -8109,12 +8077,8 @@ module Aws::DynamoDB
|
|
8109
8077
|
|
8110
8078
|
# Updates auto scaling settings on your global tables at once.
|
8111
8079
|
#
|
8112
|
-
#
|
8113
|
-
#
|
8114
|
-
#
|
8115
|
-
#
|
8116
|
-
#
|
8117
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
8080
|
+
# For global tables, this operation only applies to global tables using
|
8081
|
+
# Version 2019.11.21 (Current version).
|
8118
8082
|
#
|
8119
8083
|
# @option params [Array<Types::GlobalSecondaryIndexAutoScalingUpdate>] :global_secondary_index_updates
|
8120
8084
|
# Represents the auto scaling settings of the global secondary indexes
|
@@ -8363,7 +8327,7 @@ module Aws::DynamoDB
|
|
8363
8327
|
params: params,
|
8364
8328
|
config: config)
|
8365
8329
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8366
|
-
context[:gem_version] = '1.
|
8330
|
+
context[:gem_version] = '1.110.0'
|
8367
8331
|
Seahorse::Client::Request.new(handlers, context)
|
8368
8332
|
end
|
8369
8333
|
|
@@ -1965,6 +1965,7 @@ module Aws::DynamoDB
|
|
1965
1965
|
"endpointPrefix" => "dynamodb",
|
1966
1966
|
"jsonVersion" => "1.0",
|
1967
1967
|
"protocol" => "json",
|
1968
|
+
"protocols" => ["json"],
|
1968
1969
|
"serviceAbbreviation" => "DynamoDB",
|
1969
1970
|
"serviceFullName" => "Amazon DynamoDB",
|
1970
1971
|
"serviceId" => "DynamoDB",
|
@@ -467,16 +467,16 @@ module Aws::DynamoDB
|
|
467
467
|
#
|
468
468
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
469
469
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
470
|
-
#
|
470
|
+
# capacity mode][1].
|
471
471
|
#
|
472
472
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
473
473
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
|
474
|
-
# [On-
|
474
|
+
# [On-demand capacity mode][2].
|
475
475
|
#
|
476
476
|
#
|
477
477
|
#
|
478
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
479
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
478
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
479
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
480
480
|
# @option options [Types::ProvisionedThroughput] :provisioned_throughput
|
481
481
|
# Represents the provisioned throughput settings for a specified table
|
482
482
|
# or index. The settings can be modified using the `UpdateTable`
|
@@ -1926,16 +1926,16 @@ module Aws::DynamoDB
|
|
1926
1926
|
#
|
1927
1927
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
1928
1928
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
1929
|
-
#
|
1929
|
+
# capacity mode][1].
|
1930
1930
|
#
|
1931
1931
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
1932
1932
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
|
1933
|
-
# [On-
|
1933
|
+
# [On-demand capacity mode][2].
|
1934
1934
|
#
|
1935
1935
|
#
|
1936
1936
|
#
|
1937
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1938
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1937
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1938
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
1939
1939
|
# @option options [Types::ProvisionedThroughput] :provisioned_throughput
|
1940
1940
|
# The new provisioned throughput settings for the specified table or
|
1941
1941
|
# index.
|
@@ -1973,14 +1973,10 @@ module Aws::DynamoDB
|
|
1973
1973
|
# A list of replica update actions (create, delete, or update) for the
|
1974
1974
|
# table.
|
1975
1975
|
#
|
1976
|
-
# <note markdown="1">
|
1977
|
-
#
|
1976
|
+
# <note markdown="1"> For global tables, this property only applies to global tables using
|
1977
|
+
# Version 2019.11.21 (Current version).
|
1978
1978
|
#
|
1979
1979
|
# </note>
|
1980
|
-
#
|
1981
|
-
#
|
1982
|
-
#
|
1983
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
1984
1980
|
# @option options [String] :table_class
|
1985
1981
|
# The table class of the table to be updated. Valid values are
|
1986
1982
|
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
@@ -1552,12 +1552,12 @@ module Aws::DynamoDB
|
|
1552
1552
|
# includes the total provisioned throughput consumed, along with
|
1553
1553
|
# statistics for the table and any indexes involved in the operation.
|
1554
1554
|
# `ConsumedCapacity` is only returned if the request asked for it. For
|
1555
|
-
# more information, see [Provisioned
|
1555
|
+
# more information, see [Provisioned capacity mode][1] in the *Amazon
|
1556
1556
|
# DynamoDB Developer Guide*.
|
1557
1557
|
#
|
1558
1558
|
#
|
1559
1559
|
#
|
1560
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1560
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1561
1561
|
#
|
1562
1562
|
# @!attribute [rw] table_name
|
1563
1563
|
# The name of the table that was affected by the operation. If you had
|
@@ -1984,16 +1984,16 @@ module Aws::DynamoDB
|
|
1984
1984
|
#
|
1985
1985
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
1986
1986
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
1987
|
-
#
|
1987
|
+
# capacity mode][1].
|
1988
1988
|
#
|
1989
1989
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
1990
1990
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode
|
1991
|
-
# to [On-
|
1991
|
+
# to [On-demand capacity mode][2].
|
1992
1992
|
#
|
1993
1993
|
#
|
1994
1994
|
#
|
1995
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1996
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1995
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1996
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
1997
1997
|
# @return [String]
|
1998
1998
|
#
|
1999
1999
|
# @!attribute [rw] provisioned_throughput
|
@@ -2464,12 +2464,12 @@ module Aws::DynamoDB
|
|
2464
2464
|
# with statistics for the table and any indexes involved in the
|
2465
2465
|
# operation. `ConsumedCapacity` is only returned if the
|
2466
2466
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
2467
|
-
# information, see [Provisioned
|
2468
|
-
# Developer Guide*.
|
2467
|
+
# information, see [Provisioned capacity mode][1] in the *Amazon
|
2468
|
+
# DynamoDB Developer Guide*.
|
2469
2469
|
#
|
2470
2470
|
#
|
2471
2471
|
#
|
2472
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
2472
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
2473
2473
|
# @return [Types::ConsumedCapacity]
|
2474
2474
|
#
|
2475
2475
|
# @!attribute [rw] item_collection_metrics
|
@@ -3165,12 +3165,12 @@ module Aws::DynamoDB
|
|
3165
3165
|
# includes the total provisioned throughput consumed, along with
|
3166
3166
|
# statistics for the table and any indexes involved in the operation.
|
3167
3167
|
# `ConsumedCapacity` is only returned if the request asked for it. For
|
3168
|
-
# more information, see [Provisioned
|
3168
|
+
# more information, see [Provisioned capacity mode][1] in the *Amazon
|
3169
3169
|
# DynamoDB Developer Guide*.
|
3170
3170
|
#
|
3171
3171
|
#
|
3172
3172
|
#
|
3173
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
3173
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
3174
3174
|
# @return [Types::ConsumedCapacity]
|
3175
3175
|
#
|
3176
3176
|
# @!attribute [rw] last_evaluated_key
|
@@ -4014,12 +4014,12 @@ module Aws::DynamoDB
|
|
4014
4014
|
# with statistics for the table and any indexes involved in the
|
4015
4015
|
# operation. `ConsumedCapacity` is only returned if the
|
4016
4016
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
4017
|
-
# information, see [
|
4018
|
-
# Developer Guide*.
|
4017
|
+
# information, see [Capacity unit consumption for read operations][1]
|
4018
|
+
# in the *Amazon DynamoDB Developer Guide*.
|
4019
4019
|
#
|
4020
4020
|
#
|
4021
4021
|
#
|
4022
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
4022
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/read-write-operations.html#read-operation-consumption
|
4023
4023
|
# @return [Types::ConsumedCapacity]
|
4024
4024
|
#
|
4025
4025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/GetItemOutput AWS API Documentation
|
@@ -6349,12 +6349,12 @@ module Aws::DynamoDB
|
|
6349
6349
|
# with statistics for the table and any indexes involved in the
|
6350
6350
|
# operation. `ConsumedCapacity` is only returned if the
|
6351
6351
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
6352
|
-
# information, see [
|
6353
|
-
# Developer Guide*.
|
6352
|
+
# information, see [Capacity unity consumption for write
|
6353
|
+
# operations][1] in the *Amazon DynamoDB Developer Guide*.
|
6354
6354
|
#
|
6355
6355
|
#
|
6356
6356
|
#
|
6357
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
6357
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/read-write-operations.html#write-operation-consumption
|
6358
6358
|
# @return [Types::ConsumedCapacity]
|
6359
6359
|
#
|
6360
6360
|
# @!attribute [rw] item_collection_metrics
|
@@ -6963,12 +6963,12 @@ module Aws::DynamoDB
|
|
6963
6963
|
# with statistics for the table and any indexes involved in the
|
6964
6964
|
# operation. `ConsumedCapacity` is only returned if the
|
6965
6965
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
6966
|
-
# information, see [
|
6967
|
-
# Developer Guide*.
|
6966
|
+
# information, see [Capacity unit consumption for read operations][1]
|
6967
|
+
# in the *Amazon DynamoDB Developer Guide*.
|
6968
6968
|
#
|
6969
6969
|
#
|
6970
6970
|
#
|
6971
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
6971
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/read-write-operations.html#read-operation-consumption
|
6972
6972
|
# @return [Types::ConsumedCapacity]
|
6973
6973
|
#
|
6974
6974
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/QueryOutput AWS API Documentation
|
@@ -8309,12 +8309,12 @@ module Aws::DynamoDB
|
|
8309
8309
|
# with statistics for the table and any indexes involved in the
|
8310
8310
|
# operation. `ConsumedCapacity` is only returned if the
|
8311
8311
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
8312
|
-
# information, see [
|
8313
|
-
# Developer Guide*.
|
8312
|
+
# information, see [Capacity unit consumption for read operations][1]
|
8313
|
+
# in the *Amazon DynamoDB Developer Guide*.
|
8314
8314
|
#
|
8315
8315
|
#
|
8316
8316
|
#
|
8317
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
8317
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/read-write-operations.html#read-operation-consumption
|
8318
8318
|
# @return [Types::ConsumedCapacity]
|
8319
8319
|
#
|
8320
8320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ScanOutput AWS API Documentation
|
@@ -9732,16 +9732,16 @@ module Aws::DynamoDB
|
|
9732
9732
|
#
|
9733
9733
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
9734
9734
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
9735
|
-
#
|
9735
|
+
# capacity mode][1].
|
9736
9736
|
#
|
9737
9737
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
9738
9738
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode
|
9739
|
-
# to [On-
|
9739
|
+
# to [On-demand capacity mode][2].
|
9740
9740
|
#
|
9741
9741
|
#
|
9742
9742
|
#
|
9743
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
9744
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
9743
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
9744
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
9745
9745
|
# @return [String]
|
9746
9746
|
#
|
9747
9747
|
# @!attribute [rw] global_table_provisioned_write_capacity_units
|
@@ -10144,12 +10144,12 @@ module Aws::DynamoDB
|
|
10144
10144
|
# with statistics for the table and any indexes involved in the
|
10145
10145
|
# operation. `ConsumedCapacity` is only returned if the
|
10146
10146
|
# `ReturnConsumedCapacity` parameter was specified. For more
|
10147
|
-
# information, see [
|
10148
|
-
# Developer Guide*.
|
10147
|
+
# information, see [Capacity unity consumption for write
|
10148
|
+
# operations][1] in the *Amazon DynamoDB Developer Guide*.
|
10149
10149
|
#
|
10150
10150
|
#
|
10151
10151
|
#
|
10152
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
10152
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/read-write-operations.html#write-operation-consumption
|
10153
10153
|
# @return [Types::ConsumedCapacity]
|
10154
10154
|
#
|
10155
10155
|
# @!attribute [rw] item_collection_metrics
|
@@ -10322,16 +10322,16 @@ module Aws::DynamoDB
|
|
10322
10322
|
#
|
10323
10323
|
# * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
|
10324
10324
|
# workloads. `PROVISIONED` sets the billing mode to [Provisioned
|
10325
|
-
#
|
10325
|
+
# capacity mode][1].
|
10326
10326
|
#
|
10327
10327
|
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
|
10328
10328
|
# unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode
|
10329
|
-
# to [On-
|
10329
|
+
# to [On-demand capacity mode][2].
|
10330
10330
|
#
|
10331
10331
|
#
|
10332
10332
|
#
|
10333
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
10334
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
10333
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
10334
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
10335
10335
|
# @return [String]
|
10336
10336
|
#
|
10337
10337
|
# @!attribute [rw] provisioned_throughput
|
@@ -10379,14 +10379,10 @@ module Aws::DynamoDB
|
|
10379
10379
|
# A list of replica update actions (create, delete, or update) for the
|
10380
10380
|
# table.
|
10381
10381
|
#
|
10382
|
-
# <note markdown="1">
|
10383
|
-
#
|
10382
|
+
# <note markdown="1"> For global tables, this property only applies to global tables using
|
10383
|
+
# Version 2019.11.21 (Current version).
|
10384
10384
|
#
|
10385
10385
|
# </note>
|
10386
|
-
#
|
10387
|
-
#
|
10388
|
-
#
|
10389
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
10390
10386
|
# @return [Array<Types::ReplicationGroupUpdate>]
|
10391
10387
|
#
|
10392
10388
|
# @!attribute [rw] table_class
|
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.110.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-05-
|
11
|
+
date: 2024-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|