aws-sdk-dynamodb 1.67.0 → 1.71.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +75 -12
- 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: d7f505e912836b001b782b6a2511a5918ea5f7c889719f67725cefdd692d587e
|
4
|
+
data.tar.gz: e2411a26dc0de46c3f02bed05cd8d56b0f6e7981756757d04f09b71ebd892422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a80325166dcd65a4292e6980e9d4b036b72c8aff952534172c900ce77f162df692be1e53c3828c3f35186e4b64bda1572c5d4f50f4f9d5fb1124568734ec45fe
|
7
|
+
data.tar.gz: ee4b167a2a261ef17cffa0fc5668b3362d08a899ba8849651c6d6b707882cdbdb2bfb445855760e1204a9bcd9da899d548694e0a2f75a067ababcefc0c84fc9d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2022-02-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation update for DynamoDB Java SDK.
|
8
|
+
|
9
|
+
1.70.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.69.0 (2021-12-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add support for Table Classes and introduce the Standard Infrequent Access table class.
|
18
|
+
|
19
|
+
1.68.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.67.0 (2021-11-23)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -27,6 +27,7 @@ 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'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
33
|
require 'aws-sdk-dynamodb/plugins/extended_retries.rb'
|
@@ -76,6 +77,7 @@ module Aws::DynamoDB
|
|
76
77
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
77
78
|
add_plugin(Aws::Plugins::TransferEncoding)
|
78
79
|
add_plugin(Aws::Plugins::HttpChecksum)
|
80
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::SignatureV4)
|
80
82
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
81
83
|
add_plugin(Aws::DynamoDB::Plugins::ExtendedRetries)
|
@@ -125,7 +127,9 @@ module Aws::DynamoDB
|
|
125
127
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
126
128
|
# are very aggressive. Construct and pass an instance of
|
127
129
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
128
|
-
# enable retries and extended timeouts.
|
130
|
+
# enable retries and extended timeouts. Instance profile credential
|
131
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
132
|
+
# to true.
|
129
133
|
#
|
130
134
|
# @option options [required, String] :region
|
131
135
|
# The AWS region to connect to. The configured `:region` is
|
@@ -185,6 +189,10 @@ module Aws::DynamoDB
|
|
185
189
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
186
190
|
# a clock skew correction and retry requests with skewed client clocks.
|
187
191
|
#
|
192
|
+
# @option options [String] :defaults_mode ("legacy")
|
193
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
194
|
+
# accepted modes and the configuration defaults that are included.
|
195
|
+
#
|
188
196
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
189
197
|
# Set to true to disable SDK automatically adding host prefix
|
190
198
|
# to default service endpoint when available.
|
@@ -324,7 +332,7 @@ module Aws::DynamoDB
|
|
324
332
|
# seconds to wait when opening a HTTP session before raising a
|
325
333
|
# `Timeout::Error`.
|
326
334
|
#
|
327
|
-
# @option options [
|
335
|
+
# @option options [Float] :http_read_timeout (60) The default
|
328
336
|
# number of seconds to wait for response data. This value can
|
329
337
|
# safely be set per-request on the session.
|
330
338
|
#
|
@@ -340,6 +348,9 @@ module Aws::DynamoDB
|
|
340
348
|
# disables this behaviour. This value can safely be set per
|
341
349
|
# request on the session.
|
342
350
|
#
|
351
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
352
|
+
# in seconds.
|
353
|
+
#
|
343
354
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
344
355
|
# HTTP debug output will be sent to the `:logger`.
|
345
356
|
#
|
@@ -729,9 +740,13 @@ module Aws::DynamoDB
|
|
729
740
|
end
|
730
741
|
|
731
742
|
# The `BatchWriteItem` operation puts or deletes multiple items in one
|
732
|
-
# or more tables. A single call to `BatchWriteItem` can
|
733
|
-
#
|
734
|
-
#
|
743
|
+
# or more tables. A single call to `BatchWriteItem` can transmit up to
|
744
|
+
# 16MB of data over the network, consisting of up to 25 item put or
|
745
|
+
# delete operations. While individual items can be up to 400 KB once
|
746
|
+
# stored, it's important to note that an item's representation might
|
747
|
+
# be greater than 400KB while being sent in DynamoDB's JSON format for
|
748
|
+
# the API call. For more details on this distinction, see [Naming Rules
|
749
|
+
# and Data Types][1].
|
735
750
|
#
|
736
751
|
# <note markdown="1"> `BatchWriteItem` cannot update items. To update items, use the
|
737
752
|
# `UpdateItem` action.
|
@@ -761,7 +776,7 @@ module Aws::DynamoDB
|
|
761
776
|
# operation using exponential backoff, the individual requests in the
|
762
777
|
# batch are much more likely to succeed.
|
763
778
|
#
|
764
|
-
# For more information, see [Batch Operations and Error Handling][
|
779
|
+
# For more information, see [Batch Operations and Error Handling][2] in
|
765
780
|
# the *Amazon DynamoDB Developer Guide*.
|
766
781
|
#
|
767
782
|
# With `BatchWriteItem`, you can efficiently write or delete large
|
@@ -810,7 +825,8 @@ module Aws::DynamoDB
|
|
810
825
|
#
|
811
826
|
#
|
812
827
|
#
|
813
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
828
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
|
829
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#Programming.Errors.BatchOperations
|
814
830
|
#
|
815
831
|
# @option params [required, Hash<String,Array>] :request_items
|
816
832
|
# A map of one or more table names and, for each table, a list of
|
@@ -1134,6 +1150,8 @@ module Aws::DynamoDB
|
|
1134
1150
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
1135
1151
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1136
1152
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
1153
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1154
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
1137
1155
|
# resp.global_table_description.global_table_arn #=> String
|
1138
1156
|
# resp.global_table_description.creation_date_time #=> Time
|
1139
1157
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -1368,6 +1386,10 @@ module Aws::DynamoDB
|
|
1368
1386
|
#
|
1369
1387
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
1370
1388
|
#
|
1389
|
+
# @option params [String] :table_class
|
1390
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
1391
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
1392
|
+
#
|
1371
1393
|
# @return [Types::CreateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1372
1394
|
#
|
1373
1395
|
# * {Types::CreateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -1510,6 +1532,7 @@ module Aws::DynamoDB
|
|
1510
1532
|
# value: "TagValueString", # required
|
1511
1533
|
# },
|
1512
1534
|
# ],
|
1535
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1513
1536
|
# })
|
1514
1537
|
#
|
1515
1538
|
# @example Response structure
|
@@ -1579,6 +1602,8 @@ module Aws::DynamoDB
|
|
1579
1602
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
1580
1603
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1581
1604
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
1605
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1606
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
1582
1607
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
1583
1608
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
1584
1609
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -1590,6 +1615,8 @@ module Aws::DynamoDB
|
|
1590
1615
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
1591
1616
|
# resp.table_description.archival_summary.archival_reason #=> String
|
1592
1617
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
1618
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1619
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
1593
1620
|
#
|
1594
1621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTable AWS API Documentation
|
1595
1622
|
#
|
@@ -2074,6 +2101,8 @@ module Aws::DynamoDB
|
|
2074
2101
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2075
2102
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2076
2103
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
2104
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2105
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2077
2106
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
2078
2107
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
2079
2108
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -2085,6 +2114,8 @@ module Aws::DynamoDB
|
|
2085
2114
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
2086
2115
|
# resp.table_description.archival_summary.archival_reason #=> String
|
2087
2116
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
2117
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2118
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
2088
2119
|
#
|
2089
2120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DeleteTable AWS API Documentation
|
2090
2121
|
#
|
@@ -2368,6 +2399,8 @@ module Aws::DynamoDB
|
|
2368
2399
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
2369
2400
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2370
2401
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
2402
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2403
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
2371
2404
|
# resp.global_table_description.global_table_arn #=> String
|
2372
2405
|
# resp.global_table_description.creation_date_time #=> Time
|
2373
2406
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -2462,6 +2495,8 @@ module Aws::DynamoDB
|
|
2462
2495
|
# 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
|
2463
2496
|
# 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
|
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.target_value #=> Float
|
2498
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2499
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
2465
2500
|
#
|
2466
2501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeGlobalTableSettings AWS API Documentation
|
2467
2502
|
#
|
@@ -2753,6 +2788,8 @@ module Aws::DynamoDB
|
|
2753
2788
|
# resp.table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2754
2789
|
# resp.table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2755
2790
|
# resp.table.replicas[0].replica_inaccessible_date_time #=> Time
|
2791
|
+
# resp.table.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2792
|
+
# resp.table.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2756
2793
|
# resp.table.restore_summary.source_backup_arn #=> String
|
2757
2794
|
# resp.table.restore_summary.source_table_arn #=> String
|
2758
2795
|
# resp.table.restore_summary.restore_date_time #=> Time
|
@@ -2764,6 +2801,8 @@ module Aws::DynamoDB
|
|
2764
2801
|
# resp.table.archival_summary.archival_date_time #=> Time
|
2765
2802
|
# resp.table.archival_summary.archival_reason #=> String
|
2766
2803
|
# resp.table.archival_summary.archival_backup_arn #=> String
|
2804
|
+
# resp.table.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2805
|
+
# resp.table.table_class_summary.last_update_date_time #=> Time
|
2767
2806
|
#
|
2768
2807
|
#
|
2769
2808
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4825,6 +4864,8 @@ module Aws::DynamoDB
|
|
4825
4864
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4826
4865
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4827
4866
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
4867
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4868
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
4828
4869
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
4829
4870
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
4830
4871
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -4836,6 +4877,8 @@ module Aws::DynamoDB
|
|
4836
4877
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
4837
4878
|
# resp.table_description.archival_summary.archival_reason #=> String
|
4838
4879
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
4880
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4881
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
4839
4882
|
#
|
4840
4883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableFromBackup AWS API Documentation
|
4841
4884
|
#
|
@@ -5048,6 +5091,8 @@ module Aws::DynamoDB
|
|
5048
5091
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
5049
5092
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
5050
5093
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
5094
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5095
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
5051
5096
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
5052
5097
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
5053
5098
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -5059,6 +5104,8 @@ module Aws::DynamoDB
|
|
5059
5104
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
5060
5105
|
# resp.table_description.archival_summary.archival_reason #=> String
|
5061
5106
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
5107
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5108
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
5062
5109
|
#
|
5063
5110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime AWS API Documentation
|
5064
5111
|
#
|
@@ -5953,10 +6000,10 @@ module Aws::DynamoDB
|
|
5953
6000
|
# index. CloudWatch Contributor Insights for DynamoDB graphs display the
|
5954
6001
|
# partition key and (if applicable) sort key of frequently accessed
|
5955
6002
|
# items and frequently throttled items in plaintext. If you require the
|
5956
|
-
# use of
|
5957
|
-
# partition key and sort key data with an
|
5958
|
-
# managed key, you should not enable
|
5959
|
-
# DynamoDB for this table.
|
6003
|
+
# use of Amazon Web Services Key Management Service (KMS) to encrypt
|
6004
|
+
# this table’s partition key and sort key data with an Amazon Web
|
6005
|
+
# Services managed key or customer managed key, you should not enable
|
6006
|
+
# CloudWatch Contributor Insights for DynamoDB for this table.
|
5960
6007
|
#
|
5961
6008
|
# @option params [required, String] :table_name
|
5962
6009
|
# The name of the table.
|
@@ -6059,6 +6106,8 @@ module Aws::DynamoDB
|
|
6059
6106
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
6060
6107
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6061
6108
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
6109
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6110
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
6062
6111
|
# resp.global_table_description.global_table_arn #=> String
|
6063
6112
|
# resp.global_table_description.creation_date_time #=> Time
|
6064
6113
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -6199,6 +6248,7 @@ module Aws::DynamoDB
|
|
6199
6248
|
# },
|
6200
6249
|
# },
|
6201
6250
|
# ],
|
6251
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6202
6252
|
# },
|
6203
6253
|
# ],
|
6204
6254
|
# })
|
@@ -6258,6 +6308,8 @@ module Aws::DynamoDB
|
|
6258
6308
|
# 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
|
6259
6309
|
# 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
|
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.target_value #=> Float
|
6311
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6312
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
6261
6313
|
#
|
6262
6314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateGlobalTableSettings AWS API Documentation
|
6263
6315
|
#
|
@@ -6763,6 +6815,10 @@ module Aws::DynamoDB
|
|
6763
6815
|
#
|
6764
6816
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
6765
6817
|
#
|
6818
|
+
# @option params [String] :table_class
|
6819
|
+
# The table class of the table to be updated. Valid values are
|
6820
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
6821
|
+
#
|
6766
6822
|
# @return [Types::UpdateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6767
6823
|
#
|
6768
6824
|
# * {Types::UpdateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -6888,6 +6944,7 @@ module Aws::DynamoDB
|
|
6888
6944
|
# },
|
6889
6945
|
# },
|
6890
6946
|
# ],
|
6947
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6891
6948
|
# },
|
6892
6949
|
# update: {
|
6893
6950
|
# region_name: "RegionName", # required
|
@@ -6903,12 +6960,14 @@ module Aws::DynamoDB
|
|
6903
6960
|
# },
|
6904
6961
|
# },
|
6905
6962
|
# ],
|
6963
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6906
6964
|
# },
|
6907
6965
|
# delete: {
|
6908
6966
|
# region_name: "RegionName", # required
|
6909
6967
|
# },
|
6910
6968
|
# },
|
6911
6969
|
# ],
|
6970
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6912
6971
|
# })
|
6913
6972
|
#
|
6914
6973
|
# @example Response structure
|
@@ -6978,6 +7037,8 @@ module Aws::DynamoDB
|
|
6978
7037
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
6979
7038
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6980
7039
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
7040
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7041
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
6981
7042
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
6982
7043
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
6983
7044
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -6989,6 +7050,8 @@ module Aws::DynamoDB
|
|
6989
7050
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
6990
7051
|
# resp.table_description.archival_summary.archival_reason #=> String
|
6991
7052
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
7053
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7054
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
6992
7055
|
#
|
6993
7056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTable AWS API Documentation
|
6994
7057
|
#
|
@@ -7255,7 +7318,7 @@ module Aws::DynamoDB
|
|
7255
7318
|
params: params,
|
7256
7319
|
config: config)
|
7257
7320
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7258
|
-
context[:gem_version] = '1.
|
7321
|
+
context[:gem_version] = '1.71.0'
|
7259
7322
|
Seahorse::Client::Request.new(handlers, context)
|
7260
7323
|
end
|
7261
7324
|
|
@@ -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.71.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-02 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.125.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.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|