aws-sdk-dynamodb 1.109.0 → 1.110.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: 04ea1806d4bdced78abec5a1762721030f41c1a023854cadf4b004c9f2d37a54
4
- data.tar.gz: 33596718f067e83513615b47c6134cf83f68e7073ec8778a916cb940ff238f2f
3
+ metadata.gz: 338dd2554eb4036da264dc3f1eab3093f359f2f337c10736014518900e92974b
4
+ data.tar.gz: '09774898f27e3b5301eff619ce378c1af99c620d2e9418d774ad3c0a97cd61d9'
5
5
  SHA512:
6
- metadata.gz: 7380b4e28d27801a2bbb7750f81411f2881cc829639cd523d5197b13952f989fcb1bc88843329d0cb1a91aa7ccfad9fa06808d5d8cd252d2e418e8d3d62234aa
7
- data.tar.gz: 0473ea5e4a0b057576905ae000da8c8811dcdaf3b75832551d8c7b7d5b37f2e1c9f8d4dfc20a78e164ca4fcb9b36f3c41cae79b78b710e4a5e7649c01768ccc3
6
+ metadata.gz: ab3e2917028de5e95fe721467dd02141a1f76e5104a49690a86434e896b811694139ff9fd9a5794b662e1f54a6b777d67a20ca85709c1ec42503c193b851b65b
7
+ data.tar.gz: 6021636e184e19572f4541501a957ecf90f76d7306e3115ddec27a26f1bd1a486e9c0793321e50e834685925cb251f4a02a20f4cafde672de925ed8ee0620400
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.109.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.110.0
@@ -907,6 +907,10 @@ module Aws::DynamoDB
907
907
  #
908
908
  # * The total request size exceeds 16 MB.
909
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
+ #
910
914
  #
911
915
  #
912
916
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
@@ -1153,14 +1157,13 @@ module Aws::DynamoDB
1153
1157
  # a replication relationship between two or more DynamoDB tables with
1154
1158
  # the same table name in the provided Regions.
1155
1159
  #
1156
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
1157
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
1158
- # when creating new global tables, as it provides greater flexibility,
1159
- # higher efficiency and consumes less write capacity than 2017.11.29
1160
- # (Legacy). To determine which version you are using, see [Determining
1161
- # the version][3]. To update existing global tables from version
1162
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
1163
- # 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].
1164
1167
  #
1165
1168
  # If you want to add a new replica table to a global table, each of the
1166
1169
  # following conditions must be true:
@@ -1203,10 +1206,8 @@ module Aws::DynamoDB
1203
1206
  #
1204
1207
  #
1205
1208
  #
1206
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
1207
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
1208
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
1209
- # [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
1210
1211
  #
1211
1212
  # @option params [required, String] :global_table_name
1212
1213
  # The global table name.
@@ -1419,16 +1420,16 @@ module Aws::DynamoDB
1419
1420
  #
1420
1421
  # * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
1421
1422
  # workloads. `PROVISIONED` sets the billing mode to [Provisioned
1422
- # Mode][1].
1423
+ # capacity mode][1].
1423
1424
  #
1424
1425
  # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
1425
1426
  # unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
1426
- # [On-Demand Mode][2].
1427
+ # [On-demand capacity mode][2].
1427
1428
  #
1428
1429
  #
1429
1430
  #
1430
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
1431
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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
1432
1433
  #
1433
1434
  # @option params [Types::ProvisionedThroughput] :provisioned_throughput
1434
1435
  # Represents the provisioned throughput settings for a specified table
@@ -2199,8 +2200,8 @@ module Aws::DynamoDB
2199
2200
  # DynamoDB returns a `ResourceNotFoundException`. If table is already in
2200
2201
  # the `DELETING` state, no error is returned.
2201
2202
  #
2202
- # This operation only applies to [Version 2019.11.21 (Current)][1] of
2203
- # global tables.
2203
+ # For global tables, this operation only applies to global tables using
2204
+ # Version 2019.11.21 (Current version).
2204
2205
  #
2205
2206
  # <note markdown="1"> DynamoDB might continue to accept data read and write operations, such
2206
2207
  # as `GetItem` and `PutItem`, on a table in the `DELETING` state until
@@ -2216,10 +2217,6 @@ module Aws::DynamoDB
2216
2217
  #
