aws-sdk-dynamodb 1.100.0 → 1.102.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +5 -5
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-dynamodb/table.rb +3 -3
- data/lib/aws-sdk-dynamodb/types.rb +3 -3
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/sig/client.rbs +1402 -0
- data/sig/errors.rbs +111 -0
- data/sig/resource.rbs +196 -0
- data/sig/table.rbs +332 -0
- data/sig/types.rbs +1742 -0
- data/sig/waiters.rbs +33 -0
- metadata +10 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,1742 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::DynamoDB
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ArchivalSummary
|
12
|
+
attr_accessor archival_date_time: ::Time
|
13
|
+
attr_accessor archival_reason: ::String
|
14
|
+
attr_accessor archival_backup_arn: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AttributeDefinition
|
19
|
+
attr_accessor attribute_name: ::String
|
20
|
+
attr_accessor attribute_type: ("S" | "N" | "B")
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AttributeValue
|
25
|
+
attr_accessor s: ::String
|
26
|
+
attr_accessor n: ::String
|
27
|
+
attr_accessor b: ::String
|
28
|
+
attr_accessor ss: ::Array[::String]
|
29
|
+
attr_accessor ns: ::Array[::String]
|
30
|
+
attr_accessor bs: ::Array[::String]
|
31
|
+
attr_accessor m: ::Hash[::String, Types::AttributeValue]
|
32
|
+
attr_accessor l: ::Array[Types::AttributeValue]
|
33
|
+
attr_accessor null: bool
|
34
|
+
attr_accessor bool: bool
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class AttributeValueUpdate
|
39
|
+
attr_accessor value: Types::AttributeValue
|
40
|
+
attr_accessor action: ("ADD" | "PUT" | "DELETE")
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class AutoScalingPolicyDescription
|
45
|
+
attr_accessor policy_name: ::String
|
46
|
+
attr_accessor target_tracking_scaling_policy_configuration: Types::AutoScalingTargetTrackingScalingPolicyConfigurationDescription
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class AutoScalingPolicyUpdate
|
51
|
+
attr_accessor policy_name: ::String
|
52
|
+
attr_accessor target_tracking_scaling_policy_configuration: Types::AutoScalingTargetTrackingScalingPolicyConfigurationUpdate
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class AutoScalingSettingsDescription
|
57
|
+
attr_accessor minimum_units: ::Integer
|
58
|
+
attr_accessor maximum_units: ::Integer
|
59
|
+
attr_accessor auto_scaling_disabled: bool
|
60
|
+
attr_accessor auto_scaling_role_arn: ::String
|
61
|
+
attr_accessor scaling_policies: ::Array[Types::AutoScalingPolicyDescription]
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class AutoScalingSettingsUpdate
|
66
|
+
attr_accessor minimum_units: ::Integer
|
67
|
+
attr_accessor maximum_units: ::Integer
|
68
|
+
attr_accessor auto_scaling_disabled: bool
|
69
|
+
attr_accessor auto_scaling_role_arn: ::String
|
70
|
+
attr_accessor scaling_policy_update: Types::AutoScalingPolicyUpdate
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class AutoScalingTargetTrackingScalingPolicyConfigurationDescription
|
75
|
+
attr_accessor disable_scale_in: bool
|
76
|
+
attr_accessor scale_in_cooldown: ::Integer
|
77
|
+
attr_accessor scale_out_cooldown: ::Integer
|
78
|
+
attr_accessor target_value: ::Float
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class AutoScalingTargetTrackingScalingPolicyConfigurationUpdate
|
83
|
+
attr_accessor disable_scale_in: bool
|
84
|
+
attr_accessor scale_in_cooldown: ::Integer
|
85
|
+
attr_accessor scale_out_cooldown: ::Integer
|
86
|
+
attr_accessor target_value: ::Float
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class BackupDescription
|
91
|
+
attr_accessor backup_details: Types::BackupDetails
|
92
|
+
attr_accessor source_table_details: Types::SourceTableDetails
|
93
|
+
attr_accessor source_table_feature_details: Types::SourceTableFeatureDetails
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class BackupDetails
|
98
|
+
attr_accessor backup_arn: ::String
|
99
|
+
attr_accessor backup_name: ::String
|
100
|
+
attr_accessor backup_size_bytes: ::Integer
|
101
|
+
attr_accessor backup_status: ("CREATING" | "DELETED" | "AVAILABLE")
|
102
|
+
attr_accessor backup_type: ("USER" | "SYSTEM" | "AWS_BACKUP")
|
103
|
+
attr_accessor backup_creation_date_time: ::Time
|
104
|
+
attr_accessor backup_expiry_date_time: ::Time
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class BackupInUseException
|
109
|
+
attr_accessor message: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class BackupNotFoundException
|
114
|
+
attr_accessor message: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class BackupSummary
|
119
|
+
attr_accessor table_name: ::String
|
120
|
+
attr_accessor table_id: ::String
|
121
|
+
attr_accessor table_arn: ::String
|
122
|
+
attr_accessor backup_arn: ::String
|
123
|
+
attr_accessor backup_name: ::String
|
124
|
+
attr_accessor backup_creation_date_time: ::Time
|
125
|
+
attr_accessor backup_expiry_date_time: ::Time
|
126
|
+
attr_accessor backup_status: ("CREATING" | "DELETED" | "AVAILABLE")
|
127
|
+
attr_accessor backup_type: ("USER" | "SYSTEM" | "AWS_BACKUP")
|
128
|
+
attr_accessor backup_size_bytes: ::Integer
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class BatchExecuteStatementInput
|
133
|
+
attr_accessor statements: ::Array[Types::BatchStatementRequest]
|
134
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class BatchExecuteStatementOutput
|
139
|
+
attr_accessor responses: ::Array[Types::BatchStatementResponse]
|
140
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class BatchGetItemInput
|
145
|
+
attr_accessor request_items: ::Hash[::String, Types::KeysAndAttributes]
|
146
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class BatchGetItemOutput
|
151
|
+
attr_accessor responses: ::Hash[::String, ::Array[::Hash[::String, Types::AttributeValue]]]
|
152
|
+
attr_accessor unprocessed_keys: ::Hash[::String, Types::KeysAndAttributes]
|
153
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class BatchStatementError
|
158
|
+
attr_accessor code: ("ConditionalCheckFailed" | "ItemCollectionSizeLimitExceeded" | "RequestLimitExceeded" | "ValidationError" | "ProvisionedThroughputExceeded" | "TransactionConflict" | "ThrottlingError" | "InternalServerError" | "ResourceNotFound" | "AccessDenied" | "DuplicateItem")
|
159
|
+
attr_accessor message: ::String
|
160
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class BatchStatementRequest
|
165
|
+
attr_accessor statement: ::String
|
166
|
+
attr_accessor parameters: ::Array[Types::AttributeValue]
|
167
|
+
attr_accessor consistent_read: bool
|
168
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class BatchStatementResponse
|
173
|
+
attr_accessor error: Types::BatchStatementError
|
174
|
+
attr_accessor table_name: ::String
|
175
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class BatchWriteItemInput
|
180
|
+
attr_accessor request_items: ::Hash[::String, ::Array[Types::WriteRequest]]
|
181
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
182
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class BatchWriteItemOutput
|
187
|
+
attr_accessor unprocessed_items: ::Hash[::String, ::Array[Types::WriteRequest]]
|
188
|
+
attr_accessor item_collection_metrics: ::Hash[::String, ::Array[Types::ItemCollectionMetrics]]
|
189
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class BillingModeSummary
|
194
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
195
|
+
attr_accessor last_update_to_pay_per_request_date_time: ::Time
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CancellationReason
|
200
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
201
|
+
attr_accessor code: ::String
|
202
|
+
attr_accessor message: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class Capacity
|
207
|
+
attr_accessor read_capacity_units: ::Float
|
208
|
+
attr_accessor write_capacity_units: ::Float
|
209
|
+
attr_accessor capacity_units: ::Float
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class Condition
|
214
|
+
attr_accessor attribute_value_list: ::Array[Types::AttributeValue]
|
215
|
+
attr_accessor comparison_operator: ("EQ" | "NE" | "IN" | "LE" | "LT" | "GE" | "GT" | "BETWEEN" | "NOT_NULL" | "NULL" | "CONTAINS" | "NOT_CONTAINS" | "BEGINS_WITH")
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class ConditionCheck
|
220
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
221
|
+
attr_accessor table_name: ::String
|
222
|
+
attr_accessor condition_expression: ::String
|
223
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
224
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
225
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class ConditionalCheckFailedException
|
230
|
+
attr_accessor message: ::String
|
231
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class ConsumedCapacity
|
236
|
+
attr_accessor table_name: ::String
|
237
|
+
attr_accessor capacity_units: ::Float
|
238
|
+
attr_accessor read_capacity_units: ::Float
|
239
|
+
attr_accessor write_capacity_units: ::Float
|
240
|
+
attr_accessor table: Types::Capacity
|
241
|
+
attr_accessor local_secondary_indexes: ::Hash[::String, Types::Capacity]
|
242
|
+
attr_accessor global_secondary_indexes: ::Hash[::String, Types::Capacity]
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ContinuousBackupsDescription
|
247
|
+
attr_accessor continuous_backups_status: ("ENABLED" | "DISABLED")
|
248
|
+
attr_accessor point_in_time_recovery_description: Types::PointInTimeRecoveryDescription
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class ContinuousBackupsUnavailableException
|
253
|
+
attr_accessor message: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class ContributorInsightsSummary
|
258
|
+
attr_accessor table_name: ::String
|
259
|
+
attr_accessor index_name: ::String
|
260
|
+
attr_accessor contributor_insights_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class CreateBackupInput
|
265
|
+
attr_accessor table_name: ::String
|
266
|
+
attr_accessor backup_name: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class CreateBackupOutput
|
271
|
+
attr_accessor backup_details: Types::BackupDetails
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class CreateGlobalSecondaryIndexAction
|
276
|
+
attr_accessor index_name: ::String
|
277
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
278
|
+
attr_accessor projection: Types::Projection
|
279
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class CreateGlobalTableInput
|
284
|
+
attr_accessor global_table_name: ::String
|
285
|
+
attr_accessor replication_group: ::Array[Types::Replica]
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class CreateGlobalTableOutput
|
290
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class CreateReplicaAction
|
295
|
+
attr_accessor region_name: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class CreateReplicationGroupMemberAction
|
300
|
+
attr_accessor region_name: ::String
|
301
|
+
attr_accessor kms_master_key_id: ::String
|
302
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
303
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndex]
|
304
|
+
attr_accessor table_class_override: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class CreateTableInput
|
309
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
310
|
+
attr_accessor table_name: ::String
|
311
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
312
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndex]
|
313
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndex]
|
314
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
315
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
316
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
317
|
+
attr_accessor sse_specification: Types::SSESpecification
|
318
|
+
attr_accessor tags: ::Array[Types::Tag]
|
319
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
320
|
+
attr_accessor deletion_protection_enabled: bool
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class CreateTableOutput
|
325
|
+
attr_accessor table_description: Types::TableDescription
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class CsvOptions
|
330
|
+
attr_accessor delimiter: ::String
|
331
|
+
attr_accessor header_list: ::Array[::String]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class Delete
|
336
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
337
|
+
attr_accessor table_name: ::String
|
338
|
+
attr_accessor condition_expression: ::String
|
339
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
340
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
341
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class DeleteBackupInput
|
346
|
+
attr_accessor backup_arn: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class DeleteBackupOutput
|
351
|
+
attr_accessor backup_description: Types::BackupDescription
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DeleteGlobalSecondaryIndexAction
|
356
|
+
attr_accessor index_name: ::String
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class DeleteItemInput
|
361
|
+
attr_accessor table_name: ::String
|
362
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
363
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
364
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
365
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
366
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
367
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
368
|
+
attr_accessor condition_expression: ::String
|
369
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
370
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
371
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class DeleteItemOutput
|
376
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
377
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
378
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class DeleteReplicaAction
|
383
|
+
attr_accessor region_name: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class DeleteReplicationGroupMemberAction
|
388
|
+
attr_accessor region_name: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class DeleteRequest
|
393
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class DeleteTableInput
|
398
|
+
attr_accessor table_name: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class DeleteTableOutput
|
403
|
+
attr_accessor table_description: Types::TableDescription
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class DescribeBackupInput
|
408
|
+
attr_accessor backup_arn: ::String
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class DescribeBackupOutput
|
413
|
+
attr_accessor backup_description: Types::BackupDescription
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class DescribeContinuousBackupsInput
|
418
|
+
attr_accessor table_name: ::String
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class DescribeContinuousBackupsOutput
|
423
|
+
attr_accessor continuous_backups_description: Types::ContinuousBackupsDescription
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class DescribeContributorInsightsInput
|
428
|
+
attr_accessor table_name: ::String
|
429
|
+
attr_accessor index_name: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class DescribeContributorInsightsOutput
|
434
|
+
attr_accessor table_name: ::String
|
435
|
+
attr_accessor index_name: ::String
|
436
|
+
attr_accessor contributor_insights_rule_list: ::Array[::String]
|
437
|
+
attr_accessor contributor_insights_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
|
438
|
+
attr_accessor last_update_date_time: ::Time
|
439
|
+
attr_accessor failure_exception: Types::FailureException
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class DescribeEndpointsRequest < Aws::EmptyStructure
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribeEndpointsResponse
|
447
|
+
attr_accessor endpoints: ::Array[Types::Endpoint]
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DescribeExportInput
|
452
|
+
attr_accessor export_arn: ::String
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class DescribeExportOutput
|
457
|
+
attr_accessor export_description: Types::ExportDescription
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class DescribeGlobalTableInput
|
462
|
+
attr_accessor global_table_name: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class DescribeGlobalTableOutput
|
467
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class DescribeGlobalTableSettingsInput
|
472
|
+
attr_accessor global_table_name: ::String
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class DescribeGlobalTableSettingsOutput
|
477
|
+
attr_accessor global_table_name: ::String
|
478
|
+
attr_accessor replica_settings: ::Array[Types::ReplicaSettingsDescription]
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class DescribeImportInput
|
483
|
+
attr_accessor import_arn: ::String
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class DescribeImportOutput
|
488
|
+
attr_accessor import_table_description: Types::ImportTableDescription
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class DescribeKinesisStreamingDestinationInput
|
493
|
+
attr_accessor table_name: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class DescribeKinesisStreamingDestinationOutput
|
498
|
+
attr_accessor table_name: ::String
|
499
|
+
attr_accessor kinesis_data_stream_destinations: ::Array[Types::KinesisDataStreamDestination]
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class DescribeLimitsInput < Aws::EmptyStructure
|
504
|
+
end
|
505
|
+
|
506
|
+
class DescribeLimitsOutput
|
507
|
+
attr_accessor account_max_read_capacity_units: ::Integer
|
508
|
+
attr_accessor account_max_write_capacity_units: ::Integer
|
509
|
+
attr_accessor table_max_read_capacity_units: ::Integer
|
510
|
+
attr_accessor table_max_write_capacity_units: ::Integer
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class DescribeTableInput
|
515
|
+
attr_accessor table_name: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class DescribeTableOutput
|
520
|
+
attr_accessor table: Types::TableDescription
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class DescribeTableReplicaAutoScalingInput
|
525
|
+
attr_accessor table_name: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class DescribeTableReplicaAutoScalingOutput
|
530
|
+
attr_accessor table_auto_scaling_description: Types::TableAutoScalingDescription
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class DescribeTimeToLiveInput
|
535
|
+
attr_accessor table_name: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class DescribeTimeToLiveOutput
|
540
|
+
attr_accessor time_to_live_description: Types::TimeToLiveDescription
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
544
|
+
class DuplicateItemException
|
545
|
+
attr_accessor message: ::String
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class EnableKinesisStreamingConfiguration
|
550
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class Endpoint
|
555
|
+
attr_accessor address: ::String
|
556
|
+
attr_accessor cache_period_in_minutes: ::Integer
|
557
|
+
SENSITIVE: []
|
558
|
+
end
|
559
|
+
|
560
|
+
class ExecuteStatementInput
|
561
|
+
attr_accessor statement: ::String
|
562
|
+
attr_accessor parameters: ::Array[Types::AttributeValue]
|
563
|
+
attr_accessor consistent_read: bool
|
564
|
+
attr_accessor next_token: ::String
|
565
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
566
|
+
attr_accessor limit: ::Integer
|
567
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class ExecuteStatementOutput
|
572
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
573
|
+
attr_accessor next_token: ::String
|
574
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
575
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class ExecuteTransactionInput
|
580
|
+
attr_accessor transact_statements: ::Array[Types::ParameterizedStatement]
|
581
|
+
attr_accessor client_request_token: ::String
|
582
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ExecuteTransactionOutput
|
587
|
+
attr_accessor responses: ::Array[Types::ItemResponse]
|
588
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class ExpectedAttributeValue
|
593
|
+
attr_accessor value: Types::AttributeValue
|
594
|
+
attr_accessor exists: bool
|
595
|
+
attr_accessor comparison_operator: ("EQ" | "NE" | "IN" | "LE" | "LT" | "GE" | "GT" | "BETWEEN" | "NOT_NULL" | "NULL" | "CONTAINS" | "NOT_CONTAINS" | "BEGINS_WITH")
|
596
|
+
attr_accessor attribute_value_list: ::Array[Types::AttributeValue]
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ExportConflictException
|
601
|
+
attr_accessor message: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class ExportDescription
|
606
|
+
attr_accessor export_arn: ::String
|
607
|
+
attr_accessor export_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
608
|
+
attr_accessor start_time: ::Time
|
609
|
+
attr_accessor end_time: ::Time
|
610
|
+
attr_accessor export_manifest: ::String
|
611
|
+
attr_accessor table_arn: ::String
|
612
|
+
attr_accessor table_id: ::String
|
613
|
+
attr_accessor export_time: ::Time
|
614
|
+
attr_accessor client_token: ::String
|
615
|
+
attr_accessor s3_bucket: ::String
|
616
|
+
attr_accessor s3_bucket_owner: ::String
|
617
|
+
attr_accessor s3_prefix: ::String
|
618
|
+
attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
|
619
|
+
attr_accessor s3_sse_kms_key_id: ::String
|
620
|
+
attr_accessor failure_code: ::String
|
621
|
+
attr_accessor failure_message: ::String
|
622
|
+
attr_accessor export_format: ("DYNAMODB_JSON" | "ION")
|
623
|
+
attr_accessor billed_size_bytes: ::Integer
|
624
|
+
attr_accessor item_count: ::Integer
|
625
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
626
|
+
attr_accessor incremental_export_specification: Types::IncrementalExportSpecification
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class ExportNotFoundException
|
631
|
+
attr_accessor message: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class ExportSummary
|
636
|
+
attr_accessor export_arn: ::String
|
637
|
+
attr_accessor export_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
638
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class ExportTableToPointInTimeInput
|
643
|
+
attr_accessor table_arn: ::String
|
644
|
+
attr_accessor export_time: ::Time
|
645
|
+
attr_accessor client_token: ::String
|
646
|
+
attr_accessor s3_bucket: ::String
|
647
|
+
attr_accessor s3_bucket_owner: ::String
|
648
|
+
attr_accessor s3_prefix: ::String
|
649
|
+
attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
|
650
|
+
attr_accessor s3_sse_kms_key_id: ::String
|
651
|
+
attr_accessor export_format: ("DYNAMODB_JSON" | "ION")
|
652
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
653
|
+
attr_accessor incremental_export_specification: Types::IncrementalExportSpecification
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class ExportTableToPointInTimeOutput
|
658
|
+
attr_accessor export_description: Types::ExportDescription
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class FailureException
|
663
|
+
attr_accessor exception_name: ::String
|
664
|
+
attr_accessor exception_description: ::String
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class Get
|
669
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
670
|
+
attr_accessor table_name: ::String
|
671
|
+
attr_accessor projection_expression: ::String
|
672
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class GetItemInput
|
677
|
+
attr_accessor table_name: ::String
|
678
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
679
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
680
|
+
attr_accessor consistent_read: bool
|
681
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
682
|
+
attr_accessor projection_expression: ::String
|
683
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class GetItemOutput
|
688
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
689
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class GlobalSecondaryIndex
|
694
|
+
attr_accessor index_name: ::String
|
695
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
696
|
+
attr_accessor projection: Types::Projection
|
697
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class GlobalSecondaryIndexAutoScalingUpdate
|
702
|
+
attr_accessor index_name: ::String
|
703
|
+
attr_accessor provisioned_write_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
707
|
+
class GlobalSecondaryIndexDescription
|
708
|
+
attr_accessor index_name: ::String
|
709
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
710
|
+
attr_accessor projection: Types::Projection
|
711
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
712
|
+
attr_accessor backfilling: bool
|
713
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughputDescription
|
714
|
+
attr_accessor index_size_bytes: ::Integer
|
715
|
+
attr_accessor item_count: ::Integer
|
716
|
+
attr_accessor index_arn: ::String
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class GlobalSecondaryIndexInfo
|
721
|
+
attr_accessor index_name: ::String
|
722
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
723
|
+
attr_accessor projection: Types::Projection
|
724
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class GlobalSecondaryIndexUpdate
|
729
|
+
attr_accessor update: Types::UpdateGlobalSecondaryIndexAction
|
730
|
+
attr_accessor create: Types::CreateGlobalSecondaryIndexAction
|
731
|
+
attr_accessor delete: Types::DeleteGlobalSecondaryIndexAction
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class GlobalTable
|
736
|
+
attr_accessor global_table_name: ::String
|
737
|
+
attr_accessor replication_group: ::Array[Types::Replica]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GlobalTableAlreadyExistsException
|
742
|
+
attr_accessor message: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class GlobalTableDescription
|
747
|
+
attr_accessor replication_group: ::Array[Types::ReplicaDescription]
|
748
|
+
attr_accessor global_table_arn: ::String
|
749
|
+
attr_accessor creation_date_time: ::Time
|
750
|
+
attr_accessor global_table_status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING")
|
751
|
+
attr_accessor global_table_name: ::String
|
752
|
+
SENSITIVE: []
|
753
|
+
end
|
754
|
+
|
755
|
+
class GlobalTableGlobalSecondaryIndexSettingsUpdate
|
756
|
+
attr_accessor index_name: ::String
|
757
|
+
attr_accessor provisioned_write_capacity_units: ::Integer
|
758
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class GlobalTableNotFoundException
|
763
|
+
attr_accessor message: ::String
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class IdempotentParameterMismatchException
|
768
|
+
attr_accessor message: ::String
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class ImportConflictException
|
773
|
+
attr_accessor message: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class ImportNotFoundException
|
778
|
+
attr_accessor message: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class ImportSummary
|
783
|
+
attr_accessor import_arn: ::String
|
784
|
+
attr_accessor import_status: ("IN_PROGRESS" | "COMPLETED" | "CANCELLING" | "CANCELLED" | "FAILED")
|
785
|
+
attr_accessor table_arn: ::String
|
786
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
787
|
+
attr_accessor cloud_watch_log_group_arn: ::String
|
788
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
789
|
+
attr_accessor start_time: ::Time
|
790
|
+
attr_accessor end_time: ::Time
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class ImportTableDescription
|
795
|
+
attr_accessor import_arn: ::String
|
796
|
+
attr_accessor import_status: ("IN_PROGRESS" | "COMPLETED" | "CANCELLING" | "CANCELLED" | "FAILED")
|
797
|
+
attr_accessor table_arn: ::String
|
798
|
+
attr_accessor table_id: ::String
|
799
|
+
attr_accessor client_token: ::String
|
800
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
801
|
+
attr_accessor error_count: ::Integer
|
802
|
+
attr_accessor cloud_watch_log_group_arn: ::String
|
803
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
804
|
+
attr_accessor input_format_options: Types::InputFormatOptions
|
805
|
+
attr_accessor input_compression_type: ("GZIP" | "ZSTD" | "NONE")
|
806
|
+
attr_accessor table_creation_parameters: Types::TableCreationParameters
|
807
|
+
attr_accessor start_time: ::Time
|
808
|
+
attr_accessor end_time: ::Time
|
809
|
+
attr_accessor processed_size_bytes: ::Integer
|
810
|
+
attr_accessor processed_item_count: ::Integer
|
811
|
+
attr_accessor imported_item_count: ::Integer
|
812
|
+
attr_accessor failure_code: ::String
|
813
|
+
attr_accessor failure_message: ::String
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class ImportTableInput
|
818
|
+
attr_accessor client_token: ::String
|
819
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
820
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
821
|
+
attr_accessor input_format_options: Types::InputFormatOptions
|
822
|
+
attr_accessor input_compression_type: ("GZIP" | "ZSTD" | "NONE")
|
823
|
+
attr_accessor table_creation_parameters: Types::TableCreationParameters
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class ImportTableOutput
|
828
|
+
attr_accessor import_table_description: Types::ImportTableDescription
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class IncrementalExportSpecification
|
833
|
+
attr_accessor export_from_time: ::Time
|
834
|
+
attr_accessor export_to_time: ::Time
|
835
|
+
attr_accessor export_view_type: ("NEW_IMAGE" | "NEW_AND_OLD_IMAGES")
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class IndexNotFoundException
|
840
|
+
attr_accessor message: ::String
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class InputFormatOptions
|
845
|
+
attr_accessor csv: Types::CsvOptions
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class InternalServerError
|
850
|
+
attr_accessor message: ::String
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class InvalidExportTimeException
|
855
|
+
attr_accessor message: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class InvalidRestoreTimeException
|
860
|
+
attr_accessor message: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class ItemCollectionMetrics
|
865
|
+
attr_accessor item_collection_key: ::Hash[::String, Types::AttributeValue]
|
866
|
+
attr_accessor size_estimate_range_gb: ::Array[::Float]
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class ItemCollectionSizeLimitExceededException
|
871
|
+
attr_accessor message: ::String
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class ItemResponse
|
876
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
877
|
+
SENSITIVE: []
|
878
|
+
end
|
879
|
+
|
880
|
+
class KeySchemaElement
|
881
|
+
attr_accessor attribute_name: ::String
|
882
|
+
attr_accessor key_type: ("HASH" | "RANGE")
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class KeysAndAttributes
|
887
|
+
attr_accessor keys: ::Array[::Hash[::String, Types::AttributeValue]]
|
888
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
889
|
+
attr_accessor consistent_read: bool
|
890
|
+
attr_accessor projection_expression: ::String
|
891
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
895
|
+
class KinesisDataStreamDestination
|
896
|
+
attr_accessor stream_arn: ::String
|
897
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
898
|
+
attr_accessor destination_status_description: ::String
|
899
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class KinesisStreamingDestinationInput
|
904
|
+
attr_accessor table_name: ::String
|
905
|
+
attr_accessor stream_arn: ::String
|
906
|
+
attr_accessor enable_kinesis_streaming_configuration: Types::EnableKinesisStreamingConfiguration
|
907
|
+
SENSITIVE: []
|
908
|
+
end
|
909
|
+
|
910
|
+
class KinesisStreamingDestinationOutput
|
911
|
+
attr_accessor table_name: ::String
|
912
|
+
attr_accessor stream_arn: ::String
|
913
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
914
|
+
attr_accessor enable_kinesis_streaming_configuration: Types::EnableKinesisStreamingConfiguration
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class LimitExceededException
|
919
|
+
attr_accessor message: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class ListBackupsInput
|
924
|
+
attr_accessor table_name: ::String
|
925
|
+
attr_accessor limit: ::Integer
|
926
|
+
attr_accessor time_range_lower_bound: ::Time
|
927
|
+
attr_accessor time_range_upper_bound: ::Time
|
928
|
+
attr_accessor exclusive_start_backup_arn: ::String
|
929
|
+
attr_accessor backup_type: ("USER" | "SYSTEM" | "AWS_BACKUP" | "ALL")
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class ListBackupsOutput
|
934
|
+
attr_accessor backup_summaries: ::Array[Types::BackupSummary]
|
935
|
+
attr_accessor last_evaluated_backup_arn: ::String
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class ListContributorInsightsInput
|
940
|
+
attr_accessor table_name: ::String
|
941
|
+
attr_accessor next_token: ::String
|
942
|
+
attr_accessor max_results: ::Integer
|
943
|
+
SENSITIVE: []
|
944
|
+
end
|
945
|
+
|
946
|
+
class ListContributorInsightsOutput
|
947
|
+
attr_accessor contributor_insights_summaries: ::Array[Types::ContributorInsightsSummary]
|
948
|
+
attr_accessor next_token: ::String
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class ListExportsInput
|
953
|
+
attr_accessor table_arn: ::String
|
954
|
+
attr_accessor max_results: ::Integer
|
955
|
+
attr_accessor next_token: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class ListExportsOutput
|
960
|
+
attr_accessor export_summaries: ::Array[Types::ExportSummary]
|
961
|
+
attr_accessor next_token: ::String
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
965
|
+
class ListGlobalTablesInput
|
966
|
+
attr_accessor exclusive_start_global_table_name: ::String
|
967
|
+
attr_accessor limit: ::Integer
|
968
|
+
attr_accessor region_name: ::String
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class ListGlobalTablesOutput
|
973
|
+
attr_accessor global_tables: ::Array[Types::GlobalTable]
|
974
|
+
attr_accessor last_evaluated_global_table_name: ::String
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class ListImportsInput
|
979
|
+
attr_accessor table_arn: ::String
|
980
|
+
attr_accessor page_size: ::Integer
|
981
|
+
attr_accessor next_token: ::String
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
985
|
+
class ListImportsOutput
|
986
|
+
attr_accessor import_summary_list: ::Array[Types::ImportSummary]
|
987
|
+
attr_accessor next_token: ::String
|
988
|
+
SENSITIVE: []
|
989
|
+
end
|
990
|
+
|
991
|
+
class ListTablesInput
|
992
|
+
attr_accessor exclusive_start_table_name: ::String
|
993
|
+
attr_accessor limit: ::Integer
|
994
|
+
SENSITIVE: []
|
995
|
+
end
|
996
|
+
|
997
|
+
class ListTablesOutput
|
998
|
+
attr_accessor table_names: ::Array[::String]
|
999
|
+
attr_accessor last_evaluated_table_name: ::String
|
1000
|
+
SENSITIVE: []
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class ListTagsOfResourceInput
|
1004
|
+
attr_accessor resource_arn: ::String
|
1005
|
+
attr_accessor next_token: ::String
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class ListTagsOfResourceOutput
|
1010
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1011
|
+
attr_accessor next_token: ::String
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class LocalSecondaryIndex
|
1016
|
+
attr_accessor index_name: ::String
|
1017
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1018
|
+
attr_accessor projection: Types::Projection
|
1019
|
+
SENSITIVE: []
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class LocalSecondaryIndexDescription
|
1023
|
+
attr_accessor index_name: ::String
|
1024
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1025
|
+
attr_accessor projection: Types::Projection
|
1026
|
+
attr_accessor index_size_bytes: ::Integer
|
1027
|
+
attr_accessor item_count: ::Integer
|
1028
|
+
attr_accessor index_arn: ::String
|
1029
|
+
SENSITIVE: []
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class LocalSecondaryIndexInfo
|
1033
|
+
attr_accessor index_name: ::String
|
1034
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1035
|
+
attr_accessor projection: Types::Projection
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class ParameterizedStatement
|
1040
|
+
attr_accessor statement: ::String
|
1041
|
+
attr_accessor parameters: ::Array[Types::AttributeValue]
|
1042
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1043
|
+
SENSITIVE: []
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class PointInTimeRecoveryDescription
|
1047
|
+
attr_accessor point_in_time_recovery_status: ("ENABLED" | "DISABLED")
|
1048
|
+
attr_accessor earliest_restorable_date_time: ::Time
|
1049
|
+
attr_accessor latest_restorable_date_time: ::Time
|
1050
|
+
SENSITIVE: []
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class PointInTimeRecoverySpecification
|
1054
|
+
attr_accessor point_in_time_recovery_enabled: bool
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class PointInTimeRecoveryUnavailableException
|
1059
|
+
attr_accessor message: ::String
|
1060
|
+
SENSITIVE: []
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class Projection
|
1064
|
+
attr_accessor projection_type: ("ALL" | "KEYS_ONLY" | "INCLUDE")
|
1065
|
+
attr_accessor non_key_attributes: ::Array[::String]
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class ProvisionedThroughput
|
1070
|
+
attr_accessor read_capacity_units: ::Integer
|
1071
|
+
attr_accessor write_capacity_units: ::Integer
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class ProvisionedThroughputDescription
|
1076
|
+
attr_accessor last_increase_date_time: ::Time
|
1077
|
+
attr_accessor last_decrease_date_time: ::Time
|
1078
|
+
attr_accessor number_of_decreases_today: ::Integer
|
1079
|
+
attr_accessor read_capacity_units: ::Integer
|
1080
|
+
attr_accessor write_capacity_units: ::Integer
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class ProvisionedThroughputExceededException
|
1085
|
+
attr_accessor message: ::String
|
1086
|
+
SENSITIVE: []
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class ProvisionedThroughputOverride
|
1090
|
+
attr_accessor read_capacity_units: ::Integer
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class Put
|
1095
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1096
|
+
attr_accessor table_name: ::String
|
1097
|
+
attr_accessor condition_expression: ::String
|
1098
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1099
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1100
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class PutItemInput
|
1105
|
+
attr_accessor table_name: ::String
|
1106
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1107
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
1108
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
1109
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1110
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1111
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1112
|
+
attr_accessor condition_expression: ::String
|
1113
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1114
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1115
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class PutItemOutput
|
1120
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
1121
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1122
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class PutRequest
|
1127
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class QueryInput
|
1132
|
+
attr_accessor table_name: ::String
|
1133
|
+
attr_accessor index_name: ::String
|
1134
|
+
attr_accessor select: ("ALL_ATTRIBUTES" | "ALL_PROJECTED_ATTRIBUTES" | "SPECIFIC_ATTRIBUTES" | "COUNT")
|
1135
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
1136
|
+
attr_accessor limit: ::Integer
|
1137
|
+
attr_accessor consistent_read: bool
|
1138
|
+
attr_accessor key_conditions: ::Hash[::String, Types::Condition]
|
1139
|
+
attr_accessor query_filter: ::Hash[::String, Types::Condition]
|
1140
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1141
|
+
attr_accessor scan_index_forward: bool
|
1142
|
+
attr_accessor exclusive_start_key: ::Hash[::String, Types::AttributeValue]
|
1143
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1144
|
+
attr_accessor projection_expression: ::String
|
1145
|
+
attr_accessor filter_expression: ::String
|
1146
|
+
attr_accessor key_condition_expression: ::String
|
1147
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1148
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class QueryOutput
|
1153
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
1154
|
+
attr_accessor count: ::Integer
|
1155
|
+
attr_accessor scanned_count: ::Integer
|
1156
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
1157
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class Replica
|
1162
|
+
attr_accessor region_name: ::String
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class ReplicaAlreadyExistsException
|
1167
|
+
attr_accessor message: ::String
|
1168
|
+
SENSITIVE: []
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class ReplicaAutoScalingDescription
|
1172
|
+
attr_accessor region_name: ::String
|
1173
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndexAutoScalingDescription]
|
1174
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1175
|
+
attr_accessor replica_provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1176
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1177
|
+
SENSITIVE: []
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
class ReplicaAutoScalingUpdate
|
1181
|
+
attr_accessor region_name: ::String
|
1182
|
+
attr_accessor replica_global_secondary_index_updates: ::Array[Types::ReplicaGlobalSecondaryIndexAutoScalingUpdate]
|
1183
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1184
|
+
SENSITIVE: []
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
class ReplicaDescription
|
1188
|
+
attr_accessor region_name: ::String
|
1189
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1190
|
+
attr_accessor replica_status_description: ::String
|
1191
|
+
attr_accessor replica_status_percent_progress: ::String
|
1192
|
+
attr_accessor kms_master_key_id: ::String
|
1193
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1194
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndexDescription]
|
1195
|
+
attr_accessor replica_inaccessible_date_time: ::Time
|
1196
|
+
attr_accessor replica_table_class_summary: Types::TableClassSummary
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class ReplicaGlobalSecondaryIndex
|
1201
|
+
attr_accessor index_name: ::String
|
1202
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class ReplicaGlobalSecondaryIndexAutoScalingDescription
|
1207
|
+
attr_accessor index_name: ::String
|
1208
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
1209
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1210
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class ReplicaGlobalSecondaryIndexAutoScalingUpdate
|
1215
|
+
attr_accessor index_name: ::String
|
1216
|
+
attr_accessor provisioned_read_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class ReplicaGlobalSecondaryIndexDescription
|
1221
|
+
attr_accessor index_name: ::String
|
1222
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class ReplicaGlobalSecondaryIndexSettingsDescription
|
1227
|
+
attr_accessor index_name: ::String
|
1228
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
1229
|
+
attr_accessor provisioned_read_capacity_units: ::Integer
|
1230
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1231
|
+
attr_accessor provisioned_write_capacity_units: ::Integer
|
1232
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1233
|
+
SENSITIVE: []
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class ReplicaGlobalSecondaryIndexSettingsUpdate
|
1237
|
+
attr_accessor index_name: ::String
|
1238
|
+
attr_accessor provisioned_read_capacity_units: ::Integer
|
1239
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1240
|
+
SENSITIVE: []
|
1241
|
+
end
|
1242
|
+
|
1243
|
+
class ReplicaNotFoundException
|
1244
|
+
attr_accessor message: ::String
|
1245
|
+
SENSITIVE: []
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
class ReplicaSettingsDescription
|
1249
|
+
attr_accessor region_name: ::String
|
1250
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1251
|
+
attr_accessor replica_billing_mode_summary: Types::BillingModeSummary
|
1252
|
+
attr_accessor replica_provisioned_read_capacity_units: ::Integer
|
1253
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1254
|
+
attr_accessor replica_provisioned_write_capacity_units: ::Integer
|
1255
|
+
attr_accessor replica_provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1256
|
+
attr_accessor replica_global_secondary_index_settings: ::Array[Types::ReplicaGlobalSecondaryIndexSettingsDescription]
|
1257
|
+
attr_accessor replica_table_class_summary: Types::TableClassSummary
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class ReplicaSettingsUpdate
|
1262
|
+
attr_accessor region_name: ::String
|
1263
|
+
attr_accessor replica_provisioned_read_capacity_units: ::Integer
|
1264
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1265
|
+
attr_accessor replica_global_secondary_index_settings_update: ::Array[Types::ReplicaGlobalSecondaryIndexSettingsUpdate]
|
1266
|
+
attr_accessor replica_table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class ReplicaUpdate
|
1271
|
+
attr_accessor create: Types::CreateReplicaAction
|
1272
|
+
attr_accessor delete: Types::DeleteReplicaAction
|
1273
|
+
SENSITIVE: []
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
class ReplicationGroupUpdate
|
1277
|
+
attr_accessor create: Types::CreateReplicationGroupMemberAction
|
1278
|
+
attr_accessor update: Types::UpdateReplicationGroupMemberAction
|
1279
|
+
attr_accessor delete: Types::DeleteReplicationGroupMemberAction
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class RequestLimitExceeded
|
1284
|
+
attr_accessor message: ::String
|
1285
|
+
SENSITIVE: []
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class ResourceInUseException
|
1289
|
+
attr_accessor message: ::String
|
1290
|
+
SENSITIVE: []
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class ResourceNotFoundException
|
1294
|
+
attr_accessor message: ::String
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class RestoreSummary
|
1299
|
+
attr_accessor source_backup_arn: ::String
|
1300
|
+
attr_accessor source_table_arn: ::String
|
1301
|
+
attr_accessor restore_date_time: ::Time
|
1302
|
+
attr_accessor restore_in_progress: bool
|
1303
|
+
SENSITIVE: []
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
class RestoreTableFromBackupInput
|
1307
|
+
attr_accessor target_table_name: ::String
|
1308
|
+
attr_accessor backup_arn: ::String
|
1309
|
+
attr_accessor billing_mode_override: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1310
|
+
attr_accessor global_secondary_index_override: ::Array[Types::GlobalSecondaryIndex]
|
1311
|
+
attr_accessor local_secondary_index_override: ::Array[Types::LocalSecondaryIndex]
|
1312
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughput
|
1313
|
+
attr_accessor sse_specification_override: Types::SSESpecification
|
1314
|
+
SENSITIVE: []
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class RestoreTableFromBackupOutput
|
1318
|
+
attr_accessor table_description: Types::TableDescription
|
1319
|
+
SENSITIVE: []
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
class RestoreTableToPointInTimeInput
|
1323
|
+
attr_accessor source_table_arn: ::String
|
1324
|
+
attr_accessor source_table_name: ::String
|
1325
|
+
attr_accessor target_table_name: ::String
|
1326
|
+
attr_accessor use_latest_restorable_time: bool
|
1327
|
+
attr_accessor restore_date_time: ::Time
|
1328
|
+
attr_accessor billing_mode_override: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1329
|
+
attr_accessor global_secondary_index_override: ::Array[Types::GlobalSecondaryIndex]
|
1330
|
+
attr_accessor local_secondary_index_override: ::Array[Types::LocalSecondaryIndex]
|
1331
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughput
|
1332
|
+
attr_accessor sse_specification_override: Types::SSESpecification
|
1333
|
+
SENSITIVE: []
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
class RestoreTableToPointInTimeOutput
|
1337
|
+
attr_accessor table_description: Types::TableDescription
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class S3BucketSource
|
1342
|
+
attr_accessor s3_bucket_owner: ::String
|
1343
|
+
attr_accessor s3_bucket: ::String
|
1344
|
+
attr_accessor s3_key_prefix: ::String
|
1345
|
+
SENSITIVE: []
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
class SSEDescription
|
1349
|
+
attr_accessor status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "UPDATING")
|
1350
|
+
attr_accessor sse_type: ("AES256" | "KMS")
|
1351
|
+
attr_accessor kms_master_key_arn: ::String
|
1352
|
+
attr_accessor inaccessible_encryption_date_time: ::Time
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class SSESpecification
|
1357
|
+
attr_accessor enabled: bool
|
1358
|
+
attr_accessor sse_type: ("AES256" | "KMS")
|
1359
|
+
attr_accessor kms_master_key_id: ::String
|
1360
|
+
SENSITIVE: []
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class ScanInput
|
1364
|
+
attr_accessor table_name: ::String
|
1365
|
+
attr_accessor index_name: ::String
|
1366
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
1367
|
+
attr_accessor limit: ::Integer
|
1368
|
+
attr_accessor select: ("ALL_ATTRIBUTES" | "ALL_PROJECTED_ATTRIBUTES" | "SPECIFIC_ATTRIBUTES" | "COUNT")
|
1369
|
+
attr_accessor scan_filter: ::Hash[::String, Types::Condition]
|
1370
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1371
|
+
attr_accessor exclusive_start_key: ::Hash[::String, Types::AttributeValue]
|
1372
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1373
|
+
attr_accessor total_segments: ::Integer
|
1374
|
+
attr_accessor segment: ::Integer
|
1375
|
+
attr_accessor projection_expression: ::String
|
1376
|
+
attr_accessor filter_expression: ::String
|
1377
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1378
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1379
|
+
attr_accessor consistent_read: bool
|
1380
|
+
SENSITIVE: []
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
class ScanOutput
|
1384
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
1385
|
+
attr_accessor count: ::Integer
|
1386
|
+
attr_accessor scanned_count: ::Integer
|
1387
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
1388
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1389
|
+
SENSITIVE: []
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
class SourceTableDetails
|
1393
|
+
attr_accessor table_name: ::String
|
1394
|
+
attr_accessor table_id: ::String
|
1395
|
+
attr_accessor table_arn: ::String
|
1396
|
+
attr_accessor table_size_bytes: ::Integer
|
1397
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1398
|
+
attr_accessor table_creation_date_time: ::Time
|
1399
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1400
|
+
attr_accessor item_count: ::Integer
|
1401
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1402
|
+
SENSITIVE: []
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
class SourceTableFeatureDetails
|
1406
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndexInfo]
|
1407
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndexInfo]
|
1408
|
+
attr_accessor stream_description: Types::StreamSpecification
|
1409
|
+
attr_accessor time_to_live_description: Types::TimeToLiveDescription
|
1410
|
+
attr_accessor sse_description: Types::SSEDescription
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class StreamSpecification
|
1415
|
+
attr_accessor stream_enabled: bool
|
1416
|
+
attr_accessor stream_view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "NEW_AND_OLD_IMAGES" | "KEYS_ONLY")
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class TableAlreadyExistsException
|
1421
|
+
attr_accessor message: ::String
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class TableAutoScalingDescription
|
1426
|
+
attr_accessor table_name: ::String
|
1427
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1428
|
+
attr_accessor replicas: ::Array[Types::ReplicaAutoScalingDescription]
|
1429
|
+
SENSITIVE: []
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
class TableClassSummary
|
1433
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1434
|
+
attr_accessor last_update_date_time: ::Time
|
1435
|
+
SENSITIVE: []
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
class TableCreationParameters
|
1439
|
+
attr_accessor table_name: ::String
|
1440
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1441
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1442
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1443
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1444
|
+
attr_accessor sse_specification: Types::SSESpecification
|
1445
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndex]
|
1446
|
+
SENSITIVE: []
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
class TableDescription
|
1450
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1451
|
+
attr_accessor table_name: ::String
|
1452
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1453
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1454
|
+
attr_accessor creation_date_time: ::Time
|
1455
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughputDescription
|
1456
|
+
attr_accessor table_size_bytes: ::Integer
|
1457
|
+
attr_accessor item_count: ::Integer
|
1458
|
+
attr_accessor table_arn: ::String
|
1459
|
+
attr_accessor table_id: ::String
|
1460
|
+
attr_accessor billing_mode_summary: Types::BillingModeSummary
|
1461
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndexDescription]
|
1462
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndexDescription]
|
1463
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
1464
|
+
attr_accessor latest_stream_label: ::String
|
1465
|
+
attr_accessor latest_stream_arn: ::String
|
1466
|
+
attr_accessor global_table_version: ::String
|
1467
|
+
attr_accessor replicas: ::Array[Types::ReplicaDescription]
|
1468
|
+
attr_accessor restore_summary: Types::RestoreSummary
|
1469
|
+
attr_accessor sse_description: Types::SSEDescription
|
1470
|
+
attr_accessor archival_summary: Types::ArchivalSummary
|
1471
|
+
attr_accessor table_class_summary: Types::TableClassSummary
|
1472
|
+
attr_accessor deletion_protection_enabled: bool
|
1473
|
+
SENSITIVE: []
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
class TableInUseException
|
1477
|
+
attr_accessor message: ::String
|
1478
|
+
SENSITIVE: []
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
class TableNotFoundException
|
1482
|
+
attr_accessor message: ::String
|
1483
|
+
SENSITIVE: []
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
class Tag
|
1487
|
+
attr_accessor key: ::String
|
1488
|
+
attr_accessor value: ::String
|
1489
|
+
SENSITIVE: []
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
class TagResourceInput
|
1493
|
+
attr_accessor resource_arn: ::String
|
1494
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1495
|
+
SENSITIVE: []
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
class TimeToLiveDescription
|
1499
|
+
attr_accessor time_to_live_status: ("ENABLING" | "DISABLING" | "ENABLED" | "DISABLED")
|
1500
|
+
attr_accessor attribute_name: ::String
|
1501
|
+
SENSITIVE: []
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
class TimeToLiveSpecification
|
1505
|
+
attr_accessor enabled: bool
|
1506
|
+
attr_accessor attribute_name: ::String
|
1507
|
+
SENSITIVE: []
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
class TransactGetItem
|
1511
|
+
attr_accessor get: Types::Get
|
1512
|
+
SENSITIVE: []
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
class TransactGetItemsInput
|
1516
|
+
attr_accessor transact_items: ::Array[Types::TransactGetItem]
|
1517
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1518
|
+
SENSITIVE: []
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
class TransactGetItemsOutput
|
1522
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
1523
|
+
attr_accessor responses: ::Array[Types::ItemResponse]
|
1524
|
+
SENSITIVE: []
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
class TransactWriteItem
|
1528
|
+
attr_accessor condition_check: Types::ConditionCheck
|
1529
|
+
attr_accessor put: Types::Put
|
1530
|
+
attr_accessor delete: Types::Delete
|
1531
|
+
attr_accessor update: Types::Update
|
1532
|
+
SENSITIVE: []
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
class TransactWriteItemsInput
|
1536
|
+
attr_accessor transact_items: ::Array[Types::TransactWriteItem]
|
1537
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1538
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1539
|
+
attr_accessor client_request_token: ::String
|
1540
|
+
SENSITIVE: []
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
class TransactWriteItemsOutput
|
1544
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
1545
|
+
attr_accessor item_collection_metrics: ::Hash[::String, ::Array[Types::ItemCollectionMetrics]]
|
1546
|
+
SENSITIVE: []
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
class TransactionCanceledException
|
1550
|
+
attr_accessor message: ::String
|
1551
|
+
attr_accessor cancellation_reasons: ::Array[Types::CancellationReason]
|
1552
|
+
SENSITIVE: []
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
class TransactionConflictException
|
1556
|
+
attr_accessor message: ::String
|
1557
|
+
SENSITIVE: []
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
class TransactionInProgressException
|
1561
|
+
attr_accessor message: ::String
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class UntagResourceInput
|
1566
|
+
attr_accessor resource_arn: ::String
|
1567
|
+
attr_accessor tag_keys: ::Array[::String]
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class Update
|
1572
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
1573
|
+
attr_accessor update_expression: ::String
|
1574
|
+
attr_accessor table_name: ::String
|
1575
|
+
attr_accessor condition_expression: ::String
|
1576
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1577
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1578
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1579
|
+
SENSITIVE: []
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class UpdateContinuousBackupsInput
|
1583
|
+
attr_accessor table_name: ::String
|
1584
|
+
attr_accessor point_in_time_recovery_specification: Types::PointInTimeRecoverySpecification
|
1585
|
+
SENSITIVE: []
|
1586
|
+
end
|
1587
|
+
|
1588
|
+
class UpdateContinuousBackupsOutput
|
1589
|
+
attr_accessor continuous_backups_description: Types::ContinuousBackupsDescription
|
1590
|
+
SENSITIVE: []
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
class UpdateContributorInsightsInput
|
1594
|
+
attr_accessor table_name: ::String
|
1595
|
+
attr_accessor index_name: ::String
|
1596
|
+
attr_accessor contributor_insights_action: ("ENABLE" | "DISABLE")
|
1597
|
+
SENSITIVE: []
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
class UpdateContributorInsightsOutput
|
1601
|
+
attr_accessor table_name: ::String
|
1602
|
+
attr_accessor index_name: ::String
|
1603
|
+
attr_accessor contributor_insights_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
|
1604
|
+
SENSITIVE: []
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
class UpdateGlobalSecondaryIndexAction
|
1608
|
+
attr_accessor index_name: ::String
|
1609
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1610
|
+
SENSITIVE: []
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
class UpdateGlobalTableInput
|
1614
|
+
attr_accessor global_table_name: ::String
|
1615
|
+
attr_accessor replica_updates: ::Array[Types::ReplicaUpdate]
|
1616
|
+
SENSITIVE: []
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class UpdateGlobalTableOutput
|
1620
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
1621
|
+
SENSITIVE: []
|
1622
|
+
end
|
1623
|
+
|
1624
|
+
class UpdateGlobalTableSettingsInput
|
1625
|
+
attr_accessor global_table_name: ::String
|
1626
|
+
attr_accessor global_table_billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1627
|
+
attr_accessor global_table_provisioned_write_capacity_units: ::Integer
|
1628
|
+
attr_accessor global_table_provisioned_write_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1629
|
+
attr_accessor global_table_global_secondary_index_settings_update: ::Array[Types::GlobalTableGlobalSecondaryIndexSettingsUpdate]
|
1630
|
+
attr_accessor replica_settings_update: ::Array[Types::ReplicaSettingsUpdate]
|
1631
|
+
SENSITIVE: []
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class UpdateGlobalTableSettingsOutput
|
1635
|
+
attr_accessor global_table_name: ::String
|
1636
|
+
attr_accessor replica_settings: ::Array[Types::ReplicaSettingsDescription]
|
1637
|
+
SENSITIVE: []
|
1638
|
+
end
|
1639
|
+
|
1640
|
+
class UpdateItemInput
|
1641
|
+
attr_accessor table_name: ::String
|
1642
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
1643
|
+
attr_accessor attribute_updates: ::Hash[::String, Types::AttributeValueUpdate]
|
1644
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
1645
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1646
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
1647
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1648
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1649
|
+
attr_accessor update_expression: ::String
|
1650
|
+
attr_accessor condition_expression: ::String
|
1651
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1652
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1653
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class UpdateItemOutput
|
1658
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
1659
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1660
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
1661
|
+
SENSITIVE: []
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
class UpdateKinesisStreamingConfiguration
|
1665
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
1666
|
+
SENSITIVE: []
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
class UpdateKinesisStreamingDestinationInput
|
1670
|
+
attr_accessor table_name: ::String
|
1671
|
+
attr_accessor stream_arn: ::String
|
1672
|
+
attr_accessor update_kinesis_streaming_configuration: Types::UpdateKinesisStreamingConfiguration
|
1673
|
+
SENSITIVE: []
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
class UpdateKinesisStreamingDestinationOutput
|
1677
|
+
attr_accessor table_name: ::String
|
1678
|
+
attr_accessor stream_arn: ::String
|
1679
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
1680
|
+
attr_accessor update_kinesis_streaming_configuration: Types::UpdateKinesisStreamingConfiguration
|
1681
|
+
SENSITIVE: []
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
class UpdateReplicationGroupMemberAction
|
1685
|
+
attr_accessor region_name: ::String
|
1686
|
+
attr_accessor kms_master_key_id: ::String
|
1687
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1688
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndex]
|
1689
|
+
attr_accessor table_class_override: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class UpdateTableInput
|
1694
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1695
|
+
attr_accessor table_name: ::String
|
1696
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1697
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1698
|
+
attr_accessor global_secondary_index_updates: ::Array[Types::GlobalSecondaryIndexUpdate]
|
1699
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
1700
|
+
attr_accessor sse_specification: Types::SSESpecification
|
1701
|
+
attr_accessor replica_updates: ::Array[Types::ReplicationGroupUpdate]
|
1702
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1703
|
+
attr_accessor deletion_protection_enabled: bool
|
1704
|
+
SENSITIVE: []
|
1705
|
+
end
|
1706
|
+
|
1707
|
+
class UpdateTableOutput
|
1708
|
+
attr_accessor table_description: Types::TableDescription
|
1709
|
+
SENSITIVE: []
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
class UpdateTableReplicaAutoScalingInput
|
1713
|
+
attr_accessor global_secondary_index_updates: ::Array[Types::GlobalSecondaryIndexAutoScalingUpdate]
|
1714
|
+
attr_accessor table_name: ::String
|
1715
|
+
attr_accessor provisioned_write_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1716
|
+
attr_accessor replica_updates: ::Array[Types::ReplicaAutoScalingUpdate]
|
1717
|
+
SENSITIVE: []
|
1718
|
+
end
|
1719
|
+
|
1720
|
+
class UpdateTableReplicaAutoScalingOutput
|
1721
|
+
attr_accessor table_auto_scaling_description: Types::TableAutoScalingDescription
|
1722
|
+
SENSITIVE: []
|
1723
|
+
end
|
1724
|
+
|
1725
|
+
class UpdateTimeToLiveInput
|
1726
|
+
attr_accessor table_name: ::String
|
1727
|
+
attr_accessor time_to_live_specification: Types::TimeToLiveSpecification
|
1728
|
+
SENSITIVE: []
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
class UpdateTimeToLiveOutput
|
1732
|
+
attr_accessor time_to_live_specification: Types::TimeToLiveSpecification
|
1733
|
+
SENSITIVE: []
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
class WriteRequest
|
1737
|
+
attr_accessor put_request: Types::PutRequest
|
1738
|
+
attr_accessor delete_request: Types::DeleteRequest
|
1739
|
+
SENSITIVE: []
|
1740
|
+
end
|
1741
|
+
end
|
1742
|
+
end
|