aws-sdk-dynamodb 1.68.0 → 1.72.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +74 -11
- data/lib/aws-sdk-dynamodb/client_api.rb +14 -0
- data/lib/aws-sdk-dynamodb/resource.rb +4 -0
- data/lib/aws-sdk-dynamodb/table.rb +12 -0
- data/lib/aws-sdk-dynamodb/types.rb +83 -10
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0ae31718a0b2d46c5a52ba9ab63b31ae5f64920ec35c791b0429ead01ca80ef
|
4
|
+
data.tar.gz: '058396cdc0515871050fea88f1a2d1d829fe511a3c539523521e7b2d507f00a1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2166f3374e7958567e203117297dd10d6258f7e0c36e9e157d62aa5ebe2fb7cc6e612abbc2ed497ee3712cbf00bf0bf0f818f67d35d2493d599515cd09272bab
|
7
|
+
data.tar.gz: ac2bbb93fae8fb18f14891916183ea24154e29d1eb38106d0d92c39612b3e8c886d5fd857aace1255988943f75a491da9e7c014704a759fd2076d724ec193bde
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.71.0 (2022-02-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation update for DynamoDB Java SDK.
|
13
|
+
|
14
|
+
1.70.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.69.0 (2021-12-01)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add support for Table Classes and introduce the Standard Infrequent Access table class.
|
23
|
+
|
4
24
|
1.68.0 (2021-11-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
require 'aws-sdk-dynamodb/plugins/extended_retries.rb'
|
@@ -76,6 +78,8 @@ module Aws::DynamoDB
|
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
77
79
|
add_plugin(Aws::Plugins::TransferEncoding)
|
78
80
|
add_plugin(Aws::Plugins::HttpChecksum)
|
81
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
82
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
79
83
|
add_plugin(Aws::Plugins::SignatureV4)
|
80
84
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
81
85
|
add_plugin(Aws::DynamoDB::Plugins::ExtendedRetries)
|
@@ -187,6 +191,10 @@ module Aws::DynamoDB
|
|
187
191
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
188
192
|
# a clock skew correction and retry requests with skewed client clocks.
|
189
193
|
#
|
194
|
+
# @option options [String] :defaults_mode ("legacy")
|
195
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
196
|
+
# accepted modes and the configuration defaults that are included.
|
197
|
+
#
|
190
198
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
191
199
|
# Set to true to disable SDK automatically adding host prefix
|
192
200
|
# to default service endpoint when available.
|
@@ -326,7 +334,7 @@ module Aws::DynamoDB
|
|
326
334
|
# seconds to wait when opening a HTTP session before raising a
|
327
335
|
# `Timeout::Error`.
|
328
336
|
#
|
329
|
-
# @option options [
|
337
|
+
# @option options [Float] :http_read_timeout (60) The default
|
330
338
|
# number of seconds to wait for response data. This value can
|
331
339
|
# safely be set per-request on the session.
|
332
340
|
#
|
@@ -342,6 +350,9 @@ module Aws::DynamoDB
|
|
342
350
|
# disables this behaviour. This value can safely be set per
|
343
351
|
# request on the session.
|
344
352
|
#
|
353
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
354
|
+
# in seconds.
|
355
|
+
#
|
345
356
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
346
357
|
# HTTP debug output will be sent to the `:logger`.
|
347
358
|
#
|
@@ -731,9 +742,13 @@ module Aws::DynamoDB
|
|
731
742
|
end
|
732
743
|
|
733
744
|
# The `BatchWriteItem` operation puts or deletes multiple items in one
|
734
|
-
# or more tables. A single call to `BatchWriteItem` can
|
735
|
-
#
|
736
|
-
#
|
745
|
+
# or more tables. A single call to `BatchWriteItem` can transmit up to
|
746
|
+
# 16MB of data over the network, consisting of up to 25 item put or
|
747
|
+
# delete operations. While individual items can be up to 400 KB once
|
748
|
+
# stored, it's important to note that an item's representation might
|
749
|
+
# be greater than 400KB while being sent in DynamoDB's JSON format for
|
750
|
+
# the API call. For more details on this distinction, see [Naming Rules
|
751
|
+
# and Data Types][1].
|
737
752
|
#
|
738
753
|
# <note markdown="1"> `BatchWriteItem` cannot update items. To update items, use the
|
739
754
|
# `UpdateItem` action.
|
@@ -763,7 +778,7 @@ module Aws::DynamoDB
|
|
763
778
|
# operation using exponential backoff, the individual requests in the
|
764
779
|
# batch are much more likely to succeed.
|
765
780
|
#
|
766
|
-
# For more information, see [Batch Operations and Error Handling][
|
781
|
+
# For more information, see [Batch Operations and Error Handling][2] in
|
767
782
|
# the *Amazon DynamoDB Developer Guide*.
|
768
783
|
#
|
769
784
|
# With `BatchWriteItem`, you can efficiently write or delete large
|
@@ -812,7 +827,8 @@ module Aws::DynamoDB
|
|
812
827
|
#
|
813
828
|
#
|
814
829
|
#
|
815
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
830
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
|
831
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#Programming.Errors.BatchOperations
|
816
832
|
#
|
817
833
|
# @option params [required, Hash<String,Array>] :request_items
|
818
834
|
# A map of one or more table names and, for each table, a list of
|
@@ -1136,6 +1152,8 @@ module Aws::DynamoDB
|
|
1136
1152
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
1137
1153
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1138
1154
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
1155
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1156
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
1139
1157
|
# resp.global_table_description.global_table_arn #=> String
|
1140
1158
|
# resp.global_table_description.creation_date_time #=> Time
|
1141
1159
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -1370,6 +1388,10 @@ module Aws::DynamoDB
|
|
1370
1388
|
#
|
1371
1389
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
1372
1390
|
#
|
1391
|
+
# @option params [String] :table_class
|
1392
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
1393
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
1394
|
+
#
|
1373
1395
|
# @return [Types::CreateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1374
1396
|
#
|
1375
1397
|
# * {Types::CreateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -1512,6 +1534,7 @@ module Aws::DynamoDB
|
|
1512
1534
|
# value: "TagValueString", # required
|
1513
1535
|
# },
|
1514
1536
|
# ],
|
1537
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1515
1538
|
# })
|
1516
1539
|
#
|
1517
1540
|
# @example Response structure
|
@@ -1581,6 +1604,8 @@ module Aws::DynamoDB
|
|
1581
1604
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
1582
1605
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1583
1606
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
1607
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1608
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
1584
1609
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
1585
1610
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
1586
1611
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -1592,6 +1617,8 @@ module Aws::DynamoDB
|
|
1592
1617
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
1593
1618
|
# resp.table_description.archival_summary.archival_reason #=> String
|
1594
1619
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
1620
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1621
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
1595
1622
|
#
|
1596
1623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTable AWS API Documentation
|
1597
1624
|
#
|
@@ -2076,6 +2103,8 @@ module Aws::DynamoDB
|
|
2076
2103
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2077
2104
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2078
2105
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
2106
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2107
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2079
2108
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
2080
2109
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
2081
2110
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -2087,6 +2116,8 @@ module Aws::DynamoDB
|
|
2087
2116
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
2088
2117
|
# resp.table_description.archival_summary.archival_reason #=> String
|
2089
2118
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
2119
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2120
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
2090
2121
|
#
|
2091
2122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DeleteTable AWS API Documentation
|
2092
2123
|
#
|
@@ -2370,6 +2401,8 @@ module Aws::DynamoDB
|
|
2370
2401
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
2371
2402
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2372
2403
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
2404
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2405
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
2373
2406
|
# resp.global_table_description.global_table_arn #=> String
|
2374
2407
|
# resp.global_table_description.creation_date_time #=> Time
|
2375
2408
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -2464,6 +2497,8 @@ module Aws::DynamoDB
|
|
2464
2497
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
|
2465
2498
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
|
2466
2499
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
2500
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2501
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
2467
2502
|
#
|
2468
2503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeGlobalTableSettings AWS API Documentation
|
2469
2504
|
#
|
@@ -2755,6 +2790,8 @@ module Aws::DynamoDB
|
|
2755
2790
|
# resp.table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2756
2791
|
# resp.table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2757
2792
|
# resp.table.replicas[0].replica_inaccessible_date_time #=> Time
|
2793
|
+
# resp.table.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2794
|
+
# resp.table.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2758
2795
|
# resp.table.restore_summary.source_backup_arn #=> String
|
2759
2796
|
# resp.table.restore_summary.source_table_arn #=> String
|
2760
2797
|
# resp.table.restore_summary.restore_date_time #=> Time
|
@@ -2766,6 +2803,8 @@ module Aws::DynamoDB
|
|
2766
2803
|
# resp.table.archival_summary.archival_date_time #=> Time
|
2767
2804
|
# resp.table.archival_summary.archival_reason #=> String
|
2768
2805
|
# resp.table.archival_summary.archival_backup_arn #=> String
|
2806
|
+
# resp.table.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2807
|
+
# resp.table.table_class_summary.last_update_date_time #=> Time
|
2769
2808
|
#
|
2770
2809
|
#
|
2771
2810
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4827,6 +4866,8 @@ module Aws::DynamoDB
|
|
4827
4866
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4828
4867
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4829
4868
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
4869
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4870
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
4830
4871
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
4831
4872
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
4832
4873
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -4838,6 +4879,8 @@ module Aws::DynamoDB
|
|
4838
4879
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
4839
4880
|
# resp.table_description.archival_summary.archival_reason #=> String
|
4840
4881
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
4882
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4883
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
4841
4884
|
#
|
4842
4885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableFromBackup AWS API Documentation
|
4843
4886
|
#
|
@@ -5050,6 +5093,8 @@ module Aws::DynamoDB
|
|
5050
5093
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
5051
5094
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
5052
5095
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
5096
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5097
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
5053
5098
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
5054
5099
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
5055
5100
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -5061,6 +5106,8 @@ module Aws::DynamoDB
|
|
5061
5106
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
5062
5107
|
# resp.table_description.archival_summary.archival_reason #=> String
|
5063
5108
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
5109
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5110
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
5064
5111
|
#
|
5065
5112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime AWS API Documentation
|
5066
5113
|
#
|
@@ -5955,10 +6002,10 @@ module Aws::DynamoDB
|
|
5955
6002
|
# index. CloudWatch Contributor Insights for DynamoDB graphs display the
|
5956
6003
|
# partition key and (if applicable) sort key of frequently accessed
|
5957
6004
|
# items and frequently throttled items in plaintext. If you require the
|
5958
|
-
# use of
|
5959
|
-
# partition key and sort key data with an
|
5960
|
-
# managed key, you should not enable
|
5961
|
-
# DynamoDB for this table.
|
6005
|
+
# use of Amazon Web Services Key Management Service (KMS) to encrypt
|
6006
|
+
# this table’s partition key and sort key data with an Amazon Web
|
6007
|
+
# Services managed key or customer managed key, you should not enable
|
6008
|
+
# CloudWatch Contributor Insights for DynamoDB for this table.
|
5962
6009
|
#
|
5963
6010
|
# @option params [required, String] :table_name
|
5964
6011
|
# The name of the table.
|
@@ -6061,6 +6108,8 @@ module Aws::DynamoDB
|
|
6061
6108
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
6062
6109
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6063
6110
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
6111
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6112
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
6064
6113
|
# resp.global_table_description.global_table_arn #=> String
|
6065
6114
|
# resp.global_table_description.creation_date_time #=> Time
|
6066
6115
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -6201,6 +6250,7 @@ module Aws::DynamoDB
|
|
6201
6250
|
# },
|
6202
6251
|
# },
|
6203
6252
|
# ],
|
6253
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6204
6254
|
# },
|
6205
6255
|
# ],
|
6206
6256
|
# })
|
@@ -6260,6 +6310,8 @@ module Aws::DynamoDB
|
|
6260
6310
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
|
6261
6311
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
|
6262
6312
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
6313
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6314
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
6263
6315
|
#
|
6264
6316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateGlobalTableSettings AWS API Documentation
|
6265
6317
|
#
|
@@ -6765,6 +6817,10 @@ module Aws::DynamoDB
|
|
6765
6817
|
#
|
6766
6818
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
6767
6819
|
#
|
6820
|
+
# @option params [String] :table_class
|
6821
|
+
# The table class of the table to be updated. Valid values are
|
6822
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
6823
|
+
#
|
6768
6824
|
# @return [Types::UpdateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6769
6825
|
#
|
6770
6826
|
# * {Types::UpdateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -6890,6 +6946,7 @@ module Aws::DynamoDB
|
|
6890
6946
|
# },
|
6891
6947
|
# },
|
6892
6948
|
# ],
|
6949
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6893
6950
|
# },
|
6894
6951
|
# update: {
|
6895
6952
|
# region_name: "RegionName", # required
|
@@ -6905,12 +6962,14 @@ module Aws::DynamoDB
|
|
6905
6962
|
# },
|
6906
6963
|
# },
|
6907
6964
|
# ],
|
6965
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6908
6966
|
# },
|
6909
6967
|
# delete: {
|
6910
6968
|
# region_name: "RegionName", # required
|
6911
6969
|
# },
|
6912
6970
|
# },
|
6913
6971
|
# ],
|
6972
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6914
6973
|
# })
|
6915
6974
|
#
|
6916
6975
|
# @example Response structure
|
@@ -6980,6 +7039,8 @@ module Aws::DynamoDB
|
|
6980
7039
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
6981
7040
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6982
7041
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
7042
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7043
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
6983
7044
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
6984
7045
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
6985
7046
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -6991,6 +7052,8 @@ module Aws::DynamoDB
|
|
6991
7052
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
6992
7053
|
# resp.table_description.archival_summary.archival_reason #=> String
|
6993
7054
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
7055
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7056
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
6994
7057
|
#
|
6995
7058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTable AWS API Documentation
|
6996
7059
|
#
|
@@ -7257,7 +7320,7 @@ module Aws::DynamoDB
|
|
7257
7320
|
params: params,
|
7258
7321
|
config: config)
|
7259
7322
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7260
|
-
context[:gem_version] = '1.
|
7323
|
+
context[:gem_version] = '1.72.0'
|
7261
7324
|
Seahorse::Client::Request.new(handlers, context)
|
7262
7325
|
end
|
7263
7326
|
|
@@ -370,6 +370,8 @@ module Aws::DynamoDB
|
|
370
370
|
TableAlreadyExistsException = Shapes::StructureShape.new(name: 'TableAlreadyExistsException')
|
371
371
|
TableArn = Shapes::StringShape.new(name: 'TableArn')
|
372
372
|
TableAutoScalingDescription = Shapes::StructureShape.new(name: 'TableAutoScalingDescription')
|
373
|
+
TableClass = Shapes::StringShape.new(name: 'TableClass')
|
374
|
+
TableClassSummary = Shapes::StructureShape.new(name: 'TableClassSummary')
|
373
375
|
TableCreationDateTime = Shapes::TimestampShape.new(name: 'TableCreationDateTime')
|
374
376
|
TableDescription = Shapes::StructureShape.new(name: 'TableDescription')
|
375
377
|
TableId = Shapes::StringShape.new(name: 'TableId')
|
@@ -670,6 +672,7 @@ module Aws::DynamoDB
|
|
670
672
|
CreateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
671
673
|
CreateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
672
674
|
CreateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
|
675
|
+
CreateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
|
673
676
|
CreateReplicationGroupMemberAction.struct_class = Types::CreateReplicationGroupMemberAction
|
674
677
|
|
675
678
|
CreateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, required: true, location_name: "AttributeDefinitions"))
|
@@ -682,6 +685,7 @@ module Aws::DynamoDB
|
|
682
685
|
CreateTableInput.add_member(:stream_specification, Shapes::ShapeRef.new(shape: StreamSpecification, location_name: "StreamSpecification"))
|
683
686
|
CreateTableInput.add_member(:sse_specification, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecification"))
|
684
687
|
CreateTableInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
688
|
+
CreateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
685
689
|
CreateTableInput.struct_class = Types::CreateTableInput
|
686
690
|
|
687
691
|
CreateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
|
@@ -1301,6 +1305,7 @@ module Aws::DynamoDB
|
|
1301
1305
|
ReplicaDescription.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
1302
1306
|
ReplicaDescription.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexDescriptionList, location_name: "GlobalSecondaryIndexes"))
|
1303
1307
|
ReplicaDescription.add_member(:replica_inaccessible_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "ReplicaInaccessibleDateTime"))
|
1308
|
+
ReplicaDescription.add_member(:replica_table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "ReplicaTableClassSummary"))
|
1304
1309
|
ReplicaDescription.struct_class = Types::ReplicaDescription
|
1305
1310
|
|
1306
1311
|
ReplicaDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaDescription)
|
@@ -1361,6 +1366,7 @@ module Aws::DynamoDB
|
|
1361
1366
|
ReplicaSettingsDescription.add_member(:replica_provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: NonNegativeLongObject, location_name: "ReplicaProvisionedWriteCapacityUnits"))
|
1362
1367
|
ReplicaSettingsDescription.add_member(:replica_provisioned_write_capacity_auto_scaling_settings, Shapes::ShapeRef.new(shape: AutoScalingSettingsDescription, location_name: "ReplicaProvisionedWriteCapacityAutoScalingSettings"))
|
1363
1368
|
ReplicaSettingsDescription.add_member(:replica_global_secondary_index_settings, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexSettingsDescriptionList, location_name: "ReplicaGlobalSecondaryIndexSettings"))
|
1369
|
+
ReplicaSettingsDescription.add_member(:replica_table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "ReplicaTableClassSummary"))
|
1364
1370
|
ReplicaSettingsDescription.struct_class = Types::ReplicaSettingsDescription
|
1365
1371
|
|
1366
1372
|
ReplicaSettingsDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaSettingsDescription)
|
@@ -1369,6 +1375,7 @@ module Aws::DynamoDB
|
|
1369
1375
|
ReplicaSettingsUpdate.add_member(:replica_provisioned_read_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "ReplicaProvisionedReadCapacityUnits"))
|
1370
1376
|
ReplicaSettingsUpdate.add_member(:replica_provisioned_read_capacity_auto_scaling_settings_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate"))
|
1371
1377
|
ReplicaSettingsUpdate.add_member(:replica_global_secondary_index_settings_update, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexSettingsUpdateList, location_name: "ReplicaGlobalSecondaryIndexSettingsUpdate"))
|
1378
|
+
ReplicaSettingsUpdate.add_member(:replica_table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "ReplicaTableClass"))
|
1372
1379
|
ReplicaSettingsUpdate.struct_class = Types::ReplicaSettingsUpdate
|
1373
1380
|
|
1374
1381
|
ReplicaSettingsUpdateList.member = Shapes::ShapeRef.new(shape: ReplicaSettingsUpdate)
|
@@ -1499,6 +1506,10 @@ module Aws::DynamoDB
|
|
1499
1506
|
TableAutoScalingDescription.add_member(:replicas, Shapes::ShapeRef.new(shape: ReplicaAutoScalingDescriptionList, location_name: "Replicas"))
|
1500
1507
|
TableAutoScalingDescription.struct_class = Types::TableAutoScalingDescription
|
1501
1508
|
|
1509
|
+
TableClassSummary.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
1510
|
+
TableClassSummary.add_member(:last_update_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastUpdateDateTime"))
|
1511
|
+
TableClassSummary.struct_class = Types::TableClassSummary
|
1512
|
+
|
1502
1513
|
TableDescription.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
|
1503
1514
|
TableDescription.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
|
1504
1515
|
TableDescription.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, location_name: "KeySchema"))
|
@@ -1520,6 +1531,7 @@ module Aws::DynamoDB
|
|
1520
1531
|
TableDescription.add_member(:restore_summary, Shapes::ShapeRef.new(shape: RestoreSummary, location_name: "RestoreSummary"))
|
1521
1532
|
TableDescription.add_member(:sse_description, Shapes::ShapeRef.new(shape: SSEDescription, location_name: "SSEDescription"))
|
1522
1533
|
TableDescription.add_member(:archival_summary, Shapes::ShapeRef.new(shape: ArchivalSummary, location_name: "ArchivalSummary"))
|
1534
|
+
TableDescription.add_member(:table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "TableClassSummary"))
|
1523
1535
|
TableDescription.struct_class = Types::TableDescription
|
1524
1536
|
|
1525
1537
|
TableInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -1667,6 +1679,7 @@ module Aws::DynamoDB
|
|
1667
1679
|
UpdateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
1668
1680
|
UpdateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
1669
1681
|
UpdateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
|
1682
|
+
UpdateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
|
1670
1683
|
UpdateReplicationGroupMemberAction.struct_class = Types::UpdateReplicationGroupMemberAction
|
1671
1684
|
|
1672
1685
|
UpdateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
|
@@ -1677,6 +1690,7 @@ module Aws::DynamoDB
|
|
1677
1690
|
UpdateTableInput.add_member(:stream_specification, Shapes::ShapeRef.new(shape: StreamSpecification, location_name: "StreamSpecification"))
|
1678
1691
|
UpdateTableInput.add_member(:sse_specification, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecification"))
|
1679
1692
|
UpdateTableInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicationGroupUpdateList, location_name: "ReplicaUpdates"))
|
1693
|
+
UpdateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
1680
1694
|
UpdateTableInput.struct_class = Types::UpdateTableInput
|
1681
1695
|
|
1682
1696
|
UpdateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
|
@@ -315,6 +315,7 @@ module Aws::DynamoDB
|
|
315
315
|
# value: "TagValueString", # required
|
316
316
|
# },
|
317
317
|
# ],
|
318
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
318
319
|
# })
|
319
320
|
# @param [Hash] options ({})
|
320
321
|
# @option options [required, Array<Types::AttributeDefinition>] :attribute_definitions
|
@@ -508,6 +509,9 @@ module Aws::DynamoDB
|
|
508
509
|
#
|
509
510
|
#
|
510
511
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
512
|
+
# @option options [String] :table_class
|
513
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
514
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
511
515
|
# @return [Table]
|
512
516
|
def create_table(options = {})
|
513
517
|
resp = @client.create_table(options)
|
@@ -356,6 +356,12 @@ module Aws::DynamoDB
|
|
356
356
|
data[:archival_summary]
|
357
357
|
end
|
358
358
|
|
359
|
+
# Contains details of the table class.
|
360
|
+
# @return [Types::TableClassSummary]
|
361
|
+
def table_class_summary
|
362
|
+
data[:table_class_summary]
|
363
|
+
end
|
364
|
+
|
359
365
|
# @!endgroup
|
360
366
|
|
361
367
|
# @return [Client]
|
@@ -1797,6 +1803,7 @@ module Aws::DynamoDB
|
|
1797
1803
|
# },
|
1798
1804
|
# },
|
1799
1805
|
# ],
|
1806
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1800
1807
|
# },
|
1801
1808
|
# update: {
|
1802
1809
|
# region_name: "RegionName", # required
|
@@ -1812,12 +1819,14 @@ module Aws::DynamoDB
|
|
1812
1819
|
# },
|
1813
1820
|
# },
|
1814
1821
|
# ],
|
1822
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1815
1823
|
# },
|
1816
1824
|
# delete: {
|
1817
1825
|
# region_name: "RegionName", # required
|
1818
1826
|
# },
|
1819
1827
|
# },
|
1820
1828
|
# ],
|
1829
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1821
1830
|
# })
|
1822
1831
|
# @param [Hash] options ({})
|
1823
1832
|
# @option options [Array<Types::AttributeDefinition>] :attribute_definitions
|
@@ -1890,6 +1899,9 @@ module Aws::DynamoDB
|
|
1890
1899
|
#
|
1891
1900
|
#
|
1892
1901
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
1902
|
+
# @option options [String] :table_class
|
1903
|
+
# The table class of the table to be updated. Valid values are
|
1904
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
1893
1905
|
# @return [Table]
|
1894
1906
|
def update(options = {})
|
1895
1907
|
options = options.merge(table_name: @name)
|
@@ -1963,6 +1963,7 @@ module Aws::DynamoDB
|
|
1963
1963
|
# },
|
1964
1964
|
# },
|
1965
1965
|
# ],
|
1966
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1966
1967
|
# }
|
1967
1968
|
#
|
1968
1969
|
# @!attribute [rw] region_name
|
@@ -1986,13 +1987,19 @@ module Aws::DynamoDB
|
|
1986
1987
|
# Replica-specific global secondary index settings.
|
1987
1988
|
# @return [Array<Types::ReplicaGlobalSecondaryIndex>]
|
1988
1989
|
#
|
1990
|
+
# @!attribute [rw] table_class_override
|
1991
|
+
# Replica-specific table class. If not specified, uses the source
|
1992
|
+
# table's table class.
|
1993
|
+
# @return [String]
|
1994
|
+
#
|
1989
1995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateReplicationGroupMemberAction AWS API Documentation
|
1990
1996
|
#
|
1991
1997
|
class CreateReplicationGroupMemberAction < Struct.new(
|
1992
1998
|
:region_name,
|
1993
1999
|
:kms_master_key_id,
|
1994
2000
|
:provisioned_throughput_override,
|
1995
|
-
:global_secondary_indexes
|
2001
|
+
:global_secondary_indexes,
|
2002
|
+
:table_class_override)
|
1996
2003
|
SENSITIVE = []
|
1997
2004
|
include Aws::Structure
|
1998
2005
|
end
|
@@ -2070,6 +2077,7 @@ module Aws::DynamoDB
|
|
2070
2077
|
# value: "TagValueString", # required
|
2071
2078
|
# },
|
2072
2079
|
# ],
|
2080
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
2073
2081
|
# }
|
2074
2082
|
#
|
2075
2083
|
# @!attribute [rw] attribute_definitions
|
@@ -2285,6 +2293,11 @@ module Aws::DynamoDB
|
|
2285
2293
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
2286
2294
|
# @return [Array<Types::Tag>]
|
2287
2295
|
#
|
2296
|
+
# @!attribute [rw] table_class
|
2297
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
2298
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
2299
|
+
# @return [String]
|
2300
|
+
#
|
2288
2301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTableInput AWS API Documentation
|
2289
2302
|
#
|
2290
2303
|
class CreateTableInput < Struct.new(
|
@@ -2297,7 +2310,8 @@ module Aws::DynamoDB
|
|
2297
2310
|
:provisioned_throughput,
|
2298
2311
|
:stream_specification,
|
2299
2312
|
:sse_specification,
|
2300
|
-
:tags
|
2313
|
+
:tags,
|
2314
|
+
:table_class)
|
2301
2315
|
SENSITIVE = []
|
2302
2316
|
include Aws::Structure
|
2303
2317
|
end
|
@@ -5726,8 +5740,6 @@ module Aws::DynamoDB
|
|
5726
5740
|
# @!attribute [rw] point_in_time_recovery_status
|
5727
5741
|
# The current state of point in time recovery:
|
5728
5742
|
#
|
5729
|
-
# * `ENABLING` - Point in time recovery is being enabled.
|
5730
|
-
#
|
5731
5743
|
# * `ENABLED` - Point in time recovery is enabled.
|
5732
5744
|
#
|
5733
5745
|
# * `DISABLED` - Point in time recovery is disabled.
|
@@ -7131,6 +7143,10 @@ module Aws::DynamoDB
|
|
7131
7143
|
# property.
|
7132
7144
|
# @return [Time]
|
7133
7145
|
#
|
7146
|
+
# @!attribute [rw] replica_table_class_summary
|
7147
|
+
# Contains details of the table class.
|
7148
|
+
# @return [Types::TableClassSummary]
|
7149
|
+
#
|
7134
7150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaDescription AWS API Documentation
|
7135
7151
|
#
|
7136
7152
|
class ReplicaDescription < Struct.new(
|
@@ -7141,7 +7157,8 @@ module Aws::DynamoDB
|
|
7141
7157
|
:kms_master_key_id,
|
7142
7158
|
:provisioned_throughput_override,
|
7143
7159
|
:global_secondary_indexes,
|
7144
|
-
:replica_inaccessible_date_time
|
7160
|
+
:replica_inaccessible_date_time,
|
7161
|
+
:replica_table_class_summary)
|
7145
7162
|
SENSITIVE = []
|
7146
7163
|
include Aws::Structure
|
7147
7164
|
end
|
@@ -7453,6 +7470,10 @@ module Aws::DynamoDB
|
|
7453
7470
|
# Replica global secondary index settings for the global table.
|
7454
7471
|
# @return [Array<Types::ReplicaGlobalSecondaryIndexSettingsDescription>]
|
7455
7472
|
#
|
7473
|
+
# @!attribute [rw] replica_table_class_summary
|
7474
|
+
# Contains details of the table class.
|
7475
|
+
# @return [Types::TableClassSummary]
|
7476
|
+
#
|
7456
7477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaSettingsDescription AWS API Documentation
|
7457
7478
|
#
|
7458
7479
|
class ReplicaSettingsDescription < Struct.new(
|
@@ -7463,7 +7484,8 @@ module Aws::DynamoDB
|
|
7463
7484
|
:replica_provisioned_read_capacity_auto_scaling_settings,
|
7464
7485
|
:replica_provisioned_write_capacity_units,
|
7465
7486
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
7466
|
-
:replica_global_secondary_index_settings
|
7487
|
+
:replica_global_secondary_index_settings,
|
7488
|
+
:replica_table_class_summary)
|
7467
7489
|
SENSITIVE = []
|
7468
7490
|
include Aws::Structure
|
7469
7491
|
end
|
@@ -7513,6 +7535,7 @@ module Aws::DynamoDB
|
|
7513
7535
|
# },
|
7514
7536
|
# },
|
7515
7537
|
# ],
|
7538
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7516
7539
|
# }
|
7517
7540
|
#
|
7518
7541
|
# @!attribute [rw] region_name
|
@@ -7540,13 +7563,19 @@ module Aws::DynamoDB
|
|
7540
7563
|
# table that will be modified.
|
7541
7564
|
# @return [Array<Types::ReplicaGlobalSecondaryIndexSettingsUpdate>]
|
7542
7565
|
#
|
7566
|
+
# @!attribute [rw] replica_table_class
|
7567
|
+
# Replica-specific table class. If not specified, uses the source
|
7568
|
+
# table's table class.
|
7569
|
+
# @return [String]
|
7570
|
+
#
|
7543
7571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaSettingsUpdate AWS API Documentation
|
7544
7572
|
#
|
7545
7573
|
class ReplicaSettingsUpdate < Struct.new(
|
7546
7574
|
:region_name,
|
7547
7575
|
:replica_provisioned_read_capacity_units,
|
7548
7576
|
:replica_provisioned_read_capacity_auto_scaling_settings_update,
|
7549
|
-
:replica_global_secondary_index_settings_update
|
7577
|
+
:replica_global_secondary_index_settings_update,
|
7578
|
+
:replica_table_class)
|
7550
7579
|
SENSITIVE = []
|
7551
7580
|
include Aws::Structure
|
7552
7581
|
end
|
@@ -7620,6 +7649,7 @@ module Aws::DynamoDB
|
|
7620
7649
|
# },
|
7621
7650
|
# },
|
7622
7651
|
# ],
|
7652
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7623
7653
|
# },
|
7624
7654
|
# update: {
|
7625
7655
|
# region_name: "RegionName", # required
|
@@ -7635,6 +7665,7 @@ module Aws::DynamoDB
|
|
7635
7665
|
# },
|
7636
7666
|
# },
|
7637
7667
|
# ],
|
7668
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7638
7669
|
# },
|
7639
7670
|
# delete: {
|
7640
7671
|
# region_name: "RegionName", # required
|
@@ -8718,6 +8749,26 @@ module Aws::DynamoDB
|
|
8718
8749
|
include Aws::Structure
|
8719
8750
|
end
|
8720
8751
|
|
8752
|
+
# Contains details of the table class.
|
8753
|
+
#
|
8754
|
+
# @!attribute [rw] table_class
|
8755
|
+
# The table class of the specified table. Valid values are `STANDARD`
|
8756
|
+
# and `STANDARD_INFREQUENT_ACCESS`.
|
8757
|
+
# @return [String]
|
8758
|
+
#
|
8759
|
+
# @!attribute [rw] last_update_date_time
|
8760
|
+
# The date and time at which the table class was last updated.
|
8761
|
+
# @return [Time]
|
8762
|
+
#
|
8763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableClassSummary AWS API Documentation
|
8764
|
+
#
|
8765
|
+
class TableClassSummary < Struct.new(
|
8766
|
+
:table_class,
|
8767
|
+
:last_update_date_time)
|
8768
|
+
SENSITIVE = []
|
8769
|
+
include Aws::Structure
|
8770
|
+
end
|
8771
|
+
|
8721
8772
|
# Represents the properties of a table.
|
8722
8773
|
#
|
8723
8774
|
# @!attribute [rw] attribute_definitions
|
@@ -9007,6 +9058,10 @@ module Aws::DynamoDB
|
|
9007
9058
|
# Contains information about the table archive.
|
9008
9059
|
# @return [Types::ArchivalSummary]
|
9009
9060
|
#
|
9061
|
+
# @!attribute [rw] table_class_summary
|
9062
|
+
# Contains details of the table class.
|
9063
|
+
# @return [Types::TableClassSummary]
|
9064
|
+
#
|
9010
9065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableDescription AWS API Documentation
|
9011
9066
|
#
|
9012
9067
|
class TableDescription < Struct.new(
|
@@ -9030,7 +9085,8 @@ module Aws::DynamoDB
|
|
9030
9085
|
:replicas,
|
9031
9086
|
:restore_summary,
|
9032
9087
|
:sse_description,
|
9033
|
-
:archival_summary
|
9088
|
+
:archival_summary,
|
9089
|
+
:table_class_summary)
|
9034
9090
|
SENSITIVE = []
|
9035
9091
|
include Aws::Structure
|
9036
9092
|
end
|
@@ -10108,6 +10164,7 @@ module Aws::DynamoDB
|
|
10108
10164
|
# },
|
10109
10165
|
# },
|
10110
10166
|
# ],
|
10167
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10111
10168
|
# },
|
10112
10169
|
# ],
|
10113
10170
|
# }
|
@@ -10621,6 +10678,7 @@ module Aws::DynamoDB
|
|
10621
10678
|
# },
|
10622
10679
|
# },
|
10623
10680
|
# ],
|
10681
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10624
10682
|
# }
|
10625
10683
|
#
|
10626
10684
|
# @!attribute [rw] region_name
|
@@ -10644,13 +10702,19 @@ module Aws::DynamoDB
|
|
10644
10702
|
# Replica-specific global secondary index settings.
|
10645
10703
|
# @return [Array<Types::ReplicaGlobalSecondaryIndex>]
|
10646
10704
|
#
|
10705
|
+
# @!attribute [rw] table_class_override
|
10706
|
+
# Replica-specific table class. If not specified, uses the source
|
10707
|
+
# table's table class.
|
10708
|
+
# @return [String]
|
10709
|
+
#
|
10647
10710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateReplicationGroupMemberAction AWS API Documentation
|
10648
10711
|
#
|
10649
10712
|
class UpdateReplicationGroupMemberAction < Struct.new(
|
10650
10713
|
:region_name,
|
10651
10714
|
:kms_master_key_id,
|
10652
10715
|
:provisioned_throughput_override,
|
10653
|
-
:global_secondary_indexes
|
10716
|
+
:global_secondary_indexes,
|
10717
|
+
:table_class_override)
|
10654
10718
|
SENSITIVE = []
|
10655
10719
|
include Aws::Structure
|
10656
10720
|
end
|
@@ -10729,6 +10793,7 @@ module Aws::DynamoDB
|
|
10729
10793
|
# },
|
10730
10794
|
# },
|
10731
10795
|
# ],
|
10796
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10732
10797
|
# },
|
10733
10798
|
# update: {
|
10734
10799
|
# region_name: "RegionName", # required
|
@@ -10744,12 +10809,14 @@ module Aws::DynamoDB
|
|
10744
10809
|
# },
|
10745
10810
|
# },
|
10746
10811
|
# ],
|
10812
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10747
10813
|
# },
|
10748
10814
|
# delete: {
|
10749
10815
|
# region_name: "RegionName", # required
|
10750
10816
|
# },
|
10751
10817
|
# },
|
10752
10818
|
# ],
|
10819
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10753
10820
|
# }
|
10754
10821
|
#
|
10755
10822
|
# @!attribute [rw] attribute_definitions
|
@@ -10840,6 +10907,11 @@ module Aws::DynamoDB
|
|
10840
10907
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
10841
10908
|
# @return [Array<Types::ReplicationGroupUpdate>]
|
10842
10909
|
#
|
10910
|
+
# @!attribute [rw] table_class
|
10911
|
+
# The table class of the table to be updated. Valid values are
|
10912
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
10913
|
+
# @return [String]
|
10914
|
+
#
|
10843
10915
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTableInput AWS API Documentation
|
10844
10916
|
#
|
10845
10917
|
class UpdateTableInput < Struct.new(
|
@@ -10850,7 +10922,8 @@ module Aws::DynamoDB
|
|
10850
10922
|
:global_secondary_index_updates,
|
10851
10923
|
:stream_specification,
|
10852
10924
|
:sse_specification,
|
10853
|
-
:replica_updates
|
10925
|
+
:replica_updates,
|
10926
|
+
:table_class)
|
10854
10927
|
SENSITIVE = []
|
10855
10928
|
include Aws::Structure
|
10856
10929
|
end
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.72.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:
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|