2217
2218
  # Use the `DescribeTable` action to check the status of the table.
2218
2219
  #
2219
- #
2220
- #
2221
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
2222
- #
2223
2220
  # @option params [required, String] :table_name
2224
2221
  # The name of the table to delete. You can also provide the Amazon
2225
2222
  # Resource Name (ARN) of the table in this parameter.
@@ -2609,21 +2606,18 @@ module Aws::DynamoDB
2609
2606
 
2610
2607
  # Returns information about the specified global table.
2611
2608
  #
2612
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
2613
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
2614
- # when creating new global tables, as it provides greater flexibility,
2615
- # higher efficiency and consumes less write capacity than 2017.11.29
2616
- # (Legacy). To determine which version you are using, see [Determining
2617
- # the version][3]. To update existing global tables from version
2618
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
2619
- # 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].
2620
2616
  #
2621
2617
  #
2622
2618
  #
2623
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
2624
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
2625
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
2626
- # [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
2627
2621
  #
2628
2622
  # @option params [required, String] :global_table_name
2629
2623
  # The name of the global table.
@@ -2671,21 +2665,18 @@ module Aws::DynamoDB
2671
2665
 
2672
2666
  # Describes Region-specific settings for a global table.
2673
2667
  #
2674
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
2675
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
2676
- # when creating new global tables, as it provides greater flexibility,
2677
- # higher efficiency and consumes less write capacity than 2017.11.29
2678
- # (Legacy). To determine which version you are using, see [Determining
2679
- # the version][3]. To update existing global tables from version
2680
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
2681
- # 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].
2682
2675
  #
2683
2676
  #
2684
2677
  #
2685
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
2686
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
2687
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
2688
- # [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
2689
2680
  #
2690
2681
  # @option params [required, String] :global_table_name
2691
2682
  # The name of the global table to describe.
@@ -2994,8 +2985,8 @@ module Aws::DynamoDB
2994
2985
  # the table, when it was created, the primary key schema, and any
2995
2986
  # indexes on the table.
2996
2987
  #
2997
- # This operation only applies to [Version 2019.11.21 (Current)][1] of
2998
- # global tables.
2988
+ # For global tables, this operation only applies to global tables using
2989
+ # Version 2019.11.21 (Current version).
2999
2990
  #
3000
2991
  # <note markdown="1"> If you issue a `DescribeTable` request immediately after a
3001
2992
  # `CreateTable` request, DynamoDB might return a
@@ -3006,10 +2997,6 @@ module Aws::DynamoDB
3006
2997
  #
3007
2998
  # </note>
3008
2999
  #
3009
- #
3010
- #
3011
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
3012
- #
3013
3000
  # @option params [required, String] :table_name
3014
3001
  # The name of the table to describe. You can also provide the Amazon
3015
3002
  # Resource Name (ARN) of the table in this parameter.
@@ -3177,12 +3164,8 @@ module Aws::DynamoDB
3177
3164
  # Describes auto scaling settings across replicas of the global table at
3178
3165
  # once.
3179
3166
  #
3180
- # This operation only applies to [Version 2019.11.21 (Current)][1] of
3181
- # global tables.
3182
- #
3183
- #
3184
- #
3185
- # [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).
3186
3169
  #
3187
3170
  # @option params [required, String] :table_name
3188
3171
  # The name of the table. You can also provide the Amazon Resource Name
@@ -4345,21 +4328,18 @@ module Aws::DynamoDB
4345
4328
 
4346
4329
  # Lists all global tables that have a replica in the specified Region.
4347
4330
  #
4348
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
4349
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
4350
- # when creating new global tables, as it provides greater flexibility,
4351
- # higher efficiency and consumes less write capacity than 2017.11.29
4352
- # (Legacy). To determine which version you are using, see [Determining
4353
- # the version][3]. To update existing global tables from version
4354
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
4355
- # 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].
4356
4338
  #
4357
4339
  #
4358
4340
  #
4359
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
4360
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
4361
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
4362
- # [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
4363
4343
  #
4364
4344
  # @option params [String] :exclusive_start_global_table_name
4365
4345
  # The first global table name that this operation will evaluate.
@@ -6955,18 +6935,17 @@ module Aws::DynamoDB
6955
6935
  # have the same key schema, have DynamoDB Streams enabled, and have the
