aws-sdk-dynamodb 1.46.1 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dynamodb.rb +3 -1
- data/lib/aws-sdk-dynamodb/attribute_value.rb +2 -0
- data/lib/aws-sdk-dynamodb/client.rb +42 -12
- data/lib/aws-sdk-dynamodb/client_api.rb +2 -0
- data/lib/aws-sdk-dynamodb/customizations.rb +2 -0
- data/lib/aws-sdk-dynamodb/customizations/client.rb +2 -0
- data/lib/aws-sdk-dynamodb/errors.rb +2 -0
- data/lib/aws-sdk-dynamodb/plugins/crc32_validation.rb +2 -0
- data/lib/aws-sdk-dynamodb/plugins/extended_retries.rb +2 -0
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +2 -0
- data/lib/aws-sdk-dynamodb/resource.rb +2 -0
- data/lib/aws-sdk-dynamodb/table.rb +6 -0
- data/lib/aws-sdk-dynamodb/types.rb +197 -0
- data/lib/aws-sdk-dynamodb/waiters.rb +2 -0
- 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: 1b563dc9ce50eb546dc1e21f1a1c5d76dbb63b883202ea4310b3024004ef85aa
|
4
|
+
data.tar.gz: 6f86b6b068cde0e07c44f68fd0f2d513fefec4667f9aae2142cf3c567196732d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 410364591ca7803741b788bd3d7d57e7ea748e22f19e9009c60dc7c9fcb02553391edb8274044bdf699553ec9b02d52ec810c384388ed1ba61f94325dd075c33
|
7
|
+
data.tar.gz: f582b2aaa7ac7b9d66572c63891155a662eb360e393cde6619a09212035137a7b39bcb6955d792c75b1ab35353eaf5f09d6d55fae49b1a741f9336e065640c03
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -47,6 +49,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
|
|
47
49
|
# @service
|
48
50
|
module Aws::DynamoDB
|
49
51
|
|
50
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.51.0'
|
51
53
|
|
52
54
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
require 'aws-sdk-dynamodb/plugins/extended_retries.rb'
|
@@ -72,6 +75,7 @@ module Aws::DynamoDB
|
|
72
75
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
73
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
78
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
75
79
|
add_plugin(Aws::Plugins::SignatureV4)
|
76
80
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
77
81
|
add_plugin(Aws::DynamoDB::Plugins::ExtendedRetries)
|
@@ -173,7 +177,7 @@ module Aws::DynamoDB
|
|
173
177
|
# @option options [String] :endpoint
|
174
178
|
# The client endpoint is normally constructed from the `:region`
|
175
179
|
# option. You should only configure an `:endpoint` when connecting
|
176
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
180
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
177
181
|
#
|
178
182
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
179
183
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -188,7 +192,7 @@ module Aws::DynamoDB
|
|
188
192
|
# requests fetching endpoints information. Defaults to 60 sec.
|
189
193
|
#
|
190
194
|
# @option options [Boolean] :endpoint_discovery (false)
|
191
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
195
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
192
196
|
#
|
193
197
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
194
198
|
# The log formatter.
|
@@ -944,7 +948,8 @@ module Aws::DynamoDB
|
|
944
948
|
# a replication relationship between two or more DynamoDB tables with
|
945
949
|
# the same table name in the provided Regions.
|
946
950
|
#
|
947
|
-
# <note markdown="1"> This
|
951
|
+
# <note markdown="1"> This operation only applies to [Version 2017.11.29][1] of global
|
952
|
+
# tables.
|
948
953
|
#
|
949
954
|
# </note>
|
950
955
|
#
|
@@ -969,6 +974,14 @@ module Aws::DynamoDB
|
|
969
974
|
# * The global secondary indexes must have the same hash key and sort
|
970
975
|
# key (if present).
|
971
976
|
#
|
977
|
+
# If local secondary indexes are specified, then the following
|
978
|
+
# conditions must also be met:
|
979
|
+
#
|
980
|
+
# * The local secondary indexes must have the same name.
|
981
|
+
#
|
982
|
+
# * The local secondary indexes must have the same hash key and sort key
|
983
|
+
# (if present).
|
984
|
+
#
|
972
985
|
# Write capacity settings should be set consistently across your replica
|
973
986
|
# tables and secondary indexes. DynamoDB strongly recommends enabling
|
974
987
|
# auto scaling to manage the write capacity settings for all of your
|
@@ -2163,13 +2176,17 @@ module Aws::DynamoDB
|
|
2163
2176
|
|
2164
2177
|
# Returns information about the specified global table.
|
2165
2178
|
#
|
2166
|
-
# <note markdown="1"> This
|
2179
|
+
# <note markdown="1"> This operation only applies to [Version 2017.11.29][1] of global
|
2180
|
+
# tables. If you are using global tables [Version 2019.11.21][2] you can
|
2181
|
+
# use [DescribeTable][3] instead.
|
2167
2182
|
#
|
2168
2183
|
# </note>
|
2169
2184
|
#
|
2170
2185
|
#
|
2171
2186
|
#
|
2172
2187
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V1.html
|
2188
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
2189
|
+
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeTable.html
|
2173
2190
|
#
|
2174
2191
|
# @option params [required, String] :global_table_name
|
2175
2192
|
# The name of the global table.
|
@@ -2212,7 +2229,8 @@ module Aws::DynamoDB
|
|
2212
2229
|
|
2213
2230
|
# Describes Region-specific settings for a global table.
|
2214
2231
|
#
|
2215
|
-
# <note markdown="1"> This
|
2232
|
+
# <note markdown="1"> This operation only applies to [Version 2017.11.29][1] of global
|
2233
|
+
# tables.
|
2216
2234
|
#
|
2217
2235
|
# </note>
|
2218
2236
|
#
|
@@ -2575,7 +2593,8 @@ module Aws::DynamoDB
|
|
2575
2593
|
# Describes auto scaling settings across replicas of the global table at
|
2576
2594
|
# once.
|
2577
2595
|
#
|
2578
|
-
# <note markdown="1"> This
|
2596
|
+
# <note markdown="1"> This operation only applies to [Version 2019.11.21][1] of global
|
2597
|
+
# tables.
|
2579
2598
|
#
|
2580
2599
|
# </note>
|
2581
2600
|
#
|
@@ -3011,7 +3030,8 @@ module Aws::DynamoDB
|
|
3011
3030
|
|
3012
3031
|
# Lists all global tables that have a replica in the specified Region.
|
3013
3032
|
#
|
3014
|
-
# <note markdown="1"> This
|
3033
|
+
# <note markdown="1"> This operation only applies to [Version 2017.11.29][1] of global
|
3034
|
+
# tables.
|
3015
3035
|
#
|
3016
3036
|
# </note>
|
3017
3037
|
#
|
@@ -3205,9 +3225,14 @@ module Aws::DynamoDB
|
|
3205
3225
|
# * [ PutItem in the AWS SDK for Ruby V2][9]
|
3206
3226
|
#
|
3207
3227
|
# When you add an item, the primary key attributes are the only required
|
3208
|
-
# attributes. Attribute values cannot be null.
|
3209
|
-
#
|
3210
|
-
#
|
3228
|
+
# attributes. Attribute values cannot be null.
|
3229
|
+
#
|
3230
|
+
# Empty String and Binary attribute values are allowed. Attribute values
|
3231
|
+
# of type String and Binary must have a length greater than zero if the
|
3232
|
+
# attribute is used as a key attribute for a table or index. Set type
|
3233
|
+
# attributes cannot be empty.
|
3234
|
+
#
|
3235
|
+
# Invalid Requests with empty values will be rejected with a
|
3211
3236
|
# `ValidationException` exception.
|
3212
3237
|
#
|
3213
3238
|
# <note markdown="1"> To prevent a new item from replacing an existing item, use a
|
@@ -3252,6 +3277,10 @@ module Aws::DynamoDB
|
|
3252
3277
|
# data types for those attributes must match those of the schema in the
|
3253
3278
|
# table's attribute definition.
|
3254
3279
|
#
|
3280
|
+
# Empty String and Binary attribute values are allowed. Attribute values
|
3281
|
+
# of type String and Binary must have a length greater than zero if the
|
3282
|
+
# attribute is used as a key attribute for a table or index.
|
3283
|
+
#
|
3255
3284
|
# For more information about primary keys, see [Primary Key][1] in the
|
3256
3285
|
# *Amazon DynamoDB Developer Guide*.
|
3257
3286
|
#
|
@@ -6377,7 +6406,8 @@ module Aws::DynamoDB
|
|
6377
6406
|
|
6378
6407
|
# Updates auto scaling settings on your global tables at once.
|
6379
6408
|
#
|
6380
|
-
# <note markdown="1"> This
|
6409
|
+
# <note markdown="1"> This operation only applies to [Version 2019.11.21][1] of global
|
6410
|
+
# tables.
|
6381
6411
|
#
|
6382
6412
|
# </note>
|
6383
6413
|
#
|
@@ -6630,7 +6660,7 @@ module Aws::DynamoDB
|
|
6630
6660
|
params: params,
|
6631
6661
|
config: config)
|
6632
6662
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
6633
|
-
context[:gem_version] = '1.
|
6663
|
+
context[:gem_version] = '1.51.0'
|
6634
6664
|
Seahorse::Client::Request.new(handlers, context)
|
6635
6665
|
end
|
6636
6666
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -855,6 +857,10 @@ module Aws::DynamoDB
|
|
855
857
|
# data types for those attributes must match those of the schema in the
|
856
858
|
# table's attribute definition.
|
857
859
|
#
|
860
|
+
# Empty String and Binary attribute values are allowed. Attribute values
|
861
|
+
# of type String and Binary must have a length greater than zero if the
|
862
|
+
# attribute is used as a key attribute for a table or index.
|
863
|
+
#
|
858
864
|
# For more information about primary keys, see [Primary Key][1] in the
|
859
865
|
# *Amazon DynamoDB Developer Guide*.
|
860
866
|
#
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -39,6 +41,7 @@ module Aws::DynamoDB
|
|
39
41
|
:archival_date_time,
|
40
42
|
:archival_reason,
|
41
43
|
:archival_backup_arn)
|
44
|
+
SENSITIVE = []
|
42
45
|
include Aws::Structure
|
43
46
|
end
|
44
47
|
|
@@ -72,6 +75,7 @@ module Aws::DynamoDB
|
|
72
75
|
class AttributeDefinition < Struct.new(
|
73
76
|
:attribute_name,
|
74
77
|
:attribute_type)
|
78
|
+
SENSITIVE = []
|
75
79
|
include Aws::Structure
|
76
80
|
end
|
77
81
|
|
@@ -188,6 +192,7 @@ module Aws::DynamoDB
|
|
188
192
|
:l,
|
189
193
|
:null,
|
190
194
|
:bool)
|
195
|
+
SENSITIVE = []
|
191
196
|
include Aws::Structure
|
192
197
|
end
|
193
198
|
|
@@ -310,6 +315,7 @@ module Aws::DynamoDB
|
|
310
315
|
class AttributeValueUpdate < Struct.new(
|
311
316
|
:value,
|
312
317
|
:action)
|
318
|
+
SENSITIVE = []
|
313
319
|
include Aws::Structure
|
314
320
|
end
|
315
321
|
|
@@ -328,6 +334,7 @@ module Aws::DynamoDB
|
|
328
334
|
class AutoScalingPolicyDescription < Struct.new(
|
329
335
|
:policy_name,
|
330
336
|
:target_tracking_scaling_policy_configuration)
|
337
|
+
SENSITIVE = []
|
331
338
|
include Aws::Structure
|
332
339
|
end
|
333
340
|
|
@@ -359,6 +366,7 @@ module Aws::DynamoDB
|
|
359
366
|
class AutoScalingPolicyUpdate < Struct.new(
|
360
367
|
:policy_name,
|
361
368
|
:target_tracking_scaling_policy_configuration)
|
369
|
+
SENSITIVE = []
|
362
370
|
include Aws::Structure
|
363
371
|
end
|
364
372
|
|
@@ -396,6 +404,7 @@ module Aws::DynamoDB
|
|
396
404
|
:auto_scaling_disabled,
|
397
405
|
:auto_scaling_role_arn,
|
398
406
|
:scaling_policies)
|
407
|
+
SENSITIVE = []
|
399
408
|
include Aws::Structure
|
400
409
|
end
|
401
410
|
|
@@ -453,6 +462,7 @@ module Aws::DynamoDB
|
|
453
462
|
:auto_scaling_disabled,
|
454
463
|
:auto_scaling_role_arn,
|
455
464
|
:scaling_policy_update)
|
465
|
+
SENSITIVE = []
|
456
466
|
include Aws::Structure
|
457
467
|
end
|
458
468
|
|
@@ -498,6 +508,7 @@ module Aws::DynamoDB
|
|
498
508
|
:scale_in_cooldown,
|
499
509
|
:scale_out_cooldown,
|
500
510
|
:target_value)
|
511
|
+
SENSITIVE = []
|
501
512
|
include Aws::Structure
|
502
513
|
end
|
503
514
|
|
@@ -554,6 +565,7 @@ module Aws::DynamoDB
|
|
554
565
|
:scale_in_cooldown,
|
555
566
|
:scale_out_cooldown,
|
556
567
|
:target_value)
|
568
|
+
SENSITIVE = []
|
557
569
|
include Aws::Structure
|
558
570
|
end
|
559
571
|
|
@@ -578,6 +590,7 @@ module Aws::DynamoDB
|
|
578
590
|
:backup_details,
|
579
591
|
:source_table_details,
|
580
592
|
:source_table_feature_details)
|
593
|
+
SENSITIVE = []
|
581
594
|
include Aws::Structure
|
582
595
|
end
|
583
596
|
|
@@ -637,6 +650,7 @@ module Aws::DynamoDB
|
|
637
650
|
:backup_type,
|
638
651
|
:backup_creation_date_time,
|
639
652
|
:backup_expiry_date_time)
|
653
|
+
SENSITIVE = []
|
640
654
|
include Aws::Structure
|
641
655
|
end
|
642
656
|
|
@@ -651,6 +665,7 @@ module Aws::DynamoDB
|
|
651
665
|
#
|
652
666
|
class BackupInUseException < Struct.new(
|
653
667
|
:message)
|
668
|
+
SENSITIVE = []
|
654
669
|
include Aws::Structure
|
655
670
|
end
|
656
671
|
|
@@ -663,6 +678,7 @@ module Aws::DynamoDB
|
|
663
678
|
#
|
664
679
|
class BackupNotFoundException < Struct.new(
|
665
680
|
:message)
|
681
|
+
SENSITIVE = []
|
666
682
|
include Aws::Structure
|
667
683
|
end
|
668
684
|
|
@@ -736,6 +752,7 @@ module Aws::DynamoDB
|
|
736
752
|
:backup_status,
|
737
753
|
:backup_type,
|
738
754
|
:backup_size_bytes)
|
755
|
+
SENSITIVE = []
|
739
756
|
include Aws::Structure
|
740
757
|
end
|
741
758
|
|
@@ -878,6 +895,7 @@ module Aws::DynamoDB
|
|
878
895
|
class BatchGetItemInput < Struct.new(
|
879
896
|
:request_items,
|
880
897
|
:return_consumed_capacity)
|
898
|
+
SENSITIVE = []
|
881
899
|
include Aws::Structure
|
882
900
|
end
|
883
901
|
|
@@ -931,6 +949,7 @@ module Aws::DynamoDB
|
|
931
949
|
:responses,
|
932
950
|
:unprocessed_keys,
|
933
951
|
:consumed_capacity)
|
952
|
+
SENSITIVE = []
|
934
953
|
include Aws::Structure
|
935
954
|
end
|
936
955
|
|
@@ -1028,6 +1047,7 @@ module Aws::DynamoDB
|
|
1028
1047
|
:request_items,
|
1029
1048
|
:return_consumed_capacity,
|
1030
1049
|
:return_item_collection_metrics)
|
1050
|
+
SENSITIVE = []
|
1031
1051
|
include Aws::Structure
|
1032
1052
|
end
|
1033
1053
|
|
@@ -1112,6 +1132,7 @@ module Aws::DynamoDB
|
|
1112
1132
|
:unprocessed_items,
|
1113
1133
|
:item_collection_metrics,
|
1114
1134
|
:consumed_capacity)
|
1135
|
+
SENSITIVE = []
|
1115
1136
|
include Aws::Structure
|
1116
1137
|
end
|
1117
1138
|
|
@@ -1140,6 +1161,7 @@ module Aws::DynamoDB
|
|
1140
1161
|
class BillingModeSummary < Struct.new(
|
1141
1162
|
:billing_mode,
|
1142
1163
|
:last_update_to_pay_per_request_date_time)
|
1164
|
+
SENSITIVE = []
|
1143
1165
|
include Aws::Structure
|
1144
1166
|
end
|
1145
1167
|
|
@@ -1167,6 +1189,7 @@ module Aws::DynamoDB
|
|
1167
1189
|
:item,
|
1168
1190
|
:code,
|
1169
1191
|
:message)
|
1192
|
+
SENSITIVE = []
|
1170
1193
|
include Aws::Structure
|
1171
1194
|
end
|
1172
1195
|
|
@@ -1193,6 +1216,7 @@ module Aws::DynamoDB
|
|
1193
1216
|
:read_capacity_units,
|
1194
1217
|
:write_capacity_units,
|
1195
1218
|
:capacity_units)
|
1219
|
+
SENSITIVE = []
|
1196
1220
|
include Aws::Structure
|
1197
1221
|
end
|
1198
1222
|
|
@@ -1419,6 +1443,7 @@ module Aws::DynamoDB
|
|
1419
1443
|
class Condition < Struct.new(
|
1420
1444
|
:attribute_value_list,
|
1421
1445
|
:comparison_operator)
|
1446
|
+
SENSITIVE = []
|
1422
1447
|
include Aws::Structure
|
1423
1448
|
end
|
1424
1449
|
|
@@ -1482,6 +1507,7 @@ module Aws::DynamoDB
|
|
1482
1507
|
:expression_attribute_names,
|
1483
1508
|
:expression_attribute_values,
|
1484
1509
|
:return_values_on_condition_check_failure)
|
1510
|
+
SENSITIVE = []
|
1485
1511
|
include Aws::Structure
|
1486
1512
|
end
|
1487
1513
|
|
@@ -1495,6 +1521,7 @@ module Aws::DynamoDB
|
|
1495
1521
|
#
|
1496
1522
|
class ConditionalCheckFailedException < Struct.new(
|
1497
1523
|
:message)
|
1524
|
+
SENSITIVE = []
|
1498
1525
|
include Aws::Structure
|
1499
1526
|
end
|
1500
1527
|
|
@@ -1550,6 +1577,7 @@ module Aws::DynamoDB
|
|
1550
1577
|
:table,
|
1551
1578
|
:local_secondary_indexes,
|
1552
1579
|
:global_secondary_indexes)
|
1580
|
+
SENSITIVE = []
|
1553
1581
|
include Aws::Structure
|
1554
1582
|
end
|
1555
1583
|
|
@@ -1571,6 +1599,7 @@ module Aws::DynamoDB
|
|
1571
1599
|
class ContinuousBackupsDescription < Struct.new(
|
1572
1600
|
:continuous_backups_status,
|
1573
1601
|
:point_in_time_recovery_description)
|
1602
|
+
SENSITIVE = []
|
1574
1603
|
include Aws::Structure
|
1575
1604
|
end
|
1576
1605
|
|
@@ -1583,6 +1612,7 @@ module Aws::DynamoDB
|
|
1583
1612
|
#
|
1584
1613
|
class ContinuousBackupsUnavailableException < Struct.new(
|
1585
1614
|
:message)
|
1615
|
+
SENSITIVE = []
|
1586
1616
|
include Aws::Structure
|
1587
1617
|
end
|
1588
1618
|
|
@@ -1607,6 +1637,7 @@ module Aws::DynamoDB
|
|
1607
1637
|
:table_name,
|
1608
1638
|
:index_name,
|
1609
1639
|
:contributor_insights_status)
|
1640
|
+
SENSITIVE = []
|
1610
1641
|
include Aws::Structure
|
1611
1642
|
end
|
1612
1643
|
|
@@ -1631,6 +1662,7 @@ module Aws::DynamoDB
|
|
1631
1662
|
class CreateBackupInput < Struct.new(
|
1632
1663
|
:table_name,
|
1633
1664
|
:backup_name)
|
1665
|
+
SENSITIVE = []
|
1634
1666
|
include Aws::Structure
|
1635
1667
|
end
|
1636
1668
|
|
@@ -1642,6 +1674,7 @@ module Aws::DynamoDB
|
|
1642
1674
|
#
|
1643
1675
|
class CreateBackupOutput < Struct.new(
|
1644
1676
|
:backup_details)
|
1677
|
+
SENSITIVE = []
|
1645
1678
|
include Aws::Structure
|
1646
1679
|
end
|
1647
1680
|
|
@@ -1702,6 +1735,7 @@ module Aws::DynamoDB
|
|
1702
1735
|
:key_schema,
|
1703
1736
|
:projection,
|
1704
1737
|
:provisioned_throughput)
|
1738
|
+
SENSITIVE = []
|
1705
1739
|
include Aws::Structure
|
1706
1740
|
end
|
1707
1741
|
|
@@ -1730,6 +1764,7 @@ module Aws::DynamoDB
|
|
1730
1764
|
class CreateGlobalTableInput < Struct.new(
|
1731
1765
|
:global_table_name,
|
1732
1766
|
:replication_group)
|
1767
|
+
SENSITIVE = []
|
1733
1768
|
include Aws::Structure
|
1734
1769
|
end
|
1735
1770
|
|
@@ -1741,6 +1776,7 @@ module Aws::DynamoDB
|
|
1741
1776
|
#
|
1742
1777
|
class CreateGlobalTableOutput < Struct.new(
|
1743
1778
|
:global_table_description)
|
1779
|
+
SENSITIVE = []
|
1744
1780
|
include Aws::Structure
|
1745
1781
|
end
|
1746
1782
|
|
@@ -1761,6 +1797,7 @@ module Aws::DynamoDB
|
|
1761
1797
|
#
|
1762
1798
|
class CreateReplicaAction < Struct.new(
|
1763
1799
|
:region_name)
|
1800
|
+
SENSITIVE = []
|
1764
1801
|
include Aws::Structure
|
1765
1802
|
end
|
1766
1803
|
|
@@ -1813,6 +1850,7 @@ module Aws::DynamoDB
|
|
1813
1850
|
:kms_master_key_id,
|
1814
1851
|
:provisioned_throughput_override,
|
1815
1852
|
:global_secondary_indexes)
|
1853
|
+
SENSITIVE = []
|
1816
1854
|
include Aws::Structure
|
1817
1855
|
end
|
1818
1856
|
|
@@ -2116,6 +2154,7 @@ module Aws::DynamoDB
|
|
2116
2154
|
:stream_specification,
|
2117
2155
|
:sse_specification,
|
2118
2156
|
:tags)
|
2157
|
+
SENSITIVE = []
|
2119
2158
|
include Aws::Structure
|
2120
2159
|
end
|
2121
2160
|
|
@@ -2129,6 +2168,7 @@ module Aws::DynamoDB
|
|
2129
2168
|
#
|
2130
2169
|
class CreateTableOutput < Struct.new(
|
2131
2170
|
:table_description)
|
2171
|
+
SENSITIVE = []
|
2132
2172
|
include Aws::Structure
|
2133
2173
|
end
|
2134
2174
|
|
@@ -2191,6 +2231,7 @@ module Aws::DynamoDB
|
|
2191
2231
|
:expression_attribute_names,
|
2192
2232
|
:expression_attribute_values,
|
2193
2233
|
:return_values_on_condition_check_failure)
|
2234
|
+
SENSITIVE = []
|
2194
2235
|
include Aws::Structure
|
2195
2236
|
end
|
2196
2237
|
|
@@ -2209,6 +2250,7 @@ module Aws::DynamoDB
|
|
2209
2250
|
#
|
2210
2251
|
class DeleteBackupInput < Struct.new(
|
2211
2252
|
:backup_arn)
|
2253
|
+
SENSITIVE = []
|
2212
2254
|
include Aws::Structure
|
2213
2255
|
end
|
2214
2256
|
|
@@ -2220,6 +2262,7 @@ module Aws::DynamoDB
|
|
2220
2262
|
#
|
2221
2263
|
class DeleteBackupOutput < Struct.new(
|
2222
2264
|
:backup_description)
|
2265
|
+
SENSITIVE = []
|
2223
2266
|
include Aws::Structure
|
2224
2267
|
end
|
2225
2268
|
|
@@ -2241,6 +2284,7 @@ module Aws::DynamoDB
|
|
2241
2284
|
#
|
2242
2285
|
class DeleteGlobalSecondaryIndexAction < Struct.new(
|
2243
2286
|
:index_name)
|
2287
|
+
SENSITIVE = []
|
2244
2288
|
include Aws::Structure
|
2245
2289
|
end
|
2246
2290
|
|
@@ -2472,6 +2516,7 @@ module Aws::DynamoDB
|
|
2472
2516
|
:condition_expression,
|
2473
2517
|
:expression_attribute_names,
|
2474
2518
|
:expression_attribute_values)
|
2519
|
+
SENSITIVE = []
|
2475
2520
|
include Aws::Structure
|
2476
2521
|
end
|
2477
2522
|
|
@@ -2529,6 +2574,7 @@ module Aws::DynamoDB
|
|
2529
2574
|
:attributes,
|
2530
2575
|
:consumed_capacity,
|
2531
2576
|
:item_collection_metrics)
|
2577
|
+
SENSITIVE = []
|
2532
2578
|
include Aws::Structure
|
2533
2579
|
end
|
2534
2580
|
|
@@ -2549,6 +2595,7 @@ module Aws::DynamoDB
|
|
2549
2595
|
#
|
2550
2596
|
class DeleteReplicaAction < Struct.new(
|
2551
2597
|
:region_name)
|
2598
|
+
SENSITIVE = []
|
2552
2599
|
include Aws::Structure
|
2553
2600
|
end
|
2554
2601
|
|
@@ -2569,6 +2616,7 @@ module Aws::DynamoDB
|
|
2569
2616
|
#
|
2570
2617
|
class DeleteReplicationGroupMemberAction < Struct.new(
|
2571
2618
|
:region_name)
|
2619
|
+
SENSITIVE = []
|
2572
2620
|
include Aws::Structure
|
2573
2621
|
end
|
2574
2622
|
|
@@ -2594,6 +2642,7 @@ module Aws::DynamoDB
|
|
2594
2642
|
#
|
2595
2643
|
class DeleteRequest < Struct.new(
|
2596
2644
|
:key)
|
2645
|
+
SENSITIVE = []
|
2597
2646
|
include Aws::Structure
|
2598
2647
|
end
|
2599
2648
|
|
@@ -2614,6 +2663,7 @@ module Aws::DynamoDB
|
|
2614
2663
|
#
|
2615
2664
|
class DeleteTableInput < Struct.new(
|
2616
2665
|
:table_name)
|
2666
|
+
SENSITIVE = []
|
2617
2667
|
include Aws::Structure
|
2618
2668
|
end
|
2619
2669
|
|
@@ -2627,6 +2677,7 @@ module Aws::DynamoDB
|
|
2627
2677
|
#
|
2628
2678
|
class DeleteTableOutput < Struct.new(
|
2629
2679
|
:table_description)
|
2680
|
+
SENSITIVE = []
|
2630
2681
|
include Aws::Structure
|
2631
2682
|
end
|
2632
2683
|
|
@@ -2645,6 +2696,7 @@ module Aws::DynamoDB
|
|
2645
2696
|
#
|
2646
2697
|
class DescribeBackupInput < Struct.new(
|
2647
2698
|
:backup_arn)
|
2699
|
+
SENSITIVE = []
|
2648
2700
|
include Aws::Structure
|
2649
2701
|
end
|
2650
2702
|
|
@@ -2656,6 +2708,7 @@ module Aws::DynamoDB
|
|
2656
2708
|
#
|
2657
2709
|
class DescribeBackupOutput < Struct.new(
|
2658
2710
|
:backup_description)
|
2711
|
+
SENSITIVE = []
|
2659
2712
|
include Aws::Structure
|
2660
2713
|
end
|
2661
2714
|
|
@@ -2675,6 +2728,7 @@ module Aws::DynamoDB
|
|
2675
2728
|
#
|
2676
2729
|
class DescribeContinuousBackupsInput < Struct.new(
|
2677
2730
|
:table_name)
|
2731
|
+
SENSITIVE = []
|
2678
2732
|
include Aws::Structure
|
2679
2733
|
end
|
2680
2734
|
|
@@ -2687,6 +2741,7 @@ module Aws::DynamoDB
|
|
2687
2741
|
#
|
2688
2742
|
class DescribeContinuousBackupsOutput < Struct.new(
|
2689
2743
|
:continuous_backups_description)
|
2744
|
+
SENSITIVE = []
|
2690
2745
|
include Aws::Structure
|
2691
2746
|
end
|
2692
2747
|
|
@@ -2711,6 +2766,7 @@ module Aws::DynamoDB
|
|
2711
2766
|
class DescribeContributorInsightsInput < Struct.new(
|
2712
2767
|
:table_name,
|
2713
2768
|
:index_name)
|
2769
|
+
SENSITIVE = []
|
2714
2770
|
include Aws::Structure
|
2715
2771
|
end
|
2716
2772
|
|
@@ -2763,6 +2819,7 @@ module Aws::DynamoDB
|
|
2763
2819
|
:contributor_insights_status,
|
2764
2820
|
:last_update_date_time,
|
2765
2821
|
:failure_exception)
|
2822
|
+
SENSITIVE = []
|
2766
2823
|
include Aws::Structure
|
2767
2824
|
end
|
2768
2825
|
|
@@ -2780,6 +2837,7 @@ module Aws::DynamoDB
|
|
2780
2837
|
#
|
2781
2838
|
class DescribeEndpointsResponse < Struct.new(
|
2782
2839
|
:endpoints)
|
2840
|
+
SENSITIVE = []
|
2783
2841
|
include Aws::Structure
|
2784
2842
|
end
|
2785
2843
|
|
@@ -2798,6 +2856,7 @@ module Aws::DynamoDB
|
|
2798
2856
|
#
|
2799
2857
|
class DescribeGlobalTableInput < Struct.new(
|
2800
2858
|
:global_table_name)
|
2859
|
+
SENSITIVE = []
|
2801
2860
|
include Aws::Structure
|
2802
2861
|
end
|
2803
2862
|
|
@@ -2809,6 +2868,7 @@ module Aws::DynamoDB
|
|
2809
2868
|
#
|
2810
2869
|
class DescribeGlobalTableOutput < Struct.new(
|
2811
2870
|
:global_table_description)
|
2871
|
+
SENSITIVE = []
|
2812
2872
|
include Aws::Structure
|
2813
2873
|
end
|
2814
2874
|
|
@@ -2827,6 +2887,7 @@ module Aws::DynamoDB
|
|
2827
2887
|
#
|
2828
2888
|
class DescribeGlobalTableSettingsInput < Struct.new(
|
2829
2889
|
:global_table_name)
|
2890
|
+
SENSITIVE = []
|
2830
2891
|
include Aws::Structure
|
2831
2892
|
end
|
2832
2893
|
|
@@ -2843,6 +2904,7 @@ module Aws::DynamoDB
|
|
2843
2904
|
class DescribeGlobalTableSettingsOutput < Struct.new(
|
2844
2905
|
:global_table_name,
|
2845
2906
|
:replica_settings)
|
2907
|
+
SENSITIVE = []
|
2846
2908
|
include Aws::Structure
|
2847
2909
|
end
|
2848
2910
|
|
@@ -2887,6 +2949,7 @@ module Aws::DynamoDB
|
|
2887
2949
|
:account_max_write_capacity_units,
|
2888
2950
|
:table_max_read_capacity_units,
|
2889
2951
|
:table_max_write_capacity_units)
|
2952
|
+
SENSITIVE = []
|
2890
2953
|
include Aws::Structure
|
2891
2954
|
end
|
2892
2955
|
|
@@ -2907,6 +2970,7 @@ module Aws::DynamoDB
|
|
2907
2970
|
#
|
2908
2971
|
class DescribeTableInput < Struct.new(
|
2909
2972
|
:table_name)
|
2973
|
+
SENSITIVE = []
|
2910
2974
|
include Aws::Structure
|
2911
2975
|
end
|
2912
2976
|
|
@@ -2920,6 +2984,7 @@ module Aws::DynamoDB
|
|
2920
2984
|
#
|
2921
2985
|
class DescribeTableOutput < Struct.new(
|
2922
2986
|
:table)
|
2987
|
+
SENSITIVE = []
|
2923
2988
|
include Aws::Structure
|
2924
2989
|
end
|
2925
2990
|
|
@@ -2938,6 +3003,7 @@ module Aws::DynamoDB
|
|
2938
3003
|
#
|
2939
3004
|
class DescribeTableReplicaAutoScalingInput < Struct.new(
|
2940
3005
|
:table_name)
|
3006
|
+
SENSITIVE = []
|
2941
3007
|
include Aws::Structure
|
2942
3008
|
end
|
2943
3009
|
|
@@ -2949,6 +3015,7 @@ module Aws::DynamoDB
|
|
2949
3015
|
#
|
2950
3016
|
class DescribeTableReplicaAutoScalingOutput < Struct.new(
|
2951
3017
|
:table_auto_scaling_description)
|
3018
|
+
SENSITIVE = []
|
2952
3019
|
include Aws::Structure
|
2953
3020
|
end
|
2954
3021
|
|
@@ -2967,6 +3034,7 @@ module Aws::DynamoDB
|
|
2967
3034
|
#
|
2968
3035
|
class DescribeTimeToLiveInput < Struct.new(
|
2969
3036
|
:table_name)
|
3037
|
+
SENSITIVE = []
|
2970
3038
|
include Aws::Structure
|
2971
3039
|
end
|
2972
3040
|
|
@@ -2977,6 +3045,7 @@ module Aws::DynamoDB
|
|
2977
3045
|
#
|
2978
3046
|
class DescribeTimeToLiveOutput < Struct.new(
|
2979
3047
|
:time_to_live_description)
|
3048
|
+
SENSITIVE = []
|
2980
3049
|
include Aws::Structure
|
2981
3050
|
end
|
2982
3051
|
|
@@ -2995,6 +3064,7 @@ module Aws::DynamoDB
|
|
2995
3064
|
class Endpoint < Struct.new(
|
2996
3065
|
:address,
|
2997
3066
|
:cache_period_in_minutes)
|
3067
|
+
SENSITIVE = []
|
2998
3068
|
include Aws::Structure
|
2999
3069
|
end
|
3000
3070
|
|
@@ -3272,6 +3342,7 @@ module Aws::DynamoDB
|
|
3272
3342
|
:exists,
|
3273
3343
|
:comparison_operator,
|
3274
3344
|
:attribute_value_list)
|
3345
|
+
SENSITIVE = []
|
3275
3346
|
include Aws::Structure
|
3276
3347
|
end
|
3277
3348
|
|
@@ -3290,6 +3361,7 @@ module Aws::DynamoDB
|
|
3290
3361
|
class FailureException < Struct.new(
|
3291
3362
|
:exception_name,
|
3292
3363
|
:exception_description)
|
3364
|
+
SENSITIVE = []
|
3293
3365
|
include Aws::Structure
|
3294
3366
|
end
|
3295
3367
|
|
@@ -3340,6 +3412,7 @@ module Aws::DynamoDB
|
|
3340
3412
|
:table_name,
|
3341
3413
|
:projection_expression,
|
3342
3414
|
:expression_attribute_names)
|
3415
|
+
SENSITIVE = []
|
3343
3416
|
include Aws::Structure
|
3344
3417
|
end
|
3345
3418
|
|
@@ -3493,6 +3566,7 @@ module Aws::DynamoDB
|
|
3493
3566
|
:return_consumed_capacity,
|
3494
3567
|
:projection_expression,
|
3495
3568
|
:expression_attribute_names)
|
3569
|
+
SENSITIVE = []
|
3496
3570
|
include Aws::Structure
|
3497
3571
|
end
|
3498
3572
|
|
@@ -3522,6 +3596,7 @@ module Aws::DynamoDB
|
|
3522
3596
|
class GetItemOutput < Struct.new(
|
3523
3597
|
:item,
|
3524
3598
|
:consumed_capacity)
|
3599
|
+
SENSITIVE = []
|
3525
3600
|
include Aws::Structure
|
3526
3601
|
end
|
3527
3602
|
|
@@ -3600,6 +3675,7 @@ module Aws::DynamoDB
|
|
3600
3675
|
:key_schema,
|
3601
3676
|
:projection,
|
3602
3677
|
:provisioned_throughput)
|
3678
|
+
SENSITIVE = []
|
3603
3679
|
include Aws::Structure
|
3604
3680
|
end
|
3605
3681
|
|
@@ -3642,6 +3718,7 @@ module Aws::DynamoDB
|
|
3642
3718
|
class GlobalSecondaryIndexAutoScalingUpdate < Struct.new(
|
3643
3719
|
:index_name,
|
3644
3720
|
:provisioned_write_capacity_auto_scaling_update)
|
3721
|
+
SENSITIVE = []
|
3645
3722
|
include Aws::Structure
|
3646
3723
|
end
|
3647
3724
|
|
@@ -3753,6 +3830,7 @@ module Aws::DynamoDB
|
|
3753
3830
|
:index_size_bytes,
|
3754
3831
|
:item_count,
|
3755
3832
|
:index_arn)
|
3833
|
+
SENSITIVE = []
|
3756
3834
|
include Aws::Structure
|
3757
3835
|
end
|
3758
3836
|
|
@@ -3803,6 +3881,7 @@ module Aws::DynamoDB
|
|
3803
3881
|
:key_schema,
|
3804
3882
|
:projection,
|
3805
3883
|
:provisioned_throughput)
|
3884
|
+
SENSITIVE = []
|
3806
3885
|
include Aws::Structure
|
3807
3886
|
end
|
3808
3887
|
|
@@ -3879,6 +3958,7 @@ module Aws::DynamoDB
|
|
3879
3958
|
:update,
|
3880
3959
|
:create,
|
3881
3960
|
:delete)
|
3961
|
+
SENSITIVE = []
|
3882
3962
|
include Aws::Structure
|
3883
3963
|
end
|
3884
3964
|
|
@@ -3897,6 +3977,7 @@ module Aws::DynamoDB
|
|
3897
3977
|
class GlobalTable < Struct.new(
|
3898
3978
|
:global_table_name,
|
3899
3979
|
:replication_group)
|
3980
|
+
SENSITIVE = []
|
3900
3981
|
include Aws::Structure
|
3901
3982
|
end
|
3902
3983
|
|
@@ -3909,6 +3990,7 @@ module Aws::DynamoDB
|
|
3909
3990
|
#
|
3910
3991
|
class GlobalTableAlreadyExistsException < Struct.new(
|
3911
3992
|
:message)
|
3993
|
+
SENSITIVE = []
|
3912
3994
|
include Aws::Structure
|
3913
3995
|
end
|
3914
3996
|
|
@@ -3950,6 +4032,7 @@ module Aws::DynamoDB
|
|
3950
4032
|
:creation_date_time,
|
3951
4033
|
:global_table_status,
|
3952
4034
|
:global_table_name)
|
4035
|
+
SENSITIVE = []
|
3953
4036
|
include Aws::Structure
|
3954
4037
|
end
|
3955
4038
|
|
@@ -4000,6 +4083,7 @@ module Aws::DynamoDB
|
|
4000
4083
|
:index_name,
|
4001
4084
|
:provisioned_write_capacity_units,
|
4002
4085
|
:provisioned_write_capacity_auto_scaling_settings_update)
|
4086
|
+
SENSITIVE = []
|
4003
4087
|
include Aws::Structure
|
4004
4088
|
end
|
4005
4089
|
|
@@ -4012,6 +4096,7 @@ module Aws::DynamoDB
|
|
4012
4096
|
#
|
4013
4097
|
class GlobalTableNotFoundException < Struct.new(
|
4014
4098
|
:message)
|
4099
|
+
SENSITIVE = []
|
4015
4100
|
include Aws::Structure
|
4016
4101
|
end
|
4017
4102
|
|
@@ -4025,6 +4110,7 @@ module Aws::DynamoDB
|
|
4025
4110
|
#
|
4026
4111
|
class IdempotentParameterMismatchException < Struct.new(
|
4027
4112
|
:message)
|
4113
|
+
SENSITIVE = []
|
4028
4114
|
include Aws::Structure
|
4029
4115
|
end
|
4030
4116
|
|
@@ -4037,6 +4123,7 @@ module Aws::DynamoDB
|
|
4037
4123
|
#
|
4038
4124
|
class IndexNotFoundException < Struct.new(
|
4039
4125
|
:message)
|
4126
|
+
SENSITIVE = []
|
4040
4127
|
include Aws::Structure
|
4041
4128
|
end
|
4042
4129
|
|
@@ -4051,6 +4138,7 @@ module Aws::DynamoDB
|
|
4051
4138
|
#
|
4052
4139
|
class InternalServerError < Struct.new(
|
4053
4140
|
:message)
|
4141
|
+
SENSITIVE = []
|
4054
4142
|
include Aws::Structure
|
4055
4143
|
end
|
4056
4144
|
|
@@ -4064,6 +4152,7 @@ module Aws::DynamoDB
|
|
4064
4152
|
#
|
4065
4153
|
class InvalidRestoreTimeException < Struct.new(
|
4066
4154
|
:message)
|
4155
|
+
SENSITIVE = []
|
4067
4156
|
include Aws::Structure
|
4068
4157
|
end
|
4069
4158
|
|
@@ -4094,6 +4183,7 @@ module Aws::DynamoDB
|
|
4094
4183
|
class ItemCollectionMetrics < Struct.new(
|
4095
4184
|
:item_collection_key,
|
4096
4185
|
:size_estimate_range_gb)
|
4186
|
+
SENSITIVE = []
|
4097
4187
|
include Aws::Structure
|
4098
4188
|
end
|
4099
4189
|
|
@@ -4109,6 +4199,7 @@ module Aws::DynamoDB
|
|
4109
4199
|
#
|
4110
4200
|
class ItemCollectionSizeLimitExceededException < Struct.new(
|
4111
4201
|
:message)
|
4202
|
+
SENSITIVE = []
|
4112
4203
|
include Aws::Structure
|
4113
4204
|
end
|
4114
4205
|
|
@@ -4123,6 +4214,7 @@ module Aws::DynamoDB
|
|
4123
4214
|
#
|
4124
4215
|
class ItemResponse < Struct.new(
|
4125
4216
|
:item)
|
4217
|
+
SENSITIVE = []
|
4126
4218
|
include Aws::Structure
|
4127
4219
|
end
|
4128
4220
|
|
@@ -4177,6 +4269,7 @@ module Aws::DynamoDB
|
|
4177
4269
|
class KeySchemaElement < Struct.new(
|
4178
4270
|
:attribute_name,
|
4179
4271
|
:key_type)
|
4272
|
+
SENSITIVE = []
|
4180
4273
|
include Aws::Structure
|
4181
4274
|
end
|
4182
4275
|
|
@@ -4305,6 +4398,7 @@ module Aws::DynamoDB
|
|
4305
4398
|
:consistent_read,
|
4306
4399
|
:projection_expression,
|
4307
4400
|
:expression_attribute_names)
|
4401
|
+
SENSITIVE = []
|
4308
4402
|
include Aws::Structure
|
4309
4403
|
end
|
4310
4404
|
|
@@ -4331,6 +4425,7 @@ module Aws::DynamoDB
|
|
4331
4425
|
#
|
4332
4426
|
class LimitExceededException < Struct.new(
|
4333
4427
|
:message)
|
4428
|
+
SENSITIVE = []
|
4334
4429
|
include Aws::Structure
|
4335
4430
|
end
|
4336
4431
|
|
@@ -4393,6 +4488,7 @@ module Aws::DynamoDB
|
|
4393
4488
|
:time_range_upper_bound,
|
4394
4489
|
:exclusive_start_backup_arn,
|
4395
4490
|
:backup_type)
|
4491
|
+
SENSITIVE = []
|
4396
4492
|
include Aws::Structure
|
4397
4493
|
end
|
4398
4494
|
|
@@ -4420,6 +4516,7 @@ module Aws::DynamoDB
|
|
4420
4516
|
class ListBackupsOutput < Struct.new(
|
4421
4517
|
:backup_summaries,
|
4422
4518
|
:last_evaluated_backup_arn)
|
4519
|
+
SENSITIVE = []
|
4423
4520
|
include Aws::Structure
|
4424
4521
|
end
|
4425
4522
|
|
@@ -4450,6 +4547,7 @@ module Aws::DynamoDB
|
|
4450
4547
|
:table_name,
|
4451
4548
|
:next_token,
|
4452
4549
|
:max_results)
|
4550
|
+
SENSITIVE = []
|
4453
4551
|
include Aws::Structure
|
4454
4552
|
end
|
4455
4553
|
|
@@ -4466,6 +4564,7 @@ module Aws::DynamoDB
|
|
4466
4564
|
class ListContributorInsightsOutput < Struct.new(
|
4467
4565
|
:contributor_insights_summaries,
|
4468
4566
|
:next_token)
|
4567
|
+
SENSITIVE = []
|
4469
4568
|
include Aws::Structure
|
4470
4569
|
end
|
4471
4570
|
|
@@ -4503,6 +4602,7 @@ module Aws::DynamoDB
|
|
4503
4602
|
:exclusive_start_global_table_name,
|
4504
4603
|
:limit,
|
4505
4604
|
:region_name)
|
4605
|
+
SENSITIVE = []
|
4506
4606
|
include Aws::Structure
|
4507
4607
|
end
|
4508
4608
|
|
@@ -4519,6 +4619,7 @@ module Aws::DynamoDB
|
|
4519
4619
|
class ListGlobalTablesOutput < Struct.new(
|
4520
4620
|
:global_tables,
|
4521
4621
|
:last_evaluated_global_table_name)
|
4622
|
+
SENSITIVE = []
|
4522
4623
|
include Aws::Structure
|
4523
4624
|
end
|
4524
4625
|
|
@@ -4548,6 +4649,7 @@ module Aws::DynamoDB
|
|
4548
4649
|
class ListTablesInput < Struct.new(
|
4549
4650
|
:exclusive_start_table_name,
|
4550
4651
|
:limit)
|
4652
|
+
SENSITIVE = []
|
4551
4653
|
include Aws::Structure
|
4552
4654
|
end
|
4553
4655
|
|
@@ -4577,6 +4679,7 @@ module Aws::DynamoDB
|
|
4577
4679
|
class ListTablesOutput < Struct.new(
|
4578
4680
|
:table_names,
|
4579
4681
|
:last_evaluated_table_name)
|
4682
|
+
SENSITIVE = []
|
4580
4683
|
include Aws::Structure
|
4581
4684
|
end
|
4582
4685
|
|
@@ -4604,6 +4707,7 @@ module Aws::DynamoDB
|
|
4604
4707
|
class ListTagsOfResourceInput < Struct.new(
|
4605
4708
|
:resource_arn,
|
4606
4709
|
:next_token)
|
4710
|
+
SENSITIVE = []
|
4607
4711
|
include Aws::Structure
|
4608
4712
|
end
|
4609
4713
|
|
@@ -4622,6 +4726,7 @@ module Aws::DynamoDB
|
|
4622
4726
|
class ListTagsOfResourceOutput < Struct.new(
|
4623
4727
|
:tags,
|
4624
4728
|
:next_token)
|
4729
|
+
SENSITIVE = []
|
4625
4730
|
include Aws::Structure
|
4626
4731
|
end
|
4627
4732
|
|
@@ -4683,6 +4788,7 @@ module Aws::DynamoDB
|
|
4683
4788
|
:index_name,
|
4684
4789
|
:key_schema,
|
4685
4790
|
:projection)
|
4791
|
+
SENSITIVE = []
|
4686
4792
|
include Aws::Structure
|
4687
4793
|
end
|
4688
4794
|
|
@@ -4745,6 +4851,7 @@ module Aws::DynamoDB
|
|
4745
4851
|
:index_size_bytes,
|
4746
4852
|
:item_count,
|
4747
4853
|
:index_arn)
|
4854
|
+
SENSITIVE = []
|
4748
4855
|
include Aws::Structure
|
4749
4856
|
end
|
4750
4857
|
|
@@ -4789,6 +4896,7 @@ module Aws::DynamoDB
|
|
4789
4896
|
:index_name,
|
4790
4897
|
:key_schema,
|
4791
4898
|
:projection)
|
4899
|
+
SENSITIVE = []
|
4792
4900
|
include Aws::Structure
|
4793
4901
|
end
|
4794
4902
|
|
@@ -4821,6 +4929,7 @@ module Aws::DynamoDB
|
|
4821
4929
|
:point_in_time_recovery_status,
|
4822
4930
|
:earliest_restorable_date_time,
|
4823
4931
|
:latest_restorable_date_time)
|
4932
|
+
SENSITIVE = []
|
4824
4933
|
include Aws::Structure
|
4825
4934
|
end
|
4826
4935
|
|
@@ -4842,6 +4951,7 @@ module Aws::DynamoDB
|
|
4842
4951
|
#
|
4843
4952
|
class PointInTimeRecoverySpecification < Struct.new(
|
4844
4953
|
:point_in_time_recovery_enabled)
|
4954
|
+
SENSITIVE = []
|
4845
4955
|
include Aws::Structure
|
4846
4956
|
end
|
4847
4957
|
|
@@ -4854,6 +4964,7 @@ module Aws::DynamoDB
|
|
4854
4964
|
#
|
4855
4965
|
class PointInTimeRecoveryUnavailableException < Struct.new(
|
4856
4966
|
:message)
|
4967
|
+
SENSITIVE = []
|
4857
4968
|
include Aws::Structure
|
4858
4969
|
end
|
4859
4970
|
|
@@ -4897,6 +5008,7 @@ module Aws::DynamoDB
|
|
4897
5008
|
class Projection < Struct.new(
|
4898
5009
|
:projection_type,
|
4899
5010
|
:non_key_attributes)
|
5011
|
+
SENSITIVE = []
|
4900
5012
|
include Aws::Structure
|
4901
5013
|
end
|
4902
5014
|
|
@@ -4952,6 +5064,7 @@ module Aws::DynamoDB
|
|
4952
5064
|
class ProvisionedThroughput < Struct.new(
|
4953
5065
|
:read_capacity_units,
|
4954
5066
|
:write_capacity_units)
|
5067
|
+
SENSITIVE = []
|
4955
5068
|
include Aws::Structure
|
4956
5069
|
end
|
4957
5070
|
|
@@ -5001,6 +5114,7 @@ module Aws::DynamoDB
|
|
5001
5114
|
:number_of_decreases_today,
|
5002
5115
|
:read_capacity_units,
|
5003
5116
|
:write_capacity_units)
|
5117
|
+
SENSITIVE = []
|
5004
5118
|
include Aws::Structure
|
5005
5119
|
end
|
5006
5120
|
|
@@ -5023,6 +5137,7 @@ module Aws::DynamoDB
|
|
5023
5137
|
#
|
5024
5138
|
class ProvisionedThroughputExceededException < Struct.new(
|
5025
5139
|
:message)
|
5140
|
+
SENSITIVE = []
|
5026
5141
|
include Aws::Structure
|
5027
5142
|
end
|
5028
5143
|
|
@@ -5045,6 +5160,7 @@ module Aws::DynamoDB
|
|
5045
5160
|
#
|
5046
5161
|
class ProvisionedThroughputOverride < Struct.new(
|
5047
5162
|
:read_capacity_units)
|
5163
|
+
SENSITIVE = []
|
5048
5164
|
include Aws::Structure
|
5049
5165
|
end
|
5050
5166
|
|
@@ -5111,6 +5227,7 @@ module Aws::DynamoDB
|
|
5111
5227
|
:expression_attribute_names,
|
5112
5228
|
:expression_attribute_values,
|
5113
5229
|
:return_values_on_condition_check_failure)
|
5230
|
+
SENSITIVE = []
|
5114
5231
|
include Aws::Structure
|
5115
5232
|
end
|
5116
5233
|
|
@@ -5163,6 +5280,11 @@ module Aws::DynamoDB
|
|
5163
5280
|
# the data types for those attributes must match those of the schema
|
5164
5281
|
# in the table's attribute definition.
|
5165
5282
|
#
|
5283
|
+
# Empty String and Binary attribute values are allowed. Attribute
|
5284
|
+
# values of type String and Binary must have a length greater than
|
5285
|
+
# zero if the attribute is used as a key attribute for a table or
|
5286
|
+
# index.
|
5287
|
+
#
|
5166
5288
|
# For more information about primary keys, see [Primary Key][1] in the
|
5167
5289
|
# *Amazon DynamoDB Developer Guide*.
|
5168
5290
|
#
|
@@ -5357,6 +5479,7 @@ module Aws::DynamoDB
|
|
5357
5479
|
:condition_expression,
|
5358
5480
|
:expression_attribute_names,
|
5359
5481
|
:expression_attribute_values)
|
5482
|
+
SENSITIVE = []
|
5360
5483
|
include Aws::Structure
|
5361
5484
|
end
|
5362
5485
|
|
@@ -5414,6 +5537,7 @@ module Aws::DynamoDB
|
|
5414
5537
|
:attributes,
|
5415
5538
|
:consumed_capacity,
|
5416
5539
|
:item_collection_metrics)
|
5540
|
+
SENSITIVE = []
|
5417
5541
|
include Aws::Structure
|
5418
5542
|
end
|
5419
5543
|
|
@@ -5441,6 +5565,7 @@ module Aws::DynamoDB
|
|
5441
5565
|
#
|
5442
5566
|
class PutRequest < Struct.new(
|
5443
5567
|
:item)
|
5568
|
+
SENSITIVE = []
|
5444
5569
|
include Aws::Structure
|
5445
5570
|
end
|
5446
5571
|
|
@@ -5890,6 +6015,7 @@ module Aws::DynamoDB
|
|
5890
6015
|
:key_condition_expression,
|
5891
6016
|
:expression_attribute_names,
|
5892
6017
|
:expression_attribute_values)
|
6018
|
+
SENSITIVE = []
|
5893
6019
|
include Aws::Structure
|
5894
6020
|
end
|
5895
6021
|
|
@@ -5964,6 +6090,7 @@ module Aws::DynamoDB
|
|
5964
6090
|
:scanned_count,
|
5965
6091
|
:last_evaluated_key,
|
5966
6092
|
:consumed_capacity)
|
6093
|
+
SENSITIVE = []
|
5967
6094
|
include Aws::Structure
|
5968
6095
|
end
|
5969
6096
|
|
@@ -5984,6 +6111,7 @@ module Aws::DynamoDB
|
|
5984
6111
|
#
|
5985
6112
|
class Replica < Struct.new(
|
5986
6113
|
:region_name)
|
6114
|
+
SENSITIVE = []
|
5987
6115
|
include Aws::Structure
|
5988
6116
|
end
|
5989
6117
|
|
@@ -5996,6 +6124,7 @@ module Aws::DynamoDB
|
|
5996
6124
|
#
|
5997
6125
|
class ReplicaAlreadyExistsException < Struct.new(
|
5998
6126
|
:message)
|
6127
|
+
SENSITIVE = []
|
5999
6128
|
include Aws::Structure
|
6000
6129
|
end
|
6001
6130
|
|
@@ -6039,6 +6168,7 @@ module Aws::DynamoDB
|
|
6039
6168
|
:replica_provisioned_read_capacity_auto_scaling_settings,
|
6040
6169
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
6041
6170
|
:replica_status)
|
6171
|
+
SENSITIVE = []
|
6042
6172
|
include Aws::Structure
|
6043
6173
|
end
|
6044
6174
|
|
@@ -6107,6 +6237,7 @@ module Aws::DynamoDB
|
|
6107
6237
|
:region_name,
|
6108
6238
|
:replica_global_secondary_index_updates,
|
6109
6239
|
:replica_provisioned_read_capacity_auto_scaling_update)
|
6240
|
+
SENSITIVE = []
|
6110
6241
|
include Aws::Structure
|
6111
6242
|
end
|
6112
6243
|
|
@@ -6161,6 +6292,7 @@ module Aws::DynamoDB
|
|
6161
6292
|
:kms_master_key_id,
|
6162
6293
|
:provisioned_throughput_override,
|
6163
6294
|
:global_secondary_indexes)
|
6295
|
+
SENSITIVE = []
|
6164
6296
|
include Aws::Structure
|
6165
6297
|
end
|
6166
6298
|
|
@@ -6190,6 +6322,7 @@ module Aws::DynamoDB
|
|
6190
6322
|
class ReplicaGlobalSecondaryIndex < Struct.new(
|
6191
6323
|
:index_name,
|
6192
6324
|
:provisioned_throughput_override)
|
6325
|
+
SENSITIVE = []
|
6193
6326
|
include Aws::Structure
|
6194
6327
|
end
|
6195
6328
|
|
@@ -6229,6 +6362,7 @@ module Aws::DynamoDB
|
|
6229
6362
|
:index_status,
|
6230
6363
|
:provisioned_read_capacity_auto_scaling_settings,
|
6231
6364
|
:provisioned_write_capacity_auto_scaling_settings)
|
6365
|
+
SENSITIVE = []
|
6232
6366
|
include Aws::Structure
|
6233
6367
|
end
|
6234
6368
|
|
@@ -6271,6 +6405,7 @@ module Aws::DynamoDB
|
|
6271
6405
|
class ReplicaGlobalSecondaryIndexAutoScalingUpdate < Struct.new(
|
6272
6406
|
:index_name,
|
6273
6407
|
:provisioned_read_capacity_auto_scaling_update)
|
6408
|
+
SENSITIVE = []
|
6274
6409
|
include Aws::Structure
|
6275
6410
|
end
|
6276
6411
|
|
@@ -6290,6 +6425,7 @@ module Aws::DynamoDB
|
|
6290
6425
|
class ReplicaGlobalSecondaryIndexDescription < Struct.new(
|
6291
6426
|
:index_name,
|
6292
6427
|
:provisioned_throughput_override)
|
6428
|
+
SENSITIVE = []
|
6293
6429
|
include Aws::Structure
|
6294
6430
|
end
|
6295
6431
|
|
@@ -6341,6 +6477,7 @@ module Aws::DynamoDB
|
|
6341
6477
|
:provisioned_read_capacity_auto_scaling_settings,
|
6342
6478
|
:provisioned_write_capacity_units,
|
6343
6479
|
:provisioned_write_capacity_auto_scaling_settings)
|
6480
|
+
SENSITIVE = []
|
6344
6481
|
include Aws::Structure
|
6345
6482
|
end
|
6346
6483
|
|
@@ -6391,6 +6528,7 @@ module Aws::DynamoDB
|
|
6391
6528
|
:index_name,
|
6392
6529
|
:provisioned_read_capacity_units,
|
6393
6530
|
:provisioned_read_capacity_auto_scaling_settings_update)
|
6531
|
+
SENSITIVE = []
|
6394
6532
|
include Aws::Structure
|
6395
6533
|
end
|
6396
6534
|
|
@@ -6403,6 +6541,7 @@ module Aws::DynamoDB
|
|
6403
6541
|
#
|
6404
6542
|
class ReplicaNotFoundException < Struct.new(
|
6405
6543
|
:message)
|
6544
|
+
SENSITIVE = []
|
6406
6545
|
include Aws::Structure
|
6407
6546
|
end
|
6408
6547
|
|
@@ -6475,6 +6614,7 @@ module Aws::DynamoDB
|
|
6475
6614
|
:replica_provisioned_write_capacity_units,
|
6476
6615
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
6477
6616
|
:replica_global_secondary_index_settings)
|
6617
|
+
SENSITIVE = []
|
6478
6618
|
include Aws::Structure
|
6479
6619
|
end
|
6480
6620
|
|
@@ -6557,6 +6697,7 @@ module Aws::DynamoDB
|
|
6557
6697
|
:replica_provisioned_read_capacity_units,
|
6558
6698
|
:replica_provisioned_read_capacity_auto_scaling_settings_update,
|
6559
6699
|
:replica_global_secondary_index_settings_update)
|
6700
|
+
SENSITIVE = []
|
6560
6701
|
include Aws::Structure
|
6561
6702
|
end
|
6562
6703
|
|
@@ -6594,6 +6735,7 @@ module Aws::DynamoDB
|
|
6594
6735
|
class ReplicaUpdate < Struct.new(
|
6595
6736
|
:create,
|
6596
6737
|
:delete)
|
6738
|
+
SENSITIVE = []
|
6597
6739
|
include Aws::Structure
|
6598
6740
|
end
|
6599
6741
|
|
@@ -6667,6 +6809,7 @@ module Aws::DynamoDB
|
|
6667
6809
|
:create,
|
6668
6810
|
:update,
|
6669
6811
|
:delete)
|
6812
|
+
SENSITIVE = []
|
6670
6813
|
include Aws::Structure
|
6671
6814
|
end
|
6672
6815
|
|
@@ -6685,6 +6828,7 @@ module Aws::DynamoDB
|
|
6685
6828
|
#
|
6686
6829
|
class RequestLimitExceeded < Struct.new(
|
6687
6830
|
:message)
|
6831
|
+
SENSITIVE = []
|
6688
6832
|
include Aws::Structure
|
6689
6833
|
end
|
6690
6834
|
|
@@ -6700,6 +6844,7 @@ module Aws::DynamoDB
|
|
6700
6844
|
#
|
6701
6845
|
class ResourceInUseException < Struct.new(
|
6702
6846
|
:message)
|
6847
|
+
SENSITIVE = []
|
6703
6848
|
include Aws::Structure
|
6704
6849
|
end
|
6705
6850
|
|
@@ -6715,6 +6860,7 @@ module Aws::DynamoDB
|
|
6715
6860
|
#
|
6716
6861
|
class ResourceNotFoundException < Struct.new(
|
6717
6862
|
:message)
|
6863
|
+
SENSITIVE = []
|
6718
6864
|
include Aws::Structure
|
6719
6865
|
end
|
6720
6866
|
|
@@ -6744,6 +6890,7 @@ module Aws::DynamoDB
|
|
6744
6890
|
:source_table_arn,
|
6745
6891
|
:restore_date_time,
|
6746
6892
|
:restore_in_progress)
|
6893
|
+
SENSITIVE = []
|
6747
6894
|
include Aws::Structure
|
6748
6895
|
end
|
6749
6896
|
|
@@ -6841,6 +6988,7 @@ module Aws::DynamoDB
|
|
6841
6988
|
:local_secondary_index_override,
|
6842
6989
|
:provisioned_throughput_override,
|
6843
6990
|
:sse_specification_override)
|
6991
|
+
SENSITIVE = []
|
6844
6992
|
include Aws::Structure
|
6845
6993
|
end
|
6846
6994
|
|
@@ -6852,6 +7000,7 @@ module Aws::DynamoDB
|
|
6852
7000
|
#
|
6853
7001
|
class RestoreTableFromBackupOutput < Struct.new(
|
6854
7002
|
:table_description)
|
7003
|
+
SENSITIVE = []
|
6855
7004
|
include Aws::Structure
|
6856
7005
|
end
|
6857
7006
|
|
@@ -6970,6 +7119,7 @@ module Aws::DynamoDB
|
|
6970
7119
|
:local_secondary_index_override,
|
6971
7120
|
:provisioned_throughput_override,
|
6972
7121
|
:sse_specification_override)
|
7122
|
+
SENSITIVE = []
|
6973
7123
|
include Aws::Structure
|
6974
7124
|
end
|
6975
7125
|
|
@@ -6981,6 +7131,7 @@ module Aws::DynamoDB
|
|
6981
7131
|
#
|
6982
7132
|
class RestoreTableToPointInTimeOutput < Struct.new(
|
6983
7133
|
:table_description)
|
7134
|
+
SENSITIVE = []
|
6984
7135
|
include Aws::Structure
|
6985
7136
|
end
|
6986
7137
|
|
@@ -7027,6 +7178,7 @@ module Aws::DynamoDB
|
|
7027
7178
|
:sse_type,
|
7028
7179
|
:kms_master_key_arn,
|
7029
7180
|
:inaccessible_encryption_date_time)
|
7181
|
+
SENSITIVE = []
|
7030
7182
|
include Aws::Structure
|
7031
7183
|
end
|
7032
7184
|
|
@@ -7073,6 +7225,7 @@ module Aws::DynamoDB
|
|
7073
7225
|
:enabled,
|
7074
7226
|
:sse_type,
|
7075
7227
|
:kms_master_key_id)
|
7228
|
+
SENSITIVE = []
|
7076
7229
|
include Aws::Structure
|
7077
7230
|
end
|
7078
7231
|
|
@@ -7447,6 +7600,7 @@ module Aws::DynamoDB
|
|
7447
7600
|
:expression_attribute_names,
|
7448
7601
|
:expression_attribute_values,
|
7449
7602
|
:consistent_read)
|
7603
|
+
SENSITIVE = []
|
7450
7604
|
include Aws::Structure
|
7451
7605
|
end
|
7452
7606
|
|
@@ -7519,6 +7673,7 @@ module Aws::DynamoDB
|
|
7519
7673
|
:scanned_count,
|
7520
7674
|
:last_evaluated_key,
|
7521
7675
|
:consumed_capacity)
|
7676
|
+
SENSITIVE = []
|
7522
7677
|
include Aws::Structure
|
7523
7678
|
end
|
7524
7679
|
|
@@ -7582,6 +7737,7 @@ module Aws::DynamoDB
|
|
7582
7737
|
:provisioned_throughput,
|
7583
7738
|
:item_count,
|
7584
7739
|
:billing_mode)
|
7740
|
+
SENSITIVE = []
|
7585
7741
|
include Aws::Structure
|
7586
7742
|
end
|
7587
7743
|
|
@@ -7622,6 +7778,7 @@ module Aws::DynamoDB
|
|
7622
7778
|
:stream_description,
|
7623
7779
|
:time_to_live_description,
|
7624
7780
|
:sse_description)
|
7781
|
+
SENSITIVE = []
|
7625
7782
|
include Aws::Structure
|
7626
7783
|
end
|
7627
7784
|
|
@@ -7663,6 +7820,7 @@ module Aws::DynamoDB
|
|
7663
7820
|
class StreamSpecification < Struct.new(
|
7664
7821
|
:stream_enabled,
|
7665
7822
|
:stream_view_type)
|
7823
|
+
SENSITIVE = []
|
7666
7824
|
include Aws::Structure
|
7667
7825
|
end
|
7668
7826
|
|
@@ -7675,6 +7833,7 @@ module Aws::DynamoDB
|
|
7675
7833
|
#
|
7676
7834
|
class TableAlreadyExistsException < Struct.new(
|
7677
7835
|
:message)
|
7836
|
+
SENSITIVE = []
|
7678
7837
|
include Aws::Structure
|
7679
7838
|
end
|
7680
7839
|
|
@@ -7706,6 +7865,7 @@ module Aws::DynamoDB
|
|
7706
7865
|
:table_name,
|
7707
7866
|
:table_status,
|
7708
7867
|
:replicas)
|
7868
|
+
SENSITIVE = []
|
7709
7869
|
include Aws::Structure
|
7710
7870
|
end
|
7711
7871
|
|
@@ -8022,6 +8182,7 @@ module Aws::DynamoDB
|
|
8022
8182
|
:restore_summary,
|
8023
8183
|
:sse_description,
|
8024
8184
|
:archival_summary)
|
8185
|
+
SENSITIVE = []
|
8025
8186
|
include Aws::Structure
|
8026
8187
|
end
|
8027
8188
|
|
@@ -8035,6 +8196,7 @@ module Aws::DynamoDB
|
|
8035
8196
|
#
|
8036
8197
|
class TableInUseException < Struct.new(
|
8037
8198
|
:message)
|
8199
|
+
SENSITIVE = []
|
8038
8200
|
include Aws::Structure
|
8039
8201
|
end
|
8040
8202
|
|
@@ -8048,6 +8210,7 @@ module Aws::DynamoDB
|
|
8048
8210
|
#
|
8049
8211
|
class TableNotFoundException < Struct.new(
|
8050
8212
|
:message)
|
8213
|
+
SENSITIVE = []
|
8051
8214
|
include Aws::Structure
|
8052
8215
|
end
|
8053
8216
|
|
@@ -8091,6 +8254,7 @@ module Aws::DynamoDB
|
|
8091
8254
|
class Tag < Struct.new(
|
8092
8255
|
:key,
|
8093
8256
|
:value)
|
8257
|
+
SENSITIVE = []
|
8094
8258
|
include Aws::Structure
|
8095
8259
|
end
|
8096
8260
|
|
@@ -8121,6 +8285,7 @@ module Aws::DynamoDB
|
|
8121
8285
|
class TagResourceInput < Struct.new(
|
8122
8286
|
:resource_arn,
|
8123
8287
|
:tags)
|
8288
|
+
SENSITIVE = []
|
8124
8289
|
include Aws::Structure
|
8125
8290
|
end
|
8126
8291
|
|
@@ -8140,6 +8305,7 @@ module Aws::DynamoDB
|
|
8140
8305
|
class TimeToLiveDescription < Struct.new(
|
8141
8306
|
:time_to_live_status,
|
8142
8307
|
:attribute_name)
|
8308
|
+
SENSITIVE = []
|
8143
8309
|
include Aws::Structure
|
8144
8310
|
end
|
8145
8311
|
|
@@ -8169,6 +8335,7 @@ module Aws::DynamoDB
|
|
8169
8335
|
class TimeToLiveSpecification < Struct.new(
|
8170
8336
|
:enabled,
|
8171
8337
|
:attribute_name)
|
8338
|
+
SENSITIVE = []
|
8172
8339
|
include Aws::Structure
|
8173
8340
|
end
|
8174
8341
|
|
@@ -8200,6 +8367,7 @@ module Aws::DynamoDB
|
|
8200
8367
|
#
|
8201
8368
|
class TransactGetItem < Struct.new(
|
8202
8369
|
:get)
|
8370
|
+
SENSITIVE = []
|
8203
8371
|
include Aws::Structure
|
8204
8372
|
end
|
8205
8373
|
|
@@ -8240,6 +8408,7 @@ module Aws::DynamoDB
|
|
8240
8408
|
class TransactGetItemsInput < Struct.new(
|
8241
8409
|
:transact_items,
|
8242
8410
|
:return_consumed_capacity)
|
8411
|
+
SENSITIVE = []
|
8243
8412
|
include Aws::Structure
|
8244
8413
|
end
|
8245
8414
|
|
@@ -8269,6 +8438,7 @@ module Aws::DynamoDB
|
|
8269
8438
|
class TransactGetItemsOutput < Struct.new(
|
8270
8439
|
:consumed_capacity,
|
8271
8440
|
:responses)
|
8441
|
+
SENSITIVE = []
|
8272
8442
|
include Aws::Structure
|
8273
8443
|
end
|
8274
8444
|
|
@@ -8361,6 +8531,7 @@ module Aws::DynamoDB
|
|
8361
8531
|
:put,
|
8362
8532
|
:delete,
|
8363
8533
|
:update)
|
8534
|
+
SENSITIVE = []
|
8364
8535
|
include Aws::Structure
|
8365
8536
|
end
|
8366
8537
|
|
@@ -8505,6 +8676,7 @@ module Aws::DynamoDB
|
|
8505
8676
|
:return_consumed_capacity,
|
8506
8677
|
:return_item_collection_metrics,
|
8507
8678
|
:client_request_token)
|
8679
|
+
SENSITIVE = []
|
8508
8680
|
include Aws::Structure
|
8509
8681
|
end
|
8510
8682
|
|
@@ -8526,6 +8698,7 @@ module Aws::DynamoDB
|
|
8526
8698
|
class TransactWriteItemsOutput < Struct.new(
|
8527
8699
|
:consumed_capacity,
|
8528
8700
|
:item_collection_metrics)
|
8701
|
+
SENSITIVE = []
|
8529
8702
|
include Aws::Structure
|
8530
8703
|
end
|
8531
8704
|
|
@@ -8695,6 +8868,7 @@ module Aws::DynamoDB
|
|
8695
8868
|
class TransactionCanceledException < Struct.new(
|
8696
8869
|
:message,
|
8697
8870
|
:cancellation_reasons)
|
8871
|
+
SENSITIVE = []
|
8698
8872
|
include Aws::Structure
|
8699
8873
|
end
|
8700
8874
|
|
@@ -8708,6 +8882,7 @@ module Aws::DynamoDB
|
|
8708
8882
|
#
|
8709
8883
|
class TransactionConflictException < Struct.new(
|
8710
8884
|
:message)
|
8885
|
+
SENSITIVE = []
|
8711
8886
|
include Aws::Structure
|
8712
8887
|
end
|
8713
8888
|
|
@@ -8720,6 +8895,7 @@ module Aws::DynamoDB
|
|
8720
8895
|
#
|
8721
8896
|
class TransactionInProgressException < Struct.new(
|
8722
8897
|
:message)
|
8898
|
+
SENSITIVE = []
|
8723
8899
|
include Aws::Structure
|
8724
8900
|
end
|
8725
8901
|
|
@@ -8746,6 +8922,7 @@ module Aws::DynamoDB
|
|
8746
8922
|
class UntagResourceInput < Struct.new(
|
8747
8923
|
:resource_arn,
|
8748
8924
|
:tag_keys)
|
8925
|
+
SENSITIVE = []
|
8749
8926
|
include Aws::Structure
|
8750
8927
|
end
|
8751
8928
|
|
@@ -8815,6 +8992,7 @@ module Aws::DynamoDB
|
|
8815
8992
|
:expression_attribute_names,
|
8816
8993
|
:expression_attribute_values,
|
8817
8994
|
:return_values_on_condition_check_failure)
|
8995
|
+
SENSITIVE = []
|
8818
8996
|
include Aws::Structure
|
8819
8997
|
end
|
8820
8998
|
|
@@ -8841,6 +9019,7 @@ module Aws::DynamoDB
|
|
8841
9019
|
class UpdateContinuousBackupsInput < Struct.new(
|
8842
9020
|
:table_name,
|
8843
9021
|
:point_in_time_recovery_specification)
|
9022
|
+
SENSITIVE = []
|
8844
9023
|
include Aws::Structure
|
8845
9024
|
end
|
8846
9025
|
|
@@ -8853,6 +9032,7 @@ module Aws::DynamoDB
|
|
8853
9032
|
#
|
8854
9033
|
class UpdateContinuousBackupsOutput < Struct.new(
|
8855
9034
|
:continuous_backups_description)
|
9035
|
+
SENSITIVE = []
|
8856
9036
|
include Aws::Structure
|
8857
9037
|
end
|
8858
9038
|
|
@@ -8883,6 +9063,7 @@ module Aws::DynamoDB
|
|
8883
9063
|
:table_name,
|
8884
9064
|
:index_name,
|
8885
9065
|
:contributor_insights_action)
|
9066
|
+
SENSITIVE = []
|
8886
9067
|
include Aws::Structure
|
8887
9068
|
end
|
8888
9069
|
|
@@ -8904,6 +9085,7 @@ module Aws::DynamoDB
|
|
8904
9085
|
:table_name,
|
8905
9086
|
:index_name,
|
8906
9087
|
:contributor_insights_status)
|
9088
|
+
SENSITIVE = []
|
8907
9089
|
include Aws::Structure
|
8908
9090
|
end
|
8909
9091
|
|
@@ -8942,6 +9124,7 @@ module Aws::DynamoDB
|
|
8942
9124
|
class UpdateGlobalSecondaryIndexAction < Struct.new(
|
8943
9125
|
:index_name,
|
8944
9126
|
:provisioned_throughput)
|
9127
|
+
SENSITIVE = []
|
8945
9128
|
include Aws::Structure
|
8946
9129
|
end
|
8947
9130
|
|
@@ -8976,6 +9159,7 @@ module Aws::DynamoDB
|
|
8976
9159
|
class UpdateGlobalTableInput < Struct.new(
|
8977
9160
|
:global_table_name,
|
8978
9161
|
:replica_updates)
|
9162
|
+
SENSITIVE = []
|
8979
9163
|
include Aws::Structure
|
8980
9164
|
end
|
8981
9165
|
|
@@ -8987,6 +9171,7 @@ module Aws::DynamoDB
|
|
8987
9171
|
#
|
8988
9172
|
class UpdateGlobalTableOutput < Struct.new(
|
8989
9173
|
:global_table_description)
|
9174
|
+
SENSITIVE = []
|
8990
9175
|
include Aws::Structure
|
8991
9176
|
end
|
8992
9177
|
|
@@ -9129,6 +9314,7 @@ module Aws::DynamoDB
|
|
9129
9314
|
:global_table_provisioned_write_capacity_auto_scaling_settings_update,
|
9130
9315
|
:global_table_global_secondary_index_settings_update,
|
9131
9316
|
:replica_settings_update)
|
9317
|
+
SENSITIVE = []
|
9132
9318
|
include Aws::Structure
|
9133
9319
|
end
|
9134
9320
|
|
@@ -9145,6 +9331,7 @@ module Aws::DynamoDB
|
|
9145
9331
|
class UpdateGlobalTableSettingsOutput < Struct.new(
|
9146
9332
|
:global_table_name,
|
9147
9333
|
:replica_settings)
|
9334
|
+
SENSITIVE = []
|
9148
9335
|
include Aws::Structure
|
9149
9336
|
end
|
9150
9337
|
|
@@ -9500,6 +9687,7 @@ module Aws::DynamoDB
|
|
9500
9687
|
:condition_expression,
|
9501
9688
|
:expression_attribute_names,
|
9502
9689
|
:expression_attribute_values)
|
9690
|
+
SENSITIVE = []
|
9503
9691
|
include Aws::Structure
|
9504
9692
|
end
|
9505
9693
|
|
@@ -9560,6 +9748,7 @@ module Aws::DynamoDB
|
|
9560
9748
|
:attributes,
|
9561
9749
|
:consumed_capacity,
|
9562
9750
|
:item_collection_metrics)
|
9751
|
+
SENSITIVE = []
|
9563
9752
|
include Aws::Structure
|
9564
9753
|
end
|
9565
9754
|
|
@@ -9612,6 +9801,7 @@ module Aws::DynamoDB
|
|
9612
9801
|
:kms_master_key_id,
|
9613
9802
|
:provisioned_throughput_override,
|
9614
9803
|
:global_secondary_indexes)
|
9804
|
+
SENSITIVE = []
|
9615
9805
|
include Aws::Structure
|
9616
9806
|
end
|
9617
9807
|
|
@@ -9811,6 +10001,7 @@ module Aws::DynamoDB
|
|
9811
10001
|
:stream_specification,
|
9812
10002
|
:sse_specification,
|
9813
10003
|
:replica_updates)
|
10004
|
+
SENSITIVE = []
|
9814
10005
|
include Aws::Structure
|
9815
10006
|
end
|
9816
10007
|
|
@@ -9824,6 +10015,7 @@ module Aws::DynamoDB
|
|
9824
10015
|
#
|
9825
10016
|
class UpdateTableOutput < Struct.new(
|
9826
10017
|
:table_description)
|
10018
|
+
SENSITIVE = []
|
9827
10019
|
include Aws::Structure
|
9828
10020
|
end
|
9829
10021
|
|
@@ -9935,6 +10127,7 @@ module Aws::DynamoDB
|
|
9935
10127
|
:table_name,
|
9936
10128
|
:provisioned_write_capacity_auto_scaling_update,
|
9937
10129
|
:replica_updates)
|
10130
|
+
SENSITIVE = []
|
9938
10131
|
include Aws::Structure
|
9939
10132
|
end
|
9940
10133
|
|
@@ -9947,6 +10140,7 @@ module Aws::DynamoDB
|
|
9947
10140
|
#
|
9948
10141
|
class UpdateTableReplicaAutoScalingOutput < Struct.new(
|
9949
10142
|
:table_auto_scaling_description)
|
10143
|
+
SENSITIVE = []
|
9950
10144
|
include Aws::Structure
|
9951
10145
|
end
|
9952
10146
|
|
@@ -9977,6 +10171,7 @@ module Aws::DynamoDB
|
|
9977
10171
|
class UpdateTimeToLiveInput < Struct.new(
|
9978
10172
|
:table_name,
|
9979
10173
|
:time_to_live_specification)
|
10174
|
+
SENSITIVE = []
|
9980
10175
|
include Aws::Structure
|
9981
10176
|
end
|
9982
10177
|
|
@@ -9988,6 +10183,7 @@ module Aws::DynamoDB
|
|
9988
10183
|
#
|
9989
10184
|
class UpdateTimeToLiveOutput < Struct.new(
|
9990
10185
|
:time_to_live_specification)
|
10186
|
+
SENSITIVE = []
|
9991
10187
|
include Aws::Structure
|
9992
10188
|
end
|
9993
10189
|
|
@@ -10025,6 +10221,7 @@ module Aws::DynamoDB
|
|
10025
10221
|
class WriteRequest < Struct.new(
|
10026
10222
|
:put_request,
|
10027
10223
|
:delete_request)
|
10224
|
+
SENSITIVE = []
|
10028
10225
|
include Aws::Structure
|
10029
10226
|
end
|
10030
10227
|
|