aws-sdk-dynamodb 1.54.0 → 1.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +42 -33
- data/lib/aws-sdk-dynamodb/client_api.rb +1 -0
- data/lib/aws-sdk-dynamodb/resource.rb +2 -1
- data/lib/aws-sdk-dynamodb/table.rb +3 -3
- data/lib/aws-sdk-dynamodb/types.rb +41 -18
- 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: aa092027136f7fd6a79893442159787621c9df54109750dabe9e8a1153635a98
|
4
|
+
data.tar.gz: 84a77cc53d7d1f137e54b22420a4f32f0efc2ecf6e9413b206483b136308b2db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdea1cb9aa08db9d0583814898882f8f94f3b568ad9c9d952982473b17dbacee82fa9848de7bb7ff5e3a631c3e2765e31383a4cfb7ca0a7d9732c2602ad61a3f
|
7
|
+
data.tar.gz: 39af277269fccc285ae7e857e19cdf4bb85106435f37f0510d1bc3de6b601751a49361e5f46b662182f117e9234c73e8b1fcad60215f22ad31d6204a0becf4ed
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
@@ -1036,7 +1036,7 @@ module Aws::DynamoDB
|
|
1036
1036
|
#
|
1037
1037
|
# resp.global_table_description.replication_group #=> Array
|
1038
1038
|
# resp.global_table_description.replication_group[0].region_name #=> String
|
1039
|
-
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
1039
|
+
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
1040
1040
|
# resp.global_table_description.replication_group[0].replica_status_description #=> String
|
1041
1041
|
# resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
|
1042
1042
|
# resp.global_table_description.replication_group[0].kms_master_key_id #=> String
|
@@ -1044,6 +1044,7 @@ module Aws::DynamoDB
|
|
1044
1044
|
# resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
|
1045
1045
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
1046
1046
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1047
|
+
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
1047
1048
|
# resp.global_table_description.global_table_arn #=> String
|
1048
1049
|
# resp.global_table_description.creation_date_time #=> Time
|
1049
1050
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -1237,7 +1238,8 @@ module Aws::DynamoDB
|
|
1237
1238
|
# specify this property.
|
1238
1239
|
#
|
1239
1240
|
# For current minimum and maximum provisioned throughput values, see
|
1240
|
-
# [
|
1241
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
1242
|
+
# Developer Guide*.
|
1241
1243
|
#
|
1242
1244
|
#
|
1243
1245
|
#
|
@@ -1479,7 +1481,7 @@ module Aws::DynamoDB
|
|
1479
1481
|
# resp.table_description.global_table_version #=> String
|
1480
1482
|
# resp.table_description.replicas #=> Array
|
1481
1483
|
# resp.table_description.replicas[0].region_name #=> String
|
1482
|
-
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
1484
|
+
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
1483
1485
|
# resp.table_description.replicas[0].replica_status_description #=> String
|
1484
1486
|
# resp.table_description.replicas[0].replica_status_percent_progress #=> String
|
1485
1487
|
# resp.table_description.replicas[0].kms_master_key_id #=> String
|
@@ -1487,6 +1489,7 @@ module Aws::DynamoDB
|
|
1487
1489
|
# resp.table_description.replicas[0].global_secondary_indexes #=> Array
|
1488
1490
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
1489
1491
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1492
|
+
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
1490
1493
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
1491
1494
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
1492
1495
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -1973,7 +1976,7 @@ module Aws::DynamoDB
|
|
1973
1976
|
# resp.table_description.global_table_version #=> String
|
1974
1977
|
# resp.table_description.replicas #=> Array
|
1975
1978
|
# resp.table_description.replicas[0].region_name #=> String
|
1976
|
-
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
1979
|
+
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
1977
1980
|
# resp.table_description.replicas[0].replica_status_description #=> String
|
1978
1981
|
# resp.table_description.replicas[0].replica_status_percent_progress #=> String
|
1979
1982
|
# resp.table_description.replicas[0].kms_master_key_id #=> String
|
@@ -1981,6 +1984,7 @@ module Aws::DynamoDB
|
|
1981
1984
|
# resp.table_description.replicas[0].global_secondary_indexes #=> Array
|
1982
1985
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
1983
1986
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1987
|
+
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
1984
1988
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
1985
1989
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
1986
1990
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -2220,7 +2224,7 @@ module Aws::DynamoDB
|
|
2220
2224
|
#
|
2221
2225
|
# resp.global_table_description.replication_group #=> Array
|
2222
2226
|
# resp.global_table_description.replication_group[0].region_name #=> String
|
2223
|
-
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
2227
|
+
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
2224
2228
|
# resp.global_table_description.replication_group[0].replica_status_description #=> String
|
2225
2229
|
# resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
|
2226
2230
|
# resp.global_table_description.replication_group[0].kms_master_key_id #=> String
|
@@ -2228,6 +2232,7 @@ module Aws::DynamoDB
|
|
2228
2232
|
# resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
|
2229
2233
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
2230
2234
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2235
|
+
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
2231
2236
|
# resp.global_table_description.global_table_arn #=> String
|
2232
2237
|
# resp.global_table_description.creation_date_time #=> Time
|
2233
2238
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -2272,7 +2277,7 @@ module Aws::DynamoDB
|
|
2272
2277
|
# resp.global_table_name #=> String
|
2273
2278
|
# resp.replica_settings #=> Array
|
2274
2279
|
# resp.replica_settings[0].region_name #=> String
|
2275
|
-
# resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
2280
|
+
# resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
2276
2281
|
# resp.replica_settings[0].replica_billing_mode_summary.billing_mode #=> String, one of "PROVISIONED", "PAY_PER_REQUEST"
|
2277
2282
|
# resp.replica_settings[0].replica_billing_mode_summary.last_update_to_pay_per_request_date_time #=> Time
|
2278
2283
|
# resp.replica_settings[0].replica_provisioned_read_capacity_units #=> Integer
|
@@ -2332,28 +2337,28 @@ module Aws::DynamoDB
|
|
2332
2337
|
req.send_request(options)
|
2333
2338
|
end
|
2334
2339
|
|
2335
|
-
# Returns the current provisioned-capacity
|
2340
|
+
# Returns the current provisioned-capacity quotas for your AWS account
|
2336
2341
|
# in a Region, both for the Region as a whole and for any one DynamoDB
|
2337
2342
|
# table that you create there.
|
2338
2343
|
#
|
2339
|
-
# When you establish an AWS account, the account has initial
|
2344
|
+
# When you establish an AWS account, the account has initial quotas on
|
2340
2345
|
# the maximum read capacity units and write capacity units that you can
|
2341
2346
|
# provision across all of your DynamoDB tables in a given Region. Also,
|
2342
|
-
# there are per-table
|
2343
|
-
# For more information, see [
|
2344
|
-
# Developer Guide*.
|
2347
|
+
# there are per-table quotas that apply when you create a table there.
|
2348
|
+
# For more information, see [Service, Account, and Table Quotas][1] page
|
2349
|
+
# in the *Amazon DynamoDB Developer Guide*.
|
2345
2350
|
#
|
2346
|
-
# Although you can increase these
|
2351
|
+
# Although you can increase these quotas by filing a case at [AWS
|
2347
2352
|
# Support Center][2], obtaining the increase is not instantaneous. The
|
2348
2353
|
# `DescribeLimits` action lets you write code to compare the capacity
|
2349
|
-
# you are currently using to those
|
2354
|
+
# you are currently using to those quotas imposed by your account so
|
2350
2355
|
# that you have enough time to apply for an increase before you hit a
|
2351
|
-
#
|
2356
|
+
# quota.
|
2352
2357
|
#
|
2353
2358
|
# For example, you could use one of the AWS SDKs to do the following:
|
2354
2359
|
#
|
2355
2360
|
# 1. Call `DescribeLimits` for a particular Region to obtain your
|
2356
|
-
# current account
|
2361
|
+
# current account quotas on provisioned capacity there.
|
2357
2362
|
#
|
2358
2363
|
# 2. Create a variable to hold the aggregate read capacity units
|
2359
2364
|
# provisioned for all your tables in that Region, and one to hold
|
@@ -2373,21 +2378,21 @@ module Aws::DynamoDB
|
|
2373
2378
|
# loop over these GSIs and add their provisioned capacity values
|
2374
2379
|
# to your variables as well.
|
2375
2380
|
#
|
2376
|
-
# 5. Report the account
|
2381
|
+
# 5. Report the account quotas for that Region returned by
|
2377
2382
|
# `DescribeLimits`, along with the total current provisioned
|
2378
2383
|
# capacity levels you have calculated.
|
2379
2384
|
#
|
2380
2385
|
# This will let you see whether you are getting close to your
|
2381
|
-
# account-level
|
2386
|
+
# account-level quotas.
|
2382
2387
|
#
|
2383
|
-
# The per-table
|
2388
|
+
# The per-table quotas apply only when you are creating a new table.
|
2384
2389
|
# They restrict the sum of the provisioned capacity of the new table
|
2385
2390
|
# itself and all its global secondary indexes.
|
2386
2391
|
#
|
2387
2392
|
# For existing tables and their GSIs, DynamoDB doesn't let you increase
|
2388
|
-
# provisioned capacity extremely rapidly
|
2393
|
+
# provisioned capacity extremely rapidly, but the only quota that
|
2389
2394
|
# applies is that the aggregate provisioned capacity over all your
|
2390
|
-
# tables and GSIs cannot exceed either of the per-account
|
2395
|
+
# tables and GSIs cannot exceed either of the per-account quotas.
|
2391
2396
|
#
|
2392
2397
|
# <note markdown="1"> `DescribeLimits` should only be called periodically. You can expect
|
2393
2398
|
# throttling errors if you call it more than once in a minute.
|
@@ -2570,7 +2575,7 @@ module Aws::DynamoDB
|
|
2570
2575
|
# resp.table.global_table_version #=> String
|
2571
2576
|
# resp.table.replicas #=> Array
|
2572
2577
|
# resp.table.replicas[0].region_name #=> String
|
2573
|
-
# resp.table.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
2578
|
+
# resp.table.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
2574
2579
|
# resp.table.replicas[0].replica_status_description #=> String
|
2575
2580
|
# resp.table.replicas[0].replica_status_percent_progress #=> String
|
2576
2581
|
# resp.table.replicas[0].kms_master_key_id #=> String
|
@@ -2578,6 +2583,7 @@ module Aws::DynamoDB
|
|
2578
2583
|
# resp.table.replicas[0].global_secondary_indexes #=> Array
|
2579
2584
|
# resp.table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2580
2585
|
# resp.table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2586
|
+
# resp.table.replicas[0].replica_inaccessible_date_time #=> Time
|
2581
2587
|
# resp.table.restore_summary.source_backup_arn #=> String
|
2582
2588
|
# resp.table.restore_summary.source_table_arn #=> String
|
2583
2589
|
# resp.table.restore_summary.restore_date_time #=> Time
|
@@ -2679,7 +2685,7 @@ module Aws::DynamoDB
|
|
2679
2685
|
# 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
|
2680
2686
|
# 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
|
2681
2687
|
# 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
|
2682
|
-
# resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
2688
|
+
# resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
2683
2689
|
#
|
2684
2690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeTableReplicaAutoScaling AWS API Documentation
|
2685
2691
|
#
|
@@ -2918,12 +2924,11 @@ module Aws::DynamoDB
|
|
2918
2924
|
# List backups associated with an AWS account. To list backups for a
|
2919
2925
|
# given table, specify `TableName`. `ListBackups` returns a paginated
|
2920
2926
|
# list of results with at most 1 MB worth of items in a page. You can
|
2921
|
-
# also specify a
|
2922
|
-
# in a page.
|
2927
|
+
# also specify a maximum number of entries to be returned in a page.
|
2923
2928
|
#
|
2924
2929
|
# In the request, start time is inclusive, but end time is exclusive.
|
2925
|
-
# Note that these
|
2926
|
-
# was requested.
|
2930
|
+
# Note that these boundaries are for the time at which the original
|
2931
|
+
# backup was requested.
|
2927
2932
|
#
|
2928
2933
|
# You can call `ListBackups` a maximum of five times per second.
|
2929
2934
|
#
|
@@ -4246,7 +4251,7 @@ module Aws::DynamoDB
|
|
4246
4251
|
# resp.table_description.global_table_version #=> String
|
4247
4252
|
# resp.table_description.replicas #=> Array
|
4248
4253
|
# resp.table_description.replicas[0].region_name #=> String
|
4249
|
-
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
4254
|
+
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
4250
4255
|
# resp.table_description.replicas[0].replica_status_description #=> String
|
4251
4256
|
# resp.table_description.replicas[0].replica_status_percent_progress #=> String
|
4252
4257
|
# resp.table_description.replicas[0].kms_master_key_id #=> String
|
@@ -4254,6 +4259,7 @@ module Aws::DynamoDB
|
|
4254
4259
|
# resp.table_description.replicas[0].global_secondary_indexes #=> Array
|
4255
4260
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4256
4261
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4262
|
+
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
4257
4263
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
4258
4264
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
4259
4265
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -4468,7 +4474,7 @@ module Aws::DynamoDB
|
|
4468
4474
|
# resp.table_description.global_table_version #=> String
|
4469
4475
|
# resp.table_description.replicas #=> Array
|
4470
4476
|
# resp.table_description.replicas[0].region_name #=> String
|
4471
|
-
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
4477
|
+
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
4472
4478
|
# resp.table_description.replicas[0].replica_status_description #=> String
|
4473
4479
|
# resp.table_description.replicas[0].replica_status_percent_progress #=> String
|
4474
4480
|
# resp.table_description.replicas[0].kms_master_key_id #=> String
|
@@ -4476,6 +4482,7 @@ module Aws::DynamoDB
|
|
4476
4482
|
# resp.table_description.replicas[0].global_secondary_indexes #=> Array
|
4477
4483
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4478
4484
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4485
|
+
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
4479
4486
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
4480
4487
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
4481
4488
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -5472,7 +5479,7 @@ module Aws::DynamoDB
|
|
5472
5479
|
#
|
5473
5480
|
# resp.global_table_description.replication_group #=> Array
|
5474
5481
|
# resp.global_table_description.replication_group[0].region_name #=> String
|
5475
|
-
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
5482
|
+
# resp.global_table_description.replication_group[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
5476
5483
|
# resp.global_table_description.replication_group[0].replica_status_description #=> String
|
5477
5484
|
# resp.global_table_description.replication_group[0].replica_status_percent_progress #=> String
|
5478
5485
|
# resp.global_table_description.replication_group[0].kms_master_key_id #=> String
|
@@ -5480,6 +5487,7 @@ module Aws::DynamoDB
|
|
5480
5487
|
# resp.global_table_description.replication_group[0].global_secondary_indexes #=> Array
|
5481
5488
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
5482
5489
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
5490
|
+
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
5483
5491
|
# resp.global_table_description.global_table_arn #=> String
|
5484
5492
|
# resp.global_table_description.creation_date_time #=> Time
|
5485
5493
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -5629,7 +5637,7 @@ module Aws::DynamoDB
|
|
5629
5637
|
# resp.global_table_name #=> String
|
5630
5638
|
# resp.replica_settings #=> Array
|
5631
5639
|
# resp.replica_settings[0].region_name #=> String
|
5632
|
-
# resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
5640
|
+
# resp.replica_settings[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
5633
5641
|
# resp.replica_settings[0].replica_billing_mode_summary.billing_mode #=> String, one of "PROVISIONED", "PAY_PER_REQUEST"
|
5634
5642
|
# resp.replica_settings[0].replica_billing_mode_summary.last_update_to_pay_per_request_date_time #=> Time
|
5635
5643
|
# resp.replica_settings[0].replica_provisioned_read_capacity_units #=> Integer
|
@@ -6390,7 +6398,7 @@ module Aws::DynamoDB
|
|
6390
6398
|
# resp.table_description.global_table_version #=> String
|
6391
6399
|
# resp.table_description.replicas #=> Array
|
6392
6400
|
# resp.table_description.replicas[0].region_name #=> String
|
6393
|
-
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
6401
|
+
# resp.table_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
6394
6402
|
# resp.table_description.replicas[0].replica_status_description #=> String
|
6395
6403
|
# resp.table_description.replicas[0].replica_status_percent_progress #=> String
|
6396
6404
|
# resp.table_description.replicas[0].kms_master_key_id #=> String
|
@@ -6398,6 +6406,7 @@ module Aws::DynamoDB
|
|
6398
6406
|
# resp.table_description.replicas[0].global_secondary_indexes #=> Array
|
6399
6407
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
6400
6408
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6409
|
+
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
6401
6410
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
6402
6411
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
6403
6412
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -6579,7 +6588,7 @@ module Aws::DynamoDB
|
|
6579
6588
|
# 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
|
6580
6589
|
# 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
|
6581
6590
|
# 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
|
6582
|
-
# resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE"
|
6591
|
+
# resp.table_auto_scaling_description.replicas[0].replica_status #=> String, one of "CREATING", "CREATION_FAILED", "UPDATING", "DELETING", "ACTIVE", "REGION_DISABLED"
|
6583
6592
|
#
|
6584
6593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTableReplicaAutoScaling AWS API Documentation
|
6585
6594
|
#
|
@@ -6675,7 +6684,7 @@ module Aws::DynamoDB
|
|
6675
6684
|
params: params,
|
6676
6685
|
config: config)
|
6677
6686
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
6678
|
-
context[:gem_version] = '1.
|
6687
|
+
context[:gem_version] = '1.55.0'
|
6679
6688
|
Seahorse::Client::Request.new(handlers, context)
|
6680
6689
|
end
|
6681
6690
|
|
@@ -1099,6 +1099,7 @@ module Aws::DynamoDB
|
|
1099
1099
|
ReplicaDescription.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
1100
1100
|
ReplicaDescription.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
1101
1101
|
ReplicaDescription.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexDescriptionList, location_name: "GlobalSecondaryIndexes"))
|
1102
|
+
ReplicaDescription.add_member(:replica_inaccessible_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "ReplicaInaccessibleDateTime"))
|
1102
1103
|
ReplicaDescription.struct_class = Types::ReplicaDescription
|
1103
1104
|
|
1104
1105
|
ReplicaDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaDescription)
|
@@ -471,7 +471,8 @@ module Aws::DynamoDB
|
|
471
471
|
# specify this property.
|
472
472
|
#
|
473
473
|
# For current minimum and maximum provisioned throughput values, see
|
474
|
-
# [
|
474
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
475
|
+
# Developer Guide*.
|
475
476
|
#
|
476
477
|
#
|
477
478
|
#
|
@@ -265,9 +265,9 @@ module Aws::DynamoDB
|
|
265
265
|
# * `KEYS_ONLY` - Only the index and primary keys are projected into
|
266
266
|
# the index.
|
267
267
|
#
|
268
|
-
# * `INCLUDE` -
|
269
|
-
#
|
270
|
-
#
|
268
|
+
# * `INCLUDE` - In addition to the attributes described in
|
269
|
+
# `KEYS_ONLY`, the secondary index will include other non-key
|
270
|
+
# attributes that you specify.
|
271
271
|
#
|
272
272
|
# * `ALL` - All of the table attributes are projected into the
|
273
273
|
# index.
|
@@ -1721,7 +1721,8 @@ module Aws::DynamoDB
|
|
1721
1721
|
# global secondary index.
|
1722
1722
|
#
|
1723
1723
|
# For current minimum and maximum provisioned throughput values, see
|
1724
|
-
# [
|
1724
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
1725
|
+
# Developer Guide*.
|
1725
1726
|
#
|
1726
1727
|
#
|
1727
1728
|
#
|
@@ -2097,7 +2098,8 @@ module Aws::DynamoDB
|
|
2097
2098
|
# specify this property.
|
2098
2099
|
#
|
2099
2100
|
# For current minimum and maximum provisioned throughput values, see
|
2100
|
-
# [
|
2101
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
2102
|
+
# Developer Guide*.
|
2101
2103
|
#
|
2102
2104
|
#
|
2103
2105
|
#
|
@@ -3661,7 +3663,8 @@ module Aws::DynamoDB
|
|
3661
3663
|
# global secondary index.
|
3662
3664
|
#
|
3663
3665
|
# For current minimum and maximum provisioned throughput values, see
|
3664
|
-
# [
|
3666
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
3667
|
+
# Developer Guide*.
|
3665
3668
|
#
|
3666
3669
|
#
|
3667
3670
|
#
|
@@ -3795,7 +3798,8 @@ module Aws::DynamoDB
|
|
3795
3798
|
# global secondary index.
|
3796
3799
|
#
|
3797
3800
|
# For current minimum and maximum provisioned throughput values, see
|
3798
|
-
# [
|
3801
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
3802
|
+
# Developer Guide*.
|
3799
3803
|
#
|
3800
3804
|
#
|
3801
3805
|
#
|
@@ -4415,7 +4419,7 @@ module Aws::DynamoDB
|
|
4415
4419
|
# time; however, if the table or index specifications are complex,
|
4416
4420
|
# DynamoDB might temporarily reduce the number of concurrent operations.
|
4417
4421
|
#
|
4418
|
-
# There is a soft account
|
4422
|
+
# There is a soft account quota of 256 tables.
|
4419
4423
|
#
|
4420
4424
|
# @!attribute [rw] message
|
4421
4425
|
# Too many operations for a given subscriber.
|
@@ -4986,9 +4990,9 @@ module Aws::DynamoDB
|
|
4986
4990
|
# * `KEYS_ONLY` - Only the index and primary keys are projected into
|
4987
4991
|
# the index.
|
4988
4992
|
#
|
4989
|
-
# * `INCLUDE` -
|
4990
|
-
# the index
|
4991
|
-
#
|
4993
|
+
# * `INCLUDE` - In addition to the attributes described in
|
4994
|
+
# `KEYS_ONLY`, the secondary index will include other non-key
|
4995
|
+
# attributes that you specify.
|
4992
4996
|
#
|
4993
4997
|
# * `ALL` - All of the table attributes are projected into the index.
|
4994
4998
|
# @return [String]
|
@@ -5017,7 +5021,8 @@ module Aws::DynamoDB
|
|
5017
5021
|
# operation.
|
5018
5022
|
#
|
5019
5023
|
# For current minimum and maximum provisioned throughput values, see
|
5020
|
-
# [
|
5024
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
5025
|
+
# Developer Guide*.
|
5021
5026
|
#
|
5022
5027
|
#
|
5023
5028
|
#
|
@@ -5085,8 +5090,8 @@ module Aws::DynamoDB
|
|
5085
5090
|
# @!attribute [rw] number_of_decreases_today
|
5086
5091
|
# The number of provisioned throughput decreases for this table during
|
5087
5092
|
# this UTC calendar day. For current maximums on provisioned
|
5088
|
-
# throughput decreases, see [
|
5089
|
-
# Developer Guide*.
|
5093
|
+
# throughput decreases, see [Service, Account, and Table Quotas][1] in
|
5094
|
+
# the *Amazon DynamoDB Developer Guide*.
|
5090
5095
|
#
|
5091
5096
|
#
|
5092
5097
|
#
|
@@ -6257,6 +6262,16 @@ module Aws::DynamoDB
|
|
6257
6262
|
# * `DELETING` - The replica is being deleted.
|
6258
6263
|
#
|
6259
6264
|
# * `ACTIVE` - The replica is ready for use.
|
6265
|
+
#
|
6266
|
+
# * `REGION_DISABLED` - The replica is inaccessible because the AWS
|
6267
|
+
# Region has been disabled.
|
6268
|
+
#
|
6269
|
+
# <note markdown="1"> If the AWS Region remains inaccessible for more than 20 hours,
|
6270
|
+
# DynamoDB will remove this replica from the replication group. The
|
6271
|
+
# replica will not be deleted and replication will stop from and to
|
6272
|
+
# this region.
|
6273
|
+
#
|
6274
|
+
# </note>
|
6260
6275
|
# @return [String]
|
6261
6276
|
#
|
6262
6277
|
# @!attribute [rw] replica_status_description
|
@@ -6282,6 +6297,12 @@ module Aws::DynamoDB
|
|
6282
6297
|
# Replica-specific global secondary index settings.
|
6283
6298
|
# @return [Array<Types::ReplicaGlobalSecondaryIndexDescription>]
|
6284
6299
|
#
|
6300
|
+
# @!attribute [rw] replica_inaccessible_date_time
|
6301
|
+
# The time at which the replica was first detected as inaccessible. To
|
6302
|
+
# determine cause of inaccessibility check the `ReplicaStatus`
|
6303
|
+
# property.
|
6304
|
+
# @return [Time]
|
6305
|
+
#
|
6285
6306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaDescription AWS API Documentation
|
6286
6307
|
#
|
6287
6308
|
class ReplicaDescription < Struct.new(
|
@@ -6291,7 +6312,8 @@ module Aws::DynamoDB
|
|
6291
6312
|
:replica_status_percent_progress,
|
6292
6313
|
:kms_master_key_id,
|
6293
6314
|
:provisioned_throughput_override,
|
6294
|
-
:global_secondary_indexes
|
6315
|
+
:global_secondary_indexes,
|
6316
|
+
:replica_inaccessible_date_time)
|
6295
6317
|
SENSITIVE = []
|
6296
6318
|
include Aws::Structure
|
6297
6319
|
end
|
@@ -6813,8 +6835,8 @@ module Aws::DynamoDB
|
|
6813
6835
|
include Aws::Structure
|
6814
6836
|
end
|
6815
6837
|
|
6816
|
-
# Throughput exceeds the current throughput
|
6817
|
-
# Please contact AWS Support at [AWS Support][1] to request a
|
6838
|
+
# Throughput exceeds the current throughput quota for your account.
|
6839
|
+
# Please contact AWS Support at [AWS Support][1] to request a quota
|
6818
6840
|
# increase.
|
6819
6841
|
#
|
6820
6842
|
#
|
@@ -8086,9 +8108,9 @@ module Aws::DynamoDB
|
|
8086
8108
|
# * `KEYS_ONLY` - Only the index and primary keys are projected
|
8087
8109
|
# into the index.
|
8088
8110
|
#
|
8089
|
-
# * `INCLUDE` -
|
8090
|
-
#
|
8091
|
-
#
|
8111
|
+
# * `INCLUDE` - In addition to the attributes described in
|
8112
|
+
# `KEYS_ONLY`, the secondary index will include other non-key
|
8113
|
+
# attributes that you specify.
|
8092
8114
|
#
|
8093
8115
|
# * `ALL` - All of the table attributes are projected into the
|
8094
8116
|
# index.
|
@@ -9112,7 +9134,8 @@ module Aws::DynamoDB
|
|
9112
9134
|
# global secondary index.
|
9113
9135
|
#
|
9114
9136
|
# For current minimum and maximum provisioned throughput values, see
|
9115
|
-
# [
|
9137
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
9138
|
+
# Developer Guide*.
|
9116
9139
|
#
|
9117
9140
|
#
|
9118
9141
|
#
|
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.55.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: 2020-
|
11
|
+
date: 2020-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|