6956
6936
  # same provisioned and maximum write capacity units.
6957
6937
  #
6958
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
6959
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
6960
- # when creating new global tables, as it provides greater flexibility,
6961
- # higher efficiency and consumes less write capacity than 2017.11.29
6962
- # (Legacy). To determine which version you are using, see [Determining
6963
- # the version][3]. To update existing global tables from version
6964
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
6965
- # 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].
6966
6945
  #
6967
- # <note markdown="1"> This operation only applies to [Version 2017.11.29][1] of global
6968
- # tables. If you are using global tables [Version 2019.11.21][2] you can
6969
- # use [UpdateTable][5] instead.
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.
6970
6949
  #
6971
6950
  # Although you can use `UpdateGlobalTable` to add replicas and remove
6972
6951
  # replicas in a single request, for simplicity we recommend that you
@@ -6987,11 +6966,10 @@ module Aws::DynamoDB
6987
6966
  #
6988
6967
  #
6989
6968
  #
6990
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
6991
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
6992
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
6993
- # [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html
6994
- # [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
6995
6973
  #
6996
6974
  # @option params [required, String] :global_table_name
6997
6975
  # The global table name.
@@ -7053,21 +7031,18 @@ module Aws::DynamoDB
7053
7031
 
7054
7032
  # Updates settings for a global table.
7055
7033
  #
7056
- # This operation only applies to [Version 2017.11.29 (Legacy)][1] of
7057
- # global tables. We recommend using [Version 2019.11.21 (Current)][2]
7058
- # when creating new global tables, as it provides greater flexibility,
7059
- # higher efficiency and consumes less write capacity than 2017.11.29
7060
- # (Legacy). To determine which version you are using, see [Determining
7061
- # the version][3]. To update existing global tables from version
7062
- # 2017.11.29 (Legacy) to version 2019.11.21 (Current), see [ Updating
7063
- # 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].
7064
7041
  #
7065
7042
  #
7066
7043
  #
7067
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
7068
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
7069
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html
7070
- # [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
7071
7046
  #
7072
7047
  # @option params [required, String] :global_table_name
7073
7048
  # The name of the global table
@@ -7079,16 +7054,16 @@ module Aws::DynamoDB
7079
7054
  #
7080
7055
  # * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
7081
7056
  # workloads. `PROVISIONED` sets the billing mode to [Provisioned
7082
- # Mode][1].
7057
+ # capacity mode][1].
7083
7058
  #
7084
7059
  # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
7085
7060
  # unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
7086
- # [On-Demand Mode][2].
7061
+ # [On-demand capacity mode][2].
7087
7062
  #
7088
7063
  #
7089
7064
  #
7090
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
7091
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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
7092
7067
  #
7093
7068
  # @option params [Integer] :global_table_provisioned_write_capacity_units
7094
7069
  # The maximum number of writes consumed per second before DynamoDB
@@ -7716,8 +7691,8 @@ module Aws::DynamoDB
7716
7691
  # Modifies the provisioned throughput settings, global secondary
7717
7692
  # indexes, or DynamoDB Streams settings for a given table.
7718
7693
  #
7719
- # This operation only applies to [Version 2019.11.21 (Current)][1] of
7720
- # global tables.
7694
+ # For global tables, this operation only applies to global tables using
7695
+ # Version 2019.11.21 (Current version).
7721
7696
  #
7722
7697
  # You can only perform one of the following operations at once:
7723
7698
  #
@@ -7735,10 +7710,6 @@ module Aws::DynamoDB
7735
7710
  # table returns to the `ACTIVE` state, the `UpdateTable` operation is
7736
7711
  # complete.
7737
7712
  #
7738
- #
7739
- #
7740
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
7741
- #
7742
7713
  # @option params [Array<Types::AttributeDefinition>] :attribute_definitions
7743
7714
  # An array of attributes that describe the key schema for the table and
7744
7715
  # indexes. If you are adding a new global secondary index to the table,
@@ -7759,16 +7730,16 @@ module Aws::DynamoDB
7759
7730
  #
7760
7731
  # * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
7761
7732
  # workloads. `PROVISIONED` sets the billing mode to [Provisioned
7762
- # Mode][1].
7733
+ # capacity mode][1].
7763
7734
  #
