aws-sdk-dynamodb 1.144.0 → 1.146.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba5aca242b047b53709e1bf9a5db2953613ddd1ea28da539dc3547835513e41b
4
- data.tar.gz: e26aa8e912a84eca188d574b82ffba370a150ea1bb3234d7e56585568ba09b3a
3
+ metadata.gz: '08c4403d1ea88d2823f61e4ff6cbbdf5ab22205c9fbad27286429cba323c34aa'
4
+ data.tar.gz: 1ddf0a2a1338ad179bccc671e630eb46d5b05c1c5095879a26f5b7c47394f1d5
5
5
  SHA512:
6
- metadata.gz: 51c0fbeebef6b3bfcbdb2593b3d356813b9f3078d5ae0574cea85c5fff836e15442ef19a7e6013eb44d670b2ec98bbce04c5822c6351ba71180e2930c1efebc7
7
- data.tar.gz: 499be8fcfd02ccd78c9f22662c84c7470cde6e3344dca25f3ad1b0aa90db4124301a6c83d21f81e0e9aae9914ae3a6c2d557972399bfbb4e4a852e11853add85
6
+ metadata.gz: 20ea2870b9c87c8d045a37daa1beb1ee604ed28086ef15d0096bde09763070c710669d5a186b7f4c2a0ff0416e53596f3a03fdebe2335df51a70419700d44946
7
+ data.tar.gz: 3254ce46caba0bf2a65f5f43f050dfefc584d3844426bd06f2ce23682de691105a858c45993205798a962361c408152916d825238a6bc758214f520511817a05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2025-06-30)
5
+ ------------------
6
+
7
+ * Feature - This change adds support for witnesses in global tables. It also adds a new table status, REPLICATION_NOT_AUTHORIZED. This status will indicate scenarios where global replicas table can't be utilized for data plane operations.
8
+
9
+ 1.145.0 (2025-06-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.144.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.146.0
@@ -1309,7 +1309,7 @@ module Aws::DynamoDB
1309
1309
  #
1310
1310
  # resp.global_table_description.replication_group #=> Array
1311
1311
  # resp.global_table_description.replication_group[0].region_name #=> String
1312
- # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
1312
+ # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1313
1313
  # resp.global_table_description.replication_group[0].replica_status_description #=> String
1314
1314
  # resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
1315
1315
  # resp.global_table_description.replication_group[0].kms_master_key_id #=> String
@@ -1317,7 +1317,7 @@ module Aws::DynamoDB
1317
1317
  # resp.global_table_description.replication_group[0].on_demand_throughput_override.max_read_request_units #=> Integer
1318
1318
  # resp.global_table_description.replication_group[0].warm_throughput.read_units_per_second #=> Integer
1319
1319
  # resp.global_table_description.replication_group[0].warm_throughput.write_units_per_second #=> Integer
1320
- # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
1320
+ # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1321
1321
  # resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
1322
1322
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
1323
1323
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -1781,7 +1781,7 @@ module Aws::DynamoDB
1781
1781
  # resp.table_description.key_schema #=> Array
1782
1782
  # resp.table_description.key_schema[0].attribute_name #=> String
1783
1783
  # resp.table_description.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
1784
- # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
1784
+ # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1785
1785
  # resp.table_description.creation_date_time #=> Time
1786
1786
  # resp.table_description.provisioned_throughput.last_increase_date_time #=> Time
1787
1787
  # resp.table_description.provisioned_throughput.last_decrease_date_time #=> Time
@@ -1835,7 +1835,7 @@ module Aws::DynamoDB
1835
1835
  # resp.table_description.global_table_version #=> String
1836
1836
  # resp.table_description.replicas #=> Array
1837
1837
  # resp.table_description.replicas[0].region_name #=> String
1838
- # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
1838
+ # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1839
1839
  # resp.table_description.replicas[0].replica_status_description #=> String
1840
1840
  # resp.table_description.replicas[0].replica_status_percent_progress #=> String
1841
1841
  # resp.table_description.replicas[0].kms_master_key_id #=> String
@@ -1843,7 +1843,7 @@ module Aws::DynamoDB
1843
1843
  # resp.table_description.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
1844
1844
  # resp.table_description.replicas[0].warm_throughput.read_units_per_second #=> Integer
1845
1845
  # resp.table_description.replicas[0].warm_throughput.write_units_per_second #=> Integer
1846
- # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
1846
+ # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1847
1847
  # resp.table_description.replicas[0].global_secondary_indexes #=> Array
1848
1848
  # resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
1849
1849
  # resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -1854,6 +1854,9 @@ module Aws::DynamoDB
1854
1854
  # resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
1855
1855
  # resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
1856
1856
  # resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
1857
+ # resp.table_description.global_table_witnesses #=> Array
1858
+ # resp.table_description.global_table_witnesses[0].region_name #=> String
1859
+ # resp.table_description.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
1857
1860
  # resp.table_description.restore_summary.source_backup_arn #=> String
1858
1861
  # resp.table_description.restore_summary.source_table_arn #=> String
1859
1862
  # resp.table_description.restore_summary.restore_date_time #=> Time
@@ -1872,7 +1875,7 @@ module Aws::DynamoDB
1872
1875
  # resp.table_description.on_demand_throughput.max_write_request_units #=> Integer
1873
1876
  # resp.table_description.warm_throughput.read_units_per_second #=> Integer
1874
1877
  # resp.table_description.warm_throughput.write_units_per_second #=> Integer
1875
- # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
1878
+ # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
1876
1879
  # resp.table_description.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
1877
1880
  #
1878
1881
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTable AWS API Documentation
@@ -2318,9 +2321,6 @@ module Aws::DynamoDB
2318
2321
  # DynamoDB returns a `ResourceNotFoundException`. If table is already in
2319
2322
  # the `DELETING` state, no error is returned.
2320
2323
  #
2321
- # For global tables, this operation only applies to global tables using
2322
- # Version 2019.11.21 (Current version).
2323
- #
2324
2324
  # <note markdown="1"> DynamoDB might continue to accept data read and write operations, such
2325
2325
  # as `GetItem` and `PutItem`, on a table in the `DELETING` state until
2326
2326
  # the table deletion is complete. For the full list of table states, see
@@ -2387,7 +2387,7 @@ module Aws::DynamoDB
2387
2387
  # resp.table_description.key_schema #=> Array
2388
2388
  # resp.table_description.key_schema[0].attribute_name #=> String
2389
2389
  # resp.table_description.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
2390
- # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
2390
+ # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2391
2391
  # resp.table_description.creation_date_time #=> Time
2392
2392
  # resp.table_description.provisioned_throughput.last_increase_date_time #=> Time
2393
2393
  # resp.table_description.provisioned_throughput.last_decrease_date_time #=> Time
@@ -2441,7 +2441,7 @@ module Aws::DynamoDB
2441
2441
  # resp.table_description.global_table_version #=> String
2442
2442
  # resp.table_description.replicas #=> Array
2443
2443
  # resp.table_description.replicas[0].region_name #=> String
2444
- # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
2444
+ # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2445
2445
  # resp.table_description.replicas[0].replica_status_description #=> String
2446
2446
  # resp.table_description.replicas[0].replica_status_percent_progress #=> String
2447
2447
  # resp.table_description.replicas[0].kms_master_key_id #=> String
@@ -2449,7 +2449,7 @@ module Aws::DynamoDB
2449
2449
  # resp.table_description.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
2450
2450
  # resp.table_description.replicas[0].warm_throughput.read_units_per_second #=> Integer
2451
2451
  # resp.table_description.replicas[0].warm_throughput.write_units_per_second #=> Integer
2452
- # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
2452
+ # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2453
2453
  # resp.table_description.replicas[0].global_secondary_indexes #=> Array
2454
2454
  # resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
2455
2455
  # resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -2460,6 +2460,9 @@ module Aws::DynamoDB
2460
2460
  # resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
2461
2461
  # resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
2462
2462
  # resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
2463
+ # resp.table_description.global_table_witnesses #=> Array
2464
+ # resp.table_description.global_table_witnesses[0].region_name #=> String
2465
+ # resp.table_description.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
2463
2466
  # resp.table_description.restore_summary.source_backup_arn #=> String
2464
2467
  # resp.table_description.restore_summary.source_table_arn #=> String
2465
2468
  # resp.table_description.restore_summary.restore_date_time #=> Time
@@ -2478,7 +2481,7 @@ module Aws::DynamoDB
2478
2481
  # resp.table_description.on_demand_throughput.max_write_request_units #=> Integer
2479
2482
  # resp.table_description.warm_throughput.read_units_per_second #=> Integer
2480
2483
  # resp.table_description.warm_throughput.write_units_per_second #=> Integer
2481
- # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
2484
+ # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2482
2485
  # resp.table_description.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
2483
2486
  #
2484
2487
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DeleteTable AWS API Documentation
@@ -2778,7 +2781,7 @@ module Aws::DynamoDB
2778
2781
  #
2779
2782
  # resp.global_table_description.replication_group #=> Array
2780
2783
  # resp.global_table_description.replication_group[0].region_name #=> String
2781
- # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
2784
+ # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2782
2785
  # resp.global_table_description.replication_group[0].replica_status_description #=> String
2783
2786
  # resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
2784
2787
  # resp.global_table_description.replication_group[0].kms_master_key_id #=> String
@@ -2786,7 +2789,7 @@ module Aws::DynamoDB
2786
2789
  # resp.global_table_description.replication_group[0].on_demand_throughput_override.max_read_request_units #=> Integer
2787
2790
  # resp.global_table_description.replication_group[0].warm_throughput.read_units_per_second #=> Integer
2788
2791
  # resp.global_table_description.replication_group[0].warm_throughput.write_units_per_second #=> Integer
2789
- # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
2792
+ # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2790
2793
  # resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
2791
2794
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
2792
2795
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -2849,7 +2852,7 @@ module Aws::DynamoDB
2849
2852
  # resp.global_table_name #=> String
2850
2853
  # resp.replica_settings #=> Array
2851
2854
  # resp.replica_settings[0].region_name #=> String
2852
- # resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
2855
+ # resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
2853
2856
  # resp.replica_settings[0].replica_billing_mode_summary.billing_mode #=> String, one of "PROVISIONED", "PAY_PER_REQUEST"
2854
2857
  # resp.replica_settings[0].replica_billing_mode_summary.last_update_to_pay_per_request_date_time #=> Time
2855
2858
  # resp.replica_settings[0].replica_provisioned_read_capacity_units #=> Integer
@@ -3138,9 +3141,6 @@ module Aws::DynamoDB
3138
3141
  # the table, when it was created, the primary key schema, and any
3139
3142
  # indexes on the table.
3140
3143
  #
3141
- # For global tables, this operation only applies to global tables using
3142
- # Version 2019.11.21 (Current version).
3143
- #
3144
3144
  # <note markdown="1"> If you issue a `DescribeTable` request immediately after a
3145
3145
  # `CreateTable` request, DynamoDB might return a
3146
3146
  # `ResourceNotFoundException`. This is because `DescribeTable` uses an
@@ -3218,7 +3218,7 @@ module Aws::DynamoDB
3218
3218
  # resp.table.key_schema #=> Array
3219
3219
  # resp.table.key_schema[0].attribute_name #=> String
3220
3220
  # resp.table.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
3221
- # resp.table.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
3221
+ # resp.table.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3222
3222
  # resp.table.creation_date_time #=> Time
3223
3223
  # resp.table.provisioned_throughput.last_increase_date_time #=> Time
3224
3224
  # resp.table.provisioned_throughput.last_decrease_date_time #=> Time
@@ -3272,7 +3272,7 @@ module Aws::DynamoDB
3272
3272
  # resp.table.global_table_version #=> String
3273
3273
  # resp.table.replicas #=> Array
3274
3274
  # resp.table.replicas[0].region_name #=> String
3275
- # resp.table.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
3275
+ # resp.table.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3276
3276
  # resp.table.replicas[0].replica_status_description #=> String
3277
3277
  # resp.table.replicas[0].replica_status_percent_progress #=> String
3278
3278
  # resp.table.replicas[0].kms_master_key_id #=> String
@@ -3280,7 +3280,7 @@ module Aws::DynamoDB
3280
3280
  # resp.table.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
3281
3281
  # resp.table.replicas[0].warm_throughput.read_units_per_second #=> Integer
3282
3282
  # resp.table.replicas[0].warm_throughput.write_units_per_second #=> Integer
3283
- # resp.table.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
3283
+ # resp.table.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3284
3284
  # resp.table.replicas[0].global_secondary_indexes #=> Array
3285
3285
  # resp.table.replicas[0].global_secondary_indexes[0].index_name #=> String
3286
3286
  # resp.table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -3291,6 +3291,9 @@ module Aws::DynamoDB
3291
3291
  # resp.table.replicas[0].replica_inaccessible_date_time #=> Time
3292
3292
  # resp.table.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
3293
3293
  # resp.table.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
3294
+ # resp.table.global_table_witnesses #=> Array
3295
+ # resp.table.global_table_witnesses[0].region_name #=> String
3296
+ # resp.table.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
3294
3297
  # resp.table.restore_summary.source_backup_arn #=> String
3295
3298
  # resp.table.restore_summary.source_table_arn #=> String
3296
3299
  # resp.table.restore_summary.restore_date_time #=> Time
@@ -3309,7 +3312,7 @@ module Aws::DynamoDB
3309
3312
  # resp.table.on_demand_throughput.max_write_request_units #=> Integer
3310
3313
  # resp.table.warm_throughput.read_units_per_second #=> Integer
3311
3314
  # resp.table.warm_throughput.write_units_per_second #=> Integer
3312
- # resp.table.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
3315
+ # resp.table.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3313
3316
  # resp.table.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
3314
3317
  #
3315
3318
  #
@@ -3330,9 +3333,6 @@ module Aws::DynamoDB
3330
3333
  # Describes auto scaling settings across replicas of the global table at
3331
3334
  # once.
3332
3335
  #
3333
- # For global tables, this operation only applies to global tables using
3334
- # Version 2019.11.21 (Current version).
3335
- #
3336
3336
  # @option params [required, String] :table_name
3337
3337
  # The name of the table. You can also provide the Amazon Resource Name
3338
3338
  # (ARN) of the table in this parameter.
@@ -3350,7 +3350,7 @@ module Aws::DynamoDB
3350
3350
  # @example Response structure
3351
3351
  #
3352
3352
  # resp.table_auto_scaling_description.table_name #=> String
3353
- # resp.table_auto_scaling_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
3353
+ # resp.table_auto_scaling_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3354
3354
  # resp.table_auto_scaling_description.replicas #=> Array
3355
3355
  # resp.table_auto_scaling_description.replicas[0].region_name #=> String
3356
3356
  # resp.table_auto_scaling_description.replicas[0].global_secondary_indexes #=> Array
@@ -3396,7 +3396,7 @@ module Aws::DynamoDB
3396
3396
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
3397
3397
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
3398
3398
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
3399
- # resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
3399
+ # resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
3400
3400
  #
3401
3401
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeTableReplicaAutoScaling AWS API Documentation
3402
3402
  #
@@ -5818,7 +5818,7 @@ module Aws::DynamoDB
5818
5818
  # resp.table_description.key_schema #=> Array
5819
5819
  # resp.table_description.key_schema[0].attribute_name #=> String
5820
5820
  # resp.table_description.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
5821
- # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
5821
+ # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
5822
5822
  # resp.table_description.creation_date_time #=> Time
5823
5823
  # resp.table_description.provisioned_throughput.last_increase_date_time #=> Time
5824
5824
  # resp.table_description.provisioned_throughput.last_decrease_date_time #=> Time
@@ -5872,7 +5872,7 @@ module Aws::DynamoDB
5872
5872
  # resp.table_description.global_table_version #=> String
5873
5873
  # resp.table_description.replicas #=> Array
5874
5874
  # resp.table_description.replicas[0].region_name #=> String
5875
- # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
5875
+ # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
5876
5876
  # resp.table_description.replicas[0].replica_status_description #=> String
5877
5877
  # resp.table_description.replicas[0].replica_status_percent_progress #=> String
5878
5878
  # resp.table_description.replicas[0].kms_master_key_id #=> String
@@ -5880,7 +5880,7 @@ module Aws::DynamoDB
5880
5880
  # resp.table_description.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
5881
5881
  # resp.table_description.replicas[0].warm_throughput.read_units_per_second #=> Integer
5882
5882
  # resp.table_description.replicas[0].warm_throughput.write_units_per_second #=> Integer
5883
- # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
5883
+ # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
5884
5884
  # resp.table_description.replicas[0].global_secondary_indexes #=> Array
5885
5885
  # resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
5886
5886
  # resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -5891,6 +5891,9 @@ module Aws::DynamoDB
5891
5891
  # resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
5892
5892
  # resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
5893
5893
  # resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
5894
+ # resp.table_description.global_table_witnesses #=> Array
5895
+ # resp.table_description.global_table_witnesses[0].region_name #=> String
5896
+ # resp.table_description.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
5894
5897
  # resp.table_description.restore_summary.source_backup_arn #=> String
5895
5898
  # resp.table_description.restore_summary.source_table_arn #=> String
5896
5899
  # resp.table_description.restore_summary.restore_date_time #=> Time
@@ -5909,7 +5912,7 @@ module Aws::DynamoDB
5909
5912
  # resp.table_description.on_demand_throughput.max_write_request_units #=> Integer
5910
5913
  # resp.table_description.warm_throughput.read_units_per_second #=> Integer
5911
5914
  # resp.table_description.warm_throughput.write_units_per_second #=> Integer
5912
- # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
5915
+ # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
5913
5916
  # resp.table_description.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
5914
5917
  #
5915
5918
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableFromBackup AWS API Documentation
@@ -6083,7 +6086,7 @@ module Aws::DynamoDB
6083
6086
  # resp.table_description.key_schema #=> Array
6084
6087
  # resp.table_description.key_schema[0].attribute_name #=> String
6085
6088
  # resp.table_description.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
6086
- # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
6089
+ # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
6087
6090
  # resp.table_description.creation_date_time #=> Time
6088
6091
  # resp.table_description.provisioned_throughput.last_increase_date_time #=> Time
6089
6092
  # resp.table_description.provisioned_throughput.last_decrease_date_time #=> Time
@@ -6137,7 +6140,7 @@ module Aws::DynamoDB
6137
6140
  # resp.table_description.global_table_version #=> String
6138
6141
  # resp.table_description.replicas #=> Array
6139
6142
  # resp.table_description.replicas[0].region_name #=> String
6140
- # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
6143
+ # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
6141
6144
  # resp.table_description.replicas[0].replica_status_description #=> String
6142
6145
  # resp.table_description.replicas[0].replica_status_percent_progress #=> String
6143
6146
  # resp.table_description.replicas[0].kms_master_key_id #=> String
@@ -6145,7 +6148,7 @@ module Aws::DynamoDB
6145
6148
  # resp.table_description.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
6146
6149
  # resp.table_description.replicas[0].warm_throughput.read_units_per_second #=> Integer
6147
6150
  # resp.table_description.replicas[0].warm_throughput.write_units_per_second #=> Integer
6148
- # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
6151
+ # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
6149
6152
  # resp.table_description.replicas[0].global_secondary_indexes #=> Array
6150
6153
  # resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
6151
6154
  # resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -6156,6 +6159,9 @@ module Aws::DynamoDB
6156
6159
  # resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
6157
6160
  # resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
6158
6161
  # resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
6162
+ # resp.table_description.global_table_witnesses #=> Array
6163
+ # resp.table_description.global_table_witnesses[0].region_name #=> String
6164
+ # resp.table_description.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
6159
6165
  # resp.table_description.restore_summary.source_backup_arn #=> String
6160
6166
  # resp.table_description.restore_summary.source_table_arn #=> String
6161
6167
  # resp.table_description.restore_summary.restore_date_time #=> Time
@@ -6174,7 +6180,7 @@ module Aws::DynamoDB
6174
6180
  # resp.table_description.on_demand_throughput.max_write_request_units #=> Integer
6175
6181
  # resp.table_description.warm_throughput.read_units_per_second #=> Integer
6176
6182
  # resp.table_description.warm_throughput.write_units_per_second #=> Integer
6177
- # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
6183
+ # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
6178
6184
  # resp.table_description.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
6179
6185
  #
6180
6186
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime AWS API Documentation
@@ -7184,9 +7190,8 @@ module Aws::DynamoDB
7184
7190
  # version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see
7185
7191
  # [Upgrading global tables][3].
7186
7192
  #
7187
- # <note markdown="1"> For global tables, this operation only applies to global tables using
7188
- # Version 2019.11.21 (Current version). If you are using global tables
7189
- # [Version 2019.11.21][1] you can use [UpdateTable][4] instead.
7193
+ # <note markdown="1"> If you are using global tables [Version 2019.11.21][1] (Current) you
7194
+ # can use [UpdateTable][4] instead.
7190
7195
  #
7191
7196
  # Although you can use `UpdateGlobalTable` to add replicas and remove
7192
7197
  # replicas in a single request, for simplicity we recommend that you
@@ -7243,7 +7248,7 @@ module Aws::DynamoDB
7243
7248
  #
7244
7249
  # resp.global_table_description.replication_group #=> Array
7245
7250
  # resp.global_table_description.replication_group[0].region_name #=> String
7246
- # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
7251
+ # resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
7247
7252
  # resp.global_table_description.replication_group[0].replica_status_description #=> String
7248
7253
  # resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
7249
7254
  # resp.global_table_description.replication_group[0].kms_master_key_id #=> String
@@ -7251,7 +7256,7 @@ module Aws::DynamoDB
7251
7256
  # resp.global_table_description.replication_group[0].on_demand_throughput_override.max_read_request_units #=> Integer
7252
7257
  # resp.global_table_description.replication_group[0].warm_throughput.read_units_per_second #=> Integer
7253
7258
  # resp.global_table_description.replication_group[0].warm_throughput.write_units_per_second #=> Integer
7254
- # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
7259
+ # resp.global_table_description.replication_group[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
7255
7260
  # resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
7256
7261
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
7257
7262
  # resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -7429,7 +7434,7 @@ module Aws::DynamoDB
7429
7434
  # resp.global_table_name #=> String
7430
7435
  # resp.replica_settings #=> Array
7431
7436
  # resp.replica_settings[0].region_name #=> String
7432
- # resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
7437
+ # resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
7433
7438
  # resp.replica_settings[0].replica_billing_mode_summary.billing_mode #=> String, one of "PROVISIONED", "PAY_PER_REQUEST"
7434
7439
  # resp.replica_settings[0].replica_billing_mode_summary.last_update_to_pay_per_request_date_time #=> Time
7435
7440
  # resp.replica_settings[0].replica_provisioned_read_capacity_units #=> Integer
@@ -7940,9 +7945,6 @@ module Aws::DynamoDB
7940
7945
  # Modifies the provisioned throughput settings, global secondary
7941
7946
  # indexes, or DynamoDB Streams settings for a given table.
7942
7947
  #
7943
- # For global tables, this operation only applies to global tables using
7944
- # Version 2019.11.21 (Current version).
7945
- #
7946
7948
  # You can only perform one of the following operations at once:
7947
7949
  #
7948
7950
  # * Modify the provisioned throughput settings of the table.
@@ -8032,11 +8034,6 @@ module Aws::DynamoDB
8032
8034
  # A list of replica update actions (create, delete, or update) for the
8033
8035
  # table.
8034
8036
  #
8035
- # <note markdown="1"> For global tables, this property only applies to global tables using
8036
- # Version 2019.11.21 (Current version).
8037
- #
8038
- # </note>
8039
- #
8040
8037
  # @option params [String] :table_class
8041
8038
  # The table class of the table to be updated. Valid values are
8042
8039
  # `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
@@ -8053,25 +8050,42 @@ module Aws::DynamoDB
8053
8050
  # You can specify one of the following consistency modes:
8054
8051
  #
8055
8052
  # * `EVENTUAL`: Configures a new global table for multi-Region eventual
8056
- # consistency. This is the default consistency mode for global tables.
8053
+ # consistency (MREC). This is the default consistency mode for global
8054
+ # tables.
8057
8055
  #
8058
8056
  # * `STRONG`: Configures a new global table for multi-Region strong
8059
- # consistency (preview).
8057
+ # consistency (MRSC).
8060
8058
  #
8061
- # <note markdown="1"> Multi-Region strong consistency (MRSC) is a new DynamoDB global
8062
- # tables capability currently available in preview mode. For more
8063
- # information, see [Global tables multi-Region strong consistency][3].
8064
- #
8065
- # </note>
8066
- #
8067
- # If you don't specify this parameter, the global table consistency
8068
- # mode defaults to `EVENTUAL`.
8059
+ # If you don't specify this field, the global table consistency mode
8060
+ # defaults to `EVENTUAL`. For more information about global tables
8061
+ # consistency modes, see [ Consistency modes][3] in DynamoDB developer
8062
+ # guide.
8069
8063
  #
8070
8064
  #
8071
8065
  #
8072
8066
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ReplicationGroupUpdate.html#DDB-Type-ReplicationGroupUpdate-Create
8073
8067
  # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
8074
- # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PreviewFeatures.html#multi-region-strong-consistency-gt
8068
+ # [3]: https://docs.aws.amazon.com/V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes
8069
+ #
8070
+ # @option params [Array<Types::GlobalTableWitnessGroupUpdate>] :global_table_witness_updates
8071
+ # A list of witness updates for a MRSC global table. A witness provides
8072
+ # a cost-effective alternative to a full replica in a MRSC global table
8073
+ # by maintaining replicated change data written to global table
8074
+ # replicas. You cannot perform read or write operations on a witness.
8075
+ # For each witness, you can request one action:
8076
+ #
8077
+ # * `Create` - add a new witness to the global table.
8078
+ #
8079
+ # * `Delete` - remove a witness from the global table.
8080
+ #
8081
+ # You can create or delete only one witness per `UpdateTable` operation.
8082
+ #
8083
+ # For more information, see [Multi-Region strong consistency (MRSC)][1]
8084
+ # in the Amazon DynamoDB Developer Guide
8085
+ #
8086
+ #
8087
+ #
8088
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes
8075
8089
  #
8076
8090
  # @option params [Types::OnDemandThroughput] :on_demand_throughput
8077
8091
  # Updates the maximum number of read and write units for the specified
@@ -8261,6 +8275,16 @@ module Aws::DynamoDB
8261
8275
  # table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8262
8276
  # deletion_protection_enabled: false,
8263
8277
  # multi_region_consistency: "EVENTUAL", # accepts EVENTUAL, STRONG
8278
+ # global_table_witness_updates: [
8279
+ # {
8280
+ # create: {
8281
+ # region_name: "RegionName", # required
8282
+ # },
8283
+ # delete: {
8284
+ # region_name: "RegionName", # required
8285
+ # },
8286
+ # },
8287
+ # ],
8264
8288
  # on_demand_throughput: {
8265
8289
  # max_read_request_units: 1,
8266
8290
  # max_write_request_units: 1,
@@ -8280,7 +8304,7 @@ module Aws::DynamoDB
8280
8304
  # resp.table_description.key_schema #=> Array
8281
8305
  # resp.table_description.key_schema[0].attribute_name #=> String
8282
8306
  # resp.table_description.key_schema[0].key_type #=> String, one of "HASH", "RANGE"
8283
- # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
8307
+ # resp.table_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8284
8308
  # resp.table_description.creation_date_time #=> Time
8285
8309
  # resp.table_description.provisioned_throughput.last_increase_date_time #=> Time
8286
8310
  # resp.table_description.provisioned_throughput.last_decrease_date_time #=> Time
@@ -8334,7 +8358,7 @@ module Aws::DynamoDB
8334
8358
  # resp.table_description.global_table_version #=> String
8335
8359
  # resp.table_description.replicas #=> Array
8336
8360
  # resp.table_description.replicas[0].region_name #=> String
8337
- # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
8361
+ # resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8338
8362
  # resp.table_description.replicas[0].replica_status_description #=> String
8339
8363
  # resp.table_description.replicas[0].replica_status_percent_progress #=> String
8340
8364
  # resp.table_description.replicas[0].kms_master_key_id #=> String
@@ -8342,7 +8366,7 @@ module Aws::DynamoDB
8342
8366
  # resp.table_description.replicas[0].on_demand_throughput_override.max_read_request_units #=> Integer
8343
8367
  # resp.table_description.replicas[0].warm_throughput.read_units_per_second #=> Integer
8344
8368
  # resp.table_description.replicas[0].warm_throughput.write_units_per_second #=> Integer
8345
- # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
8369
+ # resp.table_description.replicas[0].warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8346
8370
  # resp.table_description.replicas[0].global_secondary_indexes #=> Array
8347
8371
  # resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
8348
8372
  # resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
@@ -8353,6 +8377,9 @@ module Aws::DynamoDB
8353
8377
  # resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
8354
8378
  # resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
8355
8379
  # resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
8380
+ # resp.table_description.global_table_witnesses #=> Array
8381
+ # resp.table_description.global_table_witnesses[0].region_name #=> String
8382
+ # resp.table_description.global_table_witnesses[0].witness_status #=> String, one of "CREATING", "DELETING", "ACTIVE"
8356
8383
  # resp.table_description.restore_summary.source_backup_arn #=> String
8357
8384
  # resp.table_description.restore_summary.source_table_arn #=> String
8358
8385
  # resp.table_description.restore_summary.restore_date_time #=> Time
@@ -8371,7 +8398,7 @@ module Aws::DynamoDB
8371
8398
  # resp.table_description.on_demand_throughput.max_write_request_units #=> Integer
8372
8399
  # resp.table_description.warm_throughput.read_units_per_second #=> Integer
8373
8400
  # resp.table_description.warm_throughput.write_units_per_second #=> Integer
8374
- # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
8401
+ # resp.table_description.warm_throughput.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8375
8402
  # resp.table_description.multi_region_consistency #=> String, one of "EVENTUAL", "STRONG"
8376
8403
  #
8377
8404
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTable AWS API Documentation
@@ -8385,9 +8412,6 @@ module Aws::DynamoDB
8385
8412
 
8386
8413
  # Updates auto scaling settings on your global tables at once.
8387
8414
  #
8388
- # For global tables, this operation only applies to global tables using
8389
- # Version 2019.11.21 (Current version).
8390
- #
8391
8415
  # @option params [Array<Types::GlobalSecondaryIndexAutoScalingUpdate>] :global_secondary_index_updates
8392
8416
  # Represents the auto scaling settings of the global secondary indexes
8393
8417
  # of the replica to be updated.
@@ -8492,7 +8516,7 @@ module Aws::DynamoDB
8492
8516
  # @example Response structure
8493
8517
  #
8494
8518
  # resp.table_auto_scaling_description.table_name #=> String
8495
- # resp.table_auto_scaling_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED"
8519
+ # resp.table_auto_scaling_description.table_status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8496
8520
  # resp.table_auto_scaling_description.replicas #=> Array
8497
8521
  # resp.table_auto_scaling_description.replicas[0].region_name #=> String
8498
8522
  # resp.table_auto_scaling_description.replicas[0].global_secondary_indexes #=> Array
@@ -8538,7 +8562,7 @@ module Aws::DynamoDB
8538
8562
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
8539
8563
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
8540
8564
  # resp.table_auto_scaling_description.replicas[0].replica_provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
8541
- # resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
8565
+ # resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED", "INACCESSIBLE_ENCRYPTION_CREDENTIALS", "ARCHIVING", "ARCHIVED", "REPLICATION_NOT_AUTHORIZED"
8542
8566
  #
8543
8567
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTableReplicaAutoScaling AWS API Documentation
8544
8568
  #
@@ -8640,7 +8664,7 @@ module Aws::DynamoDB
8640
8664
  tracer: tracer
8641
8665
  )
8642
8666
  context[:gem_name] = 'aws-sdk-dynamodb'
8643
- context[:gem_version] = '1.144.0'
8667
+ context[:gem_version] = '1.146.0'
8644
8668
  Seahorse::Client::Request.new(handlers, context)
8645
8669
  end
8646
8670