aws-sdk-dynamodb 1.48.0 → 1.53.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 +5 -2
- data/lib/aws-sdk-dynamodb/attribute_value.rb +2 -0
- data/lib/aws-sdk-dynamodb/client.rb +28 -9
- 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 +2 -0
- data/lib/aws-sdk-dynamodb/types.rb +192 -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: 2280988e0db3b13a3cca76f32f5aa98dde7b2df91c747d0f095919e79cdf1608
|
4
|
+
data.tar.gz: 7ec8a00f33be4caa9d98c68bad385082b0ed23c37e262743fea005bbf50a07b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0c69823a410239e3cf74ba4e417bc127f5d0cf5a3b78d4fe3d9bc4c7a342f48239669f7a3c1b0520118117669831c795b18720c142227cc3f3007936086a845
|
7
|
+
data.tar.gz: 2660eaf2efa4b3f80145b3d5851fd0a1f5169e0d1b960899944528089dbf472bce389a6364dba8f7b47683f73e05f659c9f701b3f9dac5e5f83414563b428de8
|
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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -44,9 +47,9 @@ require_relative 'aws-sdk-dynamodb/customizations'
|
|
44
47
|
#
|
45
48
|
# See {Errors} for more information.
|
46
49
|
#
|
47
|
-
#
|
50
|
+
# @!group service
|
48
51
|
module Aws::DynamoDB
|
49
52
|
|
50
|
-
GEM_VERSION = '1.
|
53
|
+
GEM_VERSION = '1.53.0'
|
51
54
|
|
52
55
|
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)
|
@@ -87,13 +91,28 @@ module Aws::DynamoDB
|
|
87
91
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
88
92
|
# credentials.
|
89
93
|
#
|
94
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
95
|
+
# shared file, such as `~/.aws/config`.
|
96
|
+
#
|
97
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
98
|
+
#
|
99
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
100
|
+
# assume a role after providing credentials via the web.
|
101
|
+
#
|
102
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
103
|
+
# access token generated from `aws login`.
|
104
|
+
#
|
105
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
106
|
+
# process that outputs to stdout.
|
107
|
+
#
|
90
108
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
91
109
|
# from an EC2 IMDS on an EC2 instance.
|
92
110
|
#
|
93
|
-
# * `Aws::
|
94
|
-
#
|
111
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
112
|
+
# instances running in ECS.
|
95
113
|
#
|
96
|
-
# * `Aws::
|
114
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
115
|
+
# from the Cognito Identity service.
|
97
116
|
#
|
98
117
|
# When `:credentials` are not configured directly, the following
|
99
118
|
# locations will be searched for credentials:
|
@@ -103,10 +122,10 @@ module Aws::DynamoDB
|
|
103
122
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
104
123
|
# * `~/.aws/credentials`
|
105
124
|
# * `~/.aws/config`
|
106
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
107
|
-
# very aggressive. Construct and pass an instance of
|
108
|
-
# `Aws::InstanceProfileCredentails`
|
109
|
-
# timeouts.
|
125
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
126
|
+
# are very aggressive. Construct and pass an instance of
|
127
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
128
|
+
# enable retries and extended timeouts.
|
110
129
|
#
|
111
130
|
# @option options [required, String] :region
|
112
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,7 +192,7 @@ module Aws::DynamoDB
|
|
173
192
|
# @option options [String] :endpoint
|
174
193
|
# The client endpoint is normally constructed from the `:region`
|
175
194
|
# option. You should only configure an `:endpoint` when connecting
|
176
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
195
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
177
196
|
#
|
178
197
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
179
198
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -6656,7 +6675,7 @@ module Aws::DynamoDB
|
|
6656
6675
|
params: params,
|
6657
6676
|
config: config)
|
6658
6677
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
6659
|
-
context[:gem_version] = '1.
|
6678
|
+
context[:gem_version] = '1.53.0'
|
6660
6679
|
Seahorse::Client::Request.new(handlers, context)
|
6661
6680
|
end
|
6662
6681
|
|
@@ -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
|
|
@@ -5362,6 +5479,7 @@ module Aws::DynamoDB
|
|
5362
5479
|
:condition_expression,
|
5363
5480
|
:expression_attribute_names,
|
5364
5481
|
:expression_attribute_values)
|
5482
|
+
SENSITIVE = []
|
5365
5483
|
include Aws::Structure
|
5366
5484
|
end
|
5367
5485
|
|
@@ -5419,6 +5537,7 @@ module Aws::DynamoDB
|
|
5419
5537
|
:attributes,
|
5420
5538
|
:consumed_capacity,
|
5421
5539
|
:item_collection_metrics)
|
5540
|
+
SENSITIVE = []
|
5422
5541
|
include Aws::Structure
|
5423
5542
|
end
|
5424
5543
|
|
@@ -5446,6 +5565,7 @@ module Aws::DynamoDB
|
|
5446
5565
|
#
|
5447
5566
|
class PutRequest < Struct.new(
|
5448
5567
|
:item)
|
5568
|
+
SENSITIVE = []
|
5449
5569
|
include Aws::Structure
|
5450
5570
|
end
|
5451
5571
|
|
@@ -5895,6 +6015,7 @@ module Aws::DynamoDB
|
|
5895
6015
|
:key_condition_expression,
|
5896
6016
|
:expression_attribute_names,
|
5897
6017
|
:expression_attribute_values)
|
6018
|
+
SENSITIVE = []
|
5898
6019
|
include Aws::Structure
|
5899
6020
|
end
|
5900
6021
|
|
@@ -5969,6 +6090,7 @@ module Aws::DynamoDB
|
|
5969
6090
|
:scanned_count,
|
5970
6091
|
:last_evaluated_key,
|
5971
6092
|
:consumed_capacity)
|
6093
|
+
SENSITIVE = []
|
5972
6094
|
include Aws::Structure
|
5973
6095
|
end
|
5974
6096
|
|
@@ -5989,6 +6111,7 @@ module Aws::DynamoDB
|
|
5989
6111
|
#
|
5990
6112
|
class Replica < Struct.new(
|
5991
6113
|
:region_name)
|
6114
|
+
SENSITIVE = []
|
5992
6115
|
include Aws::Structure
|
5993
6116
|
end
|
5994
6117
|
|
@@ -6001,6 +6124,7 @@ module Aws::DynamoDB
|
|
6001
6124
|
#
|
6002
6125
|
class ReplicaAlreadyExistsException < Struct.new(
|
6003
6126
|
:message)
|
6127
|
+
SENSITIVE = []
|
6004
6128
|
include Aws::Structure
|
6005
6129
|
end
|
6006
6130
|
|
@@ -6044,6 +6168,7 @@ module Aws::DynamoDB
|
|
6044
6168
|
:replica_provisioned_read_capacity_auto_scaling_settings,
|
6045
6169
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
6046
6170
|
:replica_status)
|
6171
|
+
SENSITIVE = []
|
6047
6172
|
include Aws::Structure
|
6048
6173
|
end
|
6049
6174
|
|
@@ -6112,6 +6237,7 @@ module Aws::DynamoDB
|
|
6112
6237
|
:region_name,
|
6113
6238
|
:replica_global_secondary_index_updates,
|
6114
6239
|
:replica_provisioned_read_capacity_auto_scaling_update)
|
6240
|
+
SENSITIVE = []
|
6115
6241
|
include Aws::Structure
|
6116
6242
|
end
|
6117
6243
|
|
@@ -6166,6 +6292,7 @@ module Aws::DynamoDB
|
|
6166
6292
|
:kms_master_key_id,
|
6167
6293
|
:provisioned_throughput_override,
|
6168
6294
|
:global_secondary_indexes)
|
6295
|
+
SENSITIVE = []
|
6169
6296
|
include Aws::Structure
|
6170
6297
|
end
|
6171
6298
|
|
@@ -6195,6 +6322,7 @@ module Aws::DynamoDB
|
|
6195
6322
|
class ReplicaGlobalSecondaryIndex < Struct.new(
|
6196
6323
|
:index_name,
|
6197
6324
|
:provisioned_throughput_override)
|
6325
|
+
SENSITIVE = []
|
6198
6326
|
include Aws::Structure
|
6199
6327
|
end
|
6200
6328
|
|
@@ -6234,6 +6362,7 @@ module Aws::DynamoDB
|
|
6234
6362
|
:index_status,
|
6235
6363
|
:provisioned_read_capacity_auto_scaling_settings,
|
6236
6364
|
:provisioned_write_capacity_auto_scaling_settings)
|
6365
|
+
SENSITIVE = []
|
6237
6366
|
include Aws::Structure
|
6238
6367
|
end
|
6239
6368
|
|
@@ -6276,6 +6405,7 @@ module Aws::DynamoDB
|
|
6276
6405
|
class ReplicaGlobalSecondaryIndexAutoScalingUpdate < Struct.new(
|
6277
6406
|
:index_name,
|
6278
6407
|
:provisioned_read_capacity_auto_scaling_update)
|
6408
|
+
SENSITIVE = []
|
6279
6409
|
include Aws::Structure
|
6280
6410
|
end
|
6281
6411
|
|
@@ -6295,6 +6425,7 @@ module Aws::DynamoDB
|
|
6295
6425
|
class ReplicaGlobalSecondaryIndexDescription < Struct.new(
|
6296
6426
|
:index_name,
|
6297
6427
|
:provisioned_throughput_override)
|
6428
|
+
SENSITIVE = []
|
6298
6429
|
include Aws::Structure
|
6299
6430
|
end
|
6300
6431
|
|
@@ -6346,6 +6477,7 @@ module Aws::DynamoDB
|
|
6346
6477
|
:provisioned_read_capacity_auto_scaling_settings,
|
6347
6478
|
:provisioned_write_capacity_units,
|
6348
6479
|
:provisioned_write_capacity_auto_scaling_settings)
|
6480
|
+
SENSITIVE = []
|
6349
6481
|
include Aws::Structure
|
6350
6482
|
end
|
6351
6483
|
|
@@ -6396,6 +6528,7 @@ module Aws::DynamoDB
|
|
6396
6528
|
:index_name,
|
6397
6529
|
:provisioned_read_capacity_units,
|
6398
6530
|
:provisioned_read_capacity_auto_scaling_settings_update)
|
6531
|
+
SENSITIVE = []
|
6399
6532
|
include Aws::Structure
|
6400
6533
|
end
|
6401
6534
|
|
@@ -6408,6 +6541,7 @@ module Aws::DynamoDB
|
|
6408
6541
|
#
|
6409
6542
|
class ReplicaNotFoundException < Struct.new(
|
6410
6543
|
:message)
|
6544
|
+
SENSITIVE = []
|
6411
6545
|
include Aws::Structure
|
6412
6546
|
end
|
6413
6547
|
|
@@ -6480,6 +6614,7 @@ module Aws::DynamoDB
|
|
6480
6614
|
:replica_provisioned_write_capacity_units,
|
6481
6615
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
6482
6616
|
:replica_global_secondary_index_settings)
|
6617
|
+
SENSITIVE = []
|
6483
6618
|
include Aws::Structure
|
6484
6619
|
end
|
6485
6620
|
|
@@ -6562,6 +6697,7 @@ module Aws::DynamoDB
|
|
6562
6697
|
:replica_provisioned_read_capacity_units,
|
6563
6698
|
:replica_provisioned_read_capacity_auto_scaling_settings_update,
|
6564
6699
|
:replica_global_secondary_index_settings_update)
|
6700
|
+
SENSITIVE = []
|
6565
6701
|
include Aws::Structure
|
6566
6702
|
end
|
6567
6703
|
|
@@ -6599,6 +6735,7 @@ module Aws::DynamoDB
|
|
6599
6735
|
class ReplicaUpdate < Struct.new(
|
6600
6736
|
:create,
|
6601
6737
|
:delete)
|
6738
|
+
SENSITIVE = []
|
6602
6739
|
include Aws::Structure
|
6603
6740
|
end
|
6604
6741
|
|
@@ -6672,6 +6809,7 @@ module Aws::DynamoDB
|
|
6672
6809
|
:create,
|
6673
6810
|
:update,
|
6674
6811
|
:delete)
|
6812
|
+
SENSITIVE = []
|
6675
6813
|
include Aws::Structure
|
6676
6814
|
end
|
6677
6815
|
|
@@ -6690,6 +6828,7 @@ module Aws::DynamoDB
|
|
6690
6828
|
#
|
6691
6829
|
class RequestLimitExceeded < Struct.new(
|
6692
6830
|
:message)
|
6831
|
+
SENSITIVE = []
|
6693
6832
|
include Aws::Structure
|
6694
6833
|
end
|
6695
6834
|
|
@@ -6705,6 +6844,7 @@ module Aws::DynamoDB
|
|
6705
6844
|
#
|
6706
6845
|
class ResourceInUseException < Struct.new(
|
6707
6846
|
:message)
|
6847
|
+
SENSITIVE = []
|
6708
6848
|
include Aws::Structure
|
6709
6849
|
end
|
6710
6850
|
|
@@ -6720,6 +6860,7 @@ module Aws::DynamoDB
|
|
6720
6860
|
#
|
6721
6861
|
class ResourceNotFoundException < Struct.new(
|
6722
6862
|
:message)
|
6863
|
+
SENSITIVE = []
|
6723
6864
|
include Aws::Structure
|
6724
6865
|
end
|
6725
6866
|
|
@@ -6749,6 +6890,7 @@ module Aws::DynamoDB
|
|
6749
6890
|
:source_table_arn,
|
6750
6891
|
:restore_date_time,
|
6751
6892
|
:restore_in_progress)
|
6893
|
+
SENSITIVE = []
|
6752
6894
|
include Aws::Structure
|
6753
6895
|
end
|
6754
6896
|
|
@@ -6846,6 +6988,7 @@ module Aws::DynamoDB
|
|
6846
6988
|
:local_secondary_index_override,
|
6847
6989
|
:provisioned_throughput_override,
|
6848
6990
|
:sse_specification_override)
|
6991
|
+
SENSITIVE = []
|
6849
6992
|
include Aws::Structure
|
6850
6993
|
end
|
6851
6994
|
|
@@ -6857,6 +7000,7 @@ module Aws::DynamoDB
|
|
6857
7000
|
#
|
6858
7001
|
class RestoreTableFromBackupOutput < Struct.new(
|
6859
7002
|
:table_description)
|
7003
|
+
SENSITIVE = []
|
6860
7004
|
include Aws::Structure
|
6861
7005
|
end
|
6862
7006
|
|
@@ -6975,6 +7119,7 @@ module Aws::DynamoDB
|
|
6975
7119
|
:local_secondary_index_override,
|
6976
7120
|
:provisioned_throughput_override,
|
6977
7121
|
:sse_specification_override)
|
7122
|
+
SENSITIVE = []
|
6978
7123
|
include Aws::Structure
|
6979
7124
|
end
|
6980
7125
|
|
@@ -6986,6 +7131,7 @@ module Aws::DynamoDB
|
|
6986
7131
|
#
|
6987
7132
|
class RestoreTableToPointInTimeOutput < Struct.new(
|
6988
7133
|
:table_description)
|
7134
|
+
SENSITIVE = []
|
6989
7135
|
include Aws::Structure
|
6990
7136
|
end
|
6991
7137
|
|
@@ -7032,6 +7178,7 @@ module Aws::DynamoDB
|
|
7032
7178
|
:sse_type,
|
7033
7179
|
:kms_master_key_arn,
|
7034
7180
|
:inaccessible_encryption_date_time)
|
7181
|
+
SENSITIVE = []
|
7035
7182
|
include Aws::Structure
|
7036
7183
|
end
|
7037
7184
|
|
@@ -7078,6 +7225,7 @@ module Aws::DynamoDB
|
|
7078
7225
|
:enabled,
|
7079
7226
|
:sse_type,
|
7080
7227
|
:kms_master_key_id)
|
7228
|
+
SENSITIVE = []
|
7081
7229
|
include Aws::Structure
|
7082
7230
|
end
|
7083
7231
|
|
@@ -7452,6 +7600,7 @@ module Aws::DynamoDB
|
|
7452
7600
|
:expression_attribute_names,
|
7453
7601
|
:expression_attribute_values,
|
7454
7602
|
:consistent_read)
|
7603
|
+
SENSITIVE = []
|
7455
7604
|
include Aws::Structure
|
7456
7605
|
end
|
7457
7606
|
|
@@ -7524,6 +7673,7 @@ module Aws::DynamoDB
|
|
7524
7673
|
:scanned_count,
|
7525
7674
|
:last_evaluated_key,
|
7526
7675
|
:consumed_capacity)
|
7676
|
+
SENSITIVE = []
|
7527
7677
|
include Aws::Structure
|
7528
7678
|
end
|
7529
7679
|
|
@@ -7587,6 +7737,7 @@ module Aws::DynamoDB
|
|
7587
7737
|
:provisioned_throughput,
|
7588
7738
|
:item_count,
|
7589
7739
|
:billing_mode)
|
7740
|
+
SENSITIVE = []
|
7590
7741
|
include Aws::Structure
|
7591
7742
|
end
|
7592
7743
|
|
@@ -7627,6 +7778,7 @@ module Aws::DynamoDB
|
|
7627
7778
|
:stream_description,
|
7628
7779
|
:time_to_live_description,
|
7629
7780
|
:sse_description)
|
7781
|
+
SENSITIVE = []
|
7630
7782
|
include Aws::Structure
|
7631
7783
|
end
|
7632
7784
|
|
@@ -7668,6 +7820,7 @@ module Aws::DynamoDB
|
|
7668
7820
|
class StreamSpecification < Struct.new(
|
7669
7821
|
:stream_enabled,
|
7670
7822
|
:stream_view_type)
|
7823
|
+
SENSITIVE = []
|
7671
7824
|
include Aws::Structure
|
7672
7825
|
end
|
7673
7826
|
|
@@ -7680,6 +7833,7 @@ module Aws::DynamoDB
|
|
7680
7833
|
#
|
7681
7834
|
class TableAlreadyExistsException < Struct.new(
|
7682
7835
|
:message)
|
7836
|
+
SENSITIVE = []
|
7683
7837
|
include Aws::Structure
|
7684
7838
|
end
|
7685
7839
|
|
@@ -7711,6 +7865,7 @@ module Aws::DynamoDB
|
|
7711
7865
|
:table_name,
|
7712
7866
|
:table_status,
|
7713
7867
|
:replicas)
|
7868
|
+
SENSITIVE = []
|
7714
7869
|
include Aws::Structure
|
7715
7870
|
end
|
7716
7871
|
|
@@ -8027,6 +8182,7 @@ module Aws::DynamoDB
|
|
8027
8182
|
:restore_summary,
|
8028
8183
|
:sse_description,
|
8029
8184
|
:archival_summary)
|
8185
|
+
SENSITIVE = []
|
8030
8186
|
include Aws::Structure
|
8031
8187
|
end
|
8032
8188
|
|
@@ -8040,6 +8196,7 @@ module Aws::DynamoDB
|
|
8040
8196
|
#
|
8041
8197
|
class TableInUseException < Struct.new(
|
8042
8198
|
:message)
|
8199
|
+
SENSITIVE = []
|
8043
8200
|
include Aws::Structure
|
8044
8201
|
end
|
8045
8202
|
|
@@ -8053,6 +8210,7 @@ module Aws::DynamoDB
|
|
8053
8210
|
#
|
8054
8211
|
class TableNotFoundException < Struct.new(
|
8055
8212
|
:message)
|
8213
|
+
SENSITIVE = []
|
8056
8214
|
include Aws::Structure
|
8057
8215
|
end
|
8058
8216
|
|
@@ -8096,6 +8254,7 @@ module Aws::DynamoDB
|
|
8096
8254
|
class Tag < Struct.new(
|
8097
8255
|
:key,
|
8098
8256
|
:value)
|
8257
|
+
SENSITIVE = []
|
8099
8258
|
include Aws::Structure
|
8100
8259
|
end
|
8101
8260
|
|
@@ -8126,6 +8285,7 @@ module Aws::DynamoDB
|
|
8126
8285
|
class TagResourceInput < Struct.new(
|
8127
8286
|
:resource_arn,
|
8128
8287
|
:tags)
|
8288
|
+
SENSITIVE = []
|
8129
8289
|
include Aws::Structure
|
8130
8290
|
end
|
8131
8291
|
|
@@ -8145,6 +8305,7 @@ module Aws::DynamoDB
|
|
8145
8305
|
class TimeToLiveDescription < Struct.new(
|
8146
8306
|
:time_to_live_status,
|
8147
8307
|
:attribute_name)
|
8308
|
+
SENSITIVE = []
|
8148
8309
|
include Aws::Structure
|
8149
8310
|
end
|
8150
8311
|
|
@@ -8174,6 +8335,7 @@ module Aws::DynamoDB
|
|
8174
8335
|
class TimeToLiveSpecification < Struct.new(
|
8175
8336
|
:enabled,
|
8176
8337
|
:attribute_name)
|
8338
|
+
SENSITIVE = []
|
8177
8339
|
include Aws::Structure
|
8178
8340
|
end
|
8179
8341
|
|
@@ -8205,6 +8367,7 @@ module Aws::DynamoDB
|
|
8205
8367
|
#
|
8206
8368
|
class TransactGetItem < Struct.new(
|
8207
8369
|
:get)
|
8370
|
+
SENSITIVE = []
|
8208
8371
|
include Aws::Structure
|
8209
8372
|
end
|
8210
8373
|
|
@@ -8245,6 +8408,7 @@ module Aws::DynamoDB
|
|
8245
8408
|
class TransactGetItemsInput < Struct.new(
|
8246
8409
|
:transact_items,
|
8247
8410
|
:return_consumed_capacity)
|
8411
|
+
SENSITIVE = []
|
8248
8412
|
include Aws::Structure
|
8249
8413
|
end
|
8250
8414
|
|
@@ -8274,6 +8438,7 @@ module Aws::DynamoDB
|
|
8274
8438
|
class TransactGetItemsOutput < Struct.new(
|
8275
8439
|
:consumed_capacity,
|
8276
8440
|
:responses)
|
8441
|
+
SENSITIVE = []
|
8277
8442
|
include Aws::Structure
|
8278
8443
|
end
|
8279
8444
|
|
@@ -8366,6 +8531,7 @@ module Aws::DynamoDB
|
|
8366
8531
|
:put,
|
8367
8532
|
:delete,
|
8368
8533
|
:update)
|
8534
|
+
SENSITIVE = []
|
8369
8535
|
include Aws::Structure
|
8370
8536
|
end
|
8371
8537
|
|
@@ -8510,6 +8676,7 @@ module Aws::DynamoDB
|
|
8510
8676
|
:return_consumed_capacity,
|
8511
8677
|
:return_item_collection_metrics,
|
8512
8678
|
:client_request_token)
|
8679
|
+
SENSITIVE = []
|
8513
8680
|
include Aws::Structure
|
8514
8681
|
end
|
8515
8682
|
|
@@ -8531,6 +8698,7 @@ module Aws::DynamoDB
|
|
8531
8698
|
class TransactWriteItemsOutput < Struct.new(
|
8532
8699
|
:consumed_capacity,
|
8533
8700
|
:item_collection_metrics)
|
8701
|
+
SENSITIVE = []
|
8534
8702
|
include Aws::Structure
|
8535
8703
|
end
|
8536
8704
|
|
@@ -8700,6 +8868,7 @@ module Aws::DynamoDB
|
|
8700
8868
|
class TransactionCanceledException < Struct.new(
|
8701
8869
|
:message,
|
8702
8870
|
:cancellation_reasons)
|
8871
|
+
SENSITIVE = []
|
8703
8872
|
include Aws::Structure
|
8704
8873
|
end
|
8705
8874
|
|
@@ -8713,6 +8882,7 @@ module Aws::DynamoDB
|
|
8713
8882
|
#
|
8714
8883
|
class TransactionConflictException < Struct.new(
|
8715
8884
|
:message)
|
8885
|
+
SENSITIVE = []
|
8716
8886
|
include Aws::Structure
|
8717
8887
|
end
|
8718
8888
|
|
@@ -8725,6 +8895,7 @@ module Aws::DynamoDB
|
|
8725
8895
|
#
|
8726
8896
|
class TransactionInProgressException < Struct.new(
|
8727
8897
|
:message)
|
8898
|
+
SENSITIVE = []
|
8728
8899
|
include Aws::Structure
|
8729
8900
|
end
|
8730
8901
|
|
@@ -8751,6 +8922,7 @@ module Aws::DynamoDB
|
|
8751
8922
|
class UntagResourceInput < Struct.new(
|
8752
8923
|
:resource_arn,
|
8753
8924
|
:tag_keys)
|
8925
|
+
SENSITIVE = []
|
8754
8926
|
include Aws::Structure
|
8755
8927
|
end
|
8756
8928
|
|
@@ -8820,6 +8992,7 @@ module Aws::DynamoDB
|
|
8820
8992
|
:expression_attribute_names,
|
8821
8993
|
:expression_attribute_values,
|
8822
8994
|
:return_values_on_condition_check_failure)
|
8995
|
+
SENSITIVE = []
|
8823
8996
|
include Aws::Structure
|
8824
8997
|
end
|
8825
8998
|
|
@@ -8846,6 +9019,7 @@ module Aws::DynamoDB
|
|
8846
9019
|
class UpdateContinuousBackupsInput < Struct.new(
|
8847
9020
|
:table_name,
|
8848
9021
|
:point_in_time_recovery_specification)
|
9022
|
+
SENSITIVE = []
|
8849
9023
|
include Aws::Structure
|
8850
9024
|
end
|
8851
9025
|
|
@@ -8858,6 +9032,7 @@ module Aws::DynamoDB
|
|
8858
9032
|
#
|
8859
9033
|
class UpdateContinuousBackupsOutput < Struct.new(
|
8860
9034
|
:continuous_backups_description)
|
9035
|
+
SENSITIVE = []
|
8861
9036
|
include Aws::Structure
|
8862
9037
|
end
|
8863
9038
|
|
@@ -8888,6 +9063,7 @@ module Aws::DynamoDB
|
|
8888
9063
|
:table_name,
|
8889
9064
|
:index_name,
|
8890
9065
|
:contributor_insights_action)
|
9066
|
+
SENSITIVE = []
|
8891
9067
|
include Aws::Structure
|
8892
9068
|
end
|
8893
9069
|
|
@@ -8909,6 +9085,7 @@ module Aws::DynamoDB
|
|
8909
9085
|
:table_name,
|
8910
9086
|
:index_name,
|
8911
9087
|
:contributor_insights_status)
|
9088
|
+
SENSITIVE = []
|
8912
9089
|
include Aws::Structure
|
8913
9090
|
end
|
8914
9091
|
|
@@ -8947,6 +9124,7 @@ module Aws::DynamoDB
|
|
8947
9124
|
class UpdateGlobalSecondaryIndexAction < Struct.new(
|
8948
9125
|
:index_name,
|
8949
9126
|
:provisioned_throughput)
|
9127
|
+
SENSITIVE = []
|
8950
9128
|
include Aws::Structure
|
8951
9129
|
end
|
8952
9130
|
|
@@ -8981,6 +9159,7 @@ module Aws::DynamoDB
|
|
8981
9159
|
class UpdateGlobalTableInput < Struct.new(
|
8982
9160
|
:global_table_name,
|
8983
9161
|
:replica_updates)
|
9162
|
+
SENSITIVE = []
|
8984
9163
|
include Aws::Structure
|
8985
9164
|
end
|
8986
9165
|
|
@@ -8992,6 +9171,7 @@ module Aws::DynamoDB
|
|
8992
9171
|
#
|
8993
9172
|
class UpdateGlobalTableOutput < Struct.new(
|
8994
9173
|
:global_table_description)
|
9174
|
+
SENSITIVE = []
|
8995
9175
|
include Aws::Structure
|
8996
9176
|
end
|
8997
9177
|
|
@@ -9134,6 +9314,7 @@ module Aws::DynamoDB
|
|
9134
9314
|
:global_table_provisioned_write_capacity_auto_scaling_settings_update,
|
9135
9315
|
:global_table_global_secondary_index_settings_update,
|
9136
9316
|
:replica_settings_update)
|
9317
|
+
SENSITIVE = []
|
9137
9318
|
include Aws::Structure
|
9138
9319
|
end
|
9139
9320
|
|
@@ -9150,6 +9331,7 @@ module Aws::DynamoDB
|
|
9150
9331
|
class UpdateGlobalTableSettingsOutput < Struct.new(
|
9151
9332
|
:global_table_name,
|
9152
9333
|
:replica_settings)
|
9334
|
+
SENSITIVE = []
|
9153
9335
|
include Aws::Structure
|
9154
9336
|
end
|
9155
9337
|
|
@@ -9505,6 +9687,7 @@ module Aws::DynamoDB
|
|
9505
9687
|
:condition_expression,
|
9506
9688
|
:expression_attribute_names,
|
9507
9689
|
:expression_attribute_values)
|
9690
|
+
SENSITIVE = []
|
9508
9691
|
include Aws::Structure
|
9509
9692
|
end
|
9510
9693
|
|
@@ -9565,6 +9748,7 @@ module Aws::DynamoDB
|
|
9565
9748
|
:attributes,
|
9566
9749
|
:consumed_capacity,
|
9567
9750
|
:item_collection_metrics)
|
9751
|
+
SENSITIVE = []
|
9568
9752
|
include Aws::Structure
|
9569
9753
|
end
|
9570
9754
|
|
@@ -9617,6 +9801,7 @@ module Aws::DynamoDB
|
|
9617
9801
|
:kms_master_key_id,
|
9618
9802
|
:provisioned_throughput_override,
|
9619
9803
|
:global_secondary_indexes)
|
9804
|
+
SENSITIVE = []
|
9620
9805
|
include Aws::Structure
|
9621
9806
|
end
|
9622
9807
|
|
@@ -9816,6 +10001,7 @@ module Aws::DynamoDB
|
|
9816
10001
|
:stream_specification,
|
9817
10002
|
:sse_specification,
|
9818
10003
|
:replica_updates)
|
10004
|
+
SENSITIVE = []
|
9819
10005
|
include Aws::Structure
|
9820
10006
|
end
|
9821
10007
|
|
@@ -9829,6 +10015,7 @@ module Aws::DynamoDB
|
|
9829
10015
|
#
|
9830
10016
|
class UpdateTableOutput < Struct.new(
|
9831
10017
|
:table_description)
|
10018
|
+
SENSITIVE = []
|
9832
10019
|
include Aws::Structure
|
9833
10020
|
end
|
9834
10021
|
|
@@ -9940,6 +10127,7 @@ module Aws::DynamoDB
|
|
9940
10127
|
:table_name,
|
9941
10128
|
:provisioned_write_capacity_auto_scaling_update,
|
9942
10129
|
:replica_updates)
|
10130
|
+
SENSITIVE = []
|
9943
10131
|
include Aws::Structure
|
9944
10132
|
end
|
9945
10133
|
|
@@ -9952,6 +10140,7 @@ module Aws::DynamoDB
|
|
9952
10140
|
#
|
9953
10141
|
class UpdateTableReplicaAutoScalingOutput < Struct.new(
|
9954
10142
|
:table_auto_scaling_description)
|
10143
|
+
SENSITIVE = []
|
9955
10144
|
include Aws::Structure
|
9956
10145
|
end
|
9957
10146
|
|
@@ -9982,6 +10171,7 @@ module Aws::DynamoDB
|
|
9982
10171
|
class UpdateTimeToLiveInput < Struct.new(
|
9983
10172
|
:table_name,
|
9984
10173
|
:time_to_live_specification)
|
10174
|
+
SENSITIVE = []
|
9985
10175
|
include Aws::Structure
|
9986
10176
|
end
|
9987
10177
|
|
@@ -9993,6 +10183,7 @@ module Aws::DynamoDB
|
|
9993
10183
|
#
|
9994
10184
|
class UpdateTimeToLiveOutput < Struct.new(
|
9995
10185
|
:time_to_live_specification)
|
10186
|
+
SENSITIVE = []
|
9996
10187
|
include Aws::Structure
|
9997
10188
|
end
|
9998
10189
|
|
@@ -10030,6 +10221,7 @@ module Aws::DynamoDB
|
|
10030
10221
|
class WriteRequest < Struct.new(
|
10031
10222
|
:put_request,
|
10032
10223
|
:delete_request)
|
10224
|
+
SENSITIVE = []
|
10033
10225
|
include Aws::Structure
|
10034
10226
|
end
|
10035
10227
|
|