7764
7735
  # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
7765
7736
  # unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
7766
- # [On-Demand Mode][2].
7737
+ # [On-demand capacity mode][2].
7767
7738
  #
7768
7739
  #
7769
7740
  #
7770
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
7771
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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
7772
7743
  #
7773
7744
  # @option params [Types::ProvisionedThroughput] :provisioned_throughput
7774
7745
  # The new provisioned throughput settings for the specified table or
@@ -7811,15 +7782,11 @@ module Aws::DynamoDB
7811
7782
  # A list of replica update actions (create, delete, or update) for the
7812
7783
  # table.
7813
7784
  #
7814
- # <note markdown="1"> This property only applies to [Version 2019.11.21 (Current)][1] of
7815
- # global tables.
7785
+ # <note markdown="1"> For global tables, this property only applies to global tables using
7786
+ # Version 2019.11.21 (Current version).
7816
7787
  #
7817
7788
  # </note>
7818
7789
  #
7819
- #
7820
- #
7821
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
7822
- #
7823
7790
  # @option params [String] :table_class
7824
7791
  # The table class of the table to be updated. Valid values are
7825
7792
  # `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
@@ -8110,12 +8077,8 @@ module Aws::DynamoDB
8110
8077
 
8111
8078
  # Updates auto scaling settings on your global tables at once.
8112
8079
  #
8113
- # This operation only applies to [Version 2019.11.21 (Current)][1] of
8114
- # global tables.
8115
- #
8116
- #
8117
- #
8118
- # [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).
8119
8082
  #
8120
8083
  # @option params [Array<Types::GlobalSecondaryIndexAutoScalingUpdate>] :global_secondary_index_updates
8121
8084
  # Represents the auto scaling settings of the global secondary indexes
@@ -8364,7 +8327,7 @@ module Aws::DynamoDB
8364
8327
  params: params,
8365
8328
  config: config)
8366
8329
  context[:gem_name] = 'aws-sdk-dynamodb'
8367
- context[:gem_version] = '1.109.0'
8330
+ context[:gem_version] = '1.110.0'
8368
8331
  Seahorse::Client::Request.new(handlers, context)
8369
8332
  end
8370
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
- # Mode][1].
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-Demand Mode][2].
474
+ # [On-demand capacity mode][2].
475
475
  #
476
476
  #
477
477
  #
478
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
479
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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
- # Mode][1].
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-Demand Mode][2].
1933
+ # [On-demand capacity mode][2].
1934
1934
  #
1935
1935
  #
1936
1936
  #
1937
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
1938
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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"> This property only applies to [Version 2019.11.21 (Current)][1] of
1977
- # global tables.
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 Throughput][1] in the *Amazon
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/ProvisionedThroughputIntro.html
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
- # Mode][1].
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-Demand Mode][2].
1991
+ # to [On-demand capacity mode][2].
1992
1992
  #
1993
1993
  #
1994
1994
  #
1995
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
1996
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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 Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughputIntro.html
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 Throughput][1] in the *Amazon
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/ProvisionedThroughputIntro.html
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 [Provisioned Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughput.html#ItemSizeCalculations.Reads
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 [Provisioned Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughputIntro.html
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 [Provisioned Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughputIntro.html
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 [Provisioned Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughput.html#ItemSizeCalculations.Reads
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
- # Mode][1].
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-Demand Mode][2].
9739
+ # to [On-demand capacity mode][2].
9740
9740
  #
9741
9741
  #
9742
9742
  #
9743
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
9744
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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 [Provisioned Throughput][1] in the *Amazon DynamoDB
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/ProvisionedThroughput.html#ItemSizeCalculations.Reads
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
- # Mode][1].
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-Demand Mode][2].
10329
+ # to [On-demand capacity mode][2].
10330
10330
  #
10331
10331
  #
10332
10332
  #
10333
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual
10334
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand
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"> This property only applies to [Version 2019.11.21 (Current)][1] of
10383
- # global tables.
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
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
54
54
  # @!group service
55
55
  module Aws::DynamoDB
56
56
 
57
- GEM_VERSION = '1.109.0'
57
+ GEM_VERSION = '1.110.0'
58
58
 
59
59
  end
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.109.0
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-13 00:00:00.000000000 Z
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