aws-sdk-dynamodb 1.96.0 → 1.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +182 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +1054 -319
- data/lib/aws-sdk-dynamodb/client_api.rb +218 -34
- data/lib/aws-sdk-dynamodb/endpoint_parameters.rb +27 -6
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +42 -10
- data/lib/aws-sdk-dynamodb/endpoints.rb +2 -740
- data/lib/aws-sdk-dynamodb/errors.rb +32 -0
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +48 -120
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +26 -0
- data/lib/aws-sdk-dynamodb/resource.rb +66 -27
- data/lib/aws-sdk-dynamodb/table.rb +147 -49
- data/lib/aws-sdk-dynamodb/types.rb +880 -182
- data/lib/aws-sdk-dynamodb.rb +17 -13
- data/sig/client.rbs +1531 -0
- data/sig/errors.rbs +117 -0
- data/sig/resource.rbs +217 -0
- data/sig/table.rbs +378 -0
- data/sig/types.rbs +1847 -0
- data/sig/waiters.rbs +33 -0
- metadata +17 -11
data/sig/types.rbs
ADDED
@@ -0,0 +1,1847 @@
|
|
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
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
281
|
+
attr_accessor warm_throughput: Types::WarmThroughput
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class CreateGlobalTableInput
|
286
|
+
attr_accessor global_table_name: ::String
|
287
|
+
attr_accessor replication_group: ::Array[Types::Replica]
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class CreateGlobalTableOutput
|
292
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class CreateReplicaAction
|
297
|
+
attr_accessor region_name: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class CreateReplicationGroupMemberAction
|
302
|
+
attr_accessor region_name: ::String
|
303
|
+
attr_accessor kms_master_key_id: ::String
|
304
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
305
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughputOverride
|
306
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndex]
|
307
|
+
attr_accessor table_class_override: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class CreateTableInput
|
312
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
313
|
+
attr_accessor table_name: ::String
|
314
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
315
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndex]
|
316
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndex]
|
317
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
318
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
319
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
320
|
+
attr_accessor sse_specification: Types::SSESpecification
|
321
|
+
attr_accessor tags: ::Array[Types::Tag]
|
322
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
323
|
+
attr_accessor deletion_protection_enabled: bool
|
324
|
+
attr_accessor warm_throughput: Types::WarmThroughput
|
325
|
+
attr_accessor resource_policy: ::String
|
326
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class CreateTableOutput
|
331
|
+
attr_accessor table_description: Types::TableDescription
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class CsvOptions
|
336
|
+
attr_accessor delimiter: ::String
|
337
|
+
attr_accessor header_list: ::Array[::String]
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class Delete
|
342
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
343
|
+
attr_accessor table_name: ::String
|
344
|
+
attr_accessor condition_expression: ::String
|
345
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
346
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
347
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class DeleteBackupInput
|
352
|
+
attr_accessor backup_arn: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class DeleteBackupOutput
|
357
|
+
attr_accessor backup_description: Types::BackupDescription
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeleteGlobalSecondaryIndexAction
|
362
|
+
attr_accessor index_name: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class DeleteItemInput
|
367
|
+
attr_accessor table_name: ::String
|
368
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
369
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
370
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
371
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
372
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
373
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
374
|
+
attr_accessor condition_expression: ::String
|
375
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
376
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
377
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class DeleteItemOutput
|
382
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
383
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
384
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class DeleteReplicaAction
|
389
|
+
attr_accessor region_name: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class DeleteReplicationGroupMemberAction
|
394
|
+
attr_accessor region_name: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class DeleteRequest
|
399
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class DeleteResourcePolicyInput
|
404
|
+
attr_accessor resource_arn: ::String
|
405
|
+
attr_accessor expected_revision_id: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class DeleteResourcePolicyOutput
|
410
|
+
attr_accessor revision_id: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class DeleteTableInput
|
415
|
+
attr_accessor table_name: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class DeleteTableOutput
|
420
|
+
attr_accessor table_description: Types::TableDescription
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class DescribeBackupInput
|
425
|
+
attr_accessor backup_arn: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class DescribeBackupOutput
|
430
|
+
attr_accessor backup_description: Types::BackupDescription
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class DescribeContinuousBackupsInput
|
435
|
+
attr_accessor table_name: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class DescribeContinuousBackupsOutput
|
440
|
+
attr_accessor continuous_backups_description: Types::ContinuousBackupsDescription
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class DescribeContributorInsightsInput
|
445
|
+
attr_accessor table_name: ::String
|
446
|
+
attr_accessor index_name: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class DescribeContributorInsightsOutput
|
451
|
+
attr_accessor table_name: ::String
|
452
|
+
attr_accessor index_name: ::String
|
453
|
+
attr_accessor contributor_insights_rule_list: ::Array[::String]
|
454
|
+
attr_accessor contributor_insights_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
|
455
|
+
attr_accessor last_update_date_time: ::Time
|
456
|
+
attr_accessor failure_exception: Types::FailureException
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class DescribeEndpointsRequest < Aws::EmptyStructure
|
461
|
+
end
|
462
|
+
|
463
|
+
class DescribeEndpointsResponse
|
464
|
+
attr_accessor endpoints: ::Array[Types::Endpoint]
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class DescribeExportInput
|
469
|
+
attr_accessor export_arn: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class DescribeExportOutput
|
474
|
+
attr_accessor export_description: Types::ExportDescription
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class DescribeGlobalTableInput
|
479
|
+
attr_accessor global_table_name: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class DescribeGlobalTableOutput
|
484
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class DescribeGlobalTableSettingsInput
|
489
|
+
attr_accessor global_table_name: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class DescribeGlobalTableSettingsOutput
|
494
|
+
attr_accessor global_table_name: ::String
|
495
|
+
attr_accessor replica_settings: ::Array[Types::ReplicaSettingsDescription]
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class DescribeImportInput
|
500
|
+
attr_accessor import_arn: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class DescribeImportOutput
|
505
|
+
attr_accessor import_table_description: Types::ImportTableDescription
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class DescribeKinesisStreamingDestinationInput
|
510
|
+
attr_accessor table_name: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class DescribeKinesisStreamingDestinationOutput
|
515
|
+
attr_accessor table_name: ::String
|
516
|
+
attr_accessor kinesis_data_stream_destinations: ::Array[Types::KinesisDataStreamDestination]
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class DescribeLimitsInput < Aws::EmptyStructure
|
521
|
+
end
|
522
|
+
|
523
|
+
class DescribeLimitsOutput
|
524
|
+
attr_accessor account_max_read_capacity_units: ::Integer
|
525
|
+
attr_accessor account_max_write_capacity_units: ::Integer
|
526
|
+
attr_accessor table_max_read_capacity_units: ::Integer
|
527
|
+
attr_accessor table_max_write_capacity_units: ::Integer
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class DescribeTableInput
|
532
|
+
attr_accessor table_name: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class DescribeTableOutput
|
537
|
+
attr_accessor table: Types::TableDescription
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class DescribeTableReplicaAutoScalingInput
|
542
|
+
attr_accessor table_name: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DescribeTableReplicaAutoScalingOutput
|
547
|
+
attr_accessor table_auto_scaling_description: Types::TableAutoScalingDescription
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class DescribeTimeToLiveInput
|
552
|
+
attr_accessor table_name: ::String
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class DescribeTimeToLiveOutput
|
557
|
+
attr_accessor time_to_live_description: Types::TimeToLiveDescription
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class DuplicateItemException
|
562
|
+
attr_accessor message: ::String
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class EnableKinesisStreamingConfiguration
|
567
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class Endpoint
|
572
|
+
attr_accessor address: ::String
|
573
|
+
attr_accessor cache_period_in_minutes: ::Integer
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class ExecuteStatementInput
|
578
|
+
attr_accessor statement: ::String
|
579
|
+
attr_accessor parameters: ::Array[Types::AttributeValue]
|
580
|
+
attr_accessor consistent_read: bool
|
581
|
+
attr_accessor next_token: ::String
|
582
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
583
|
+
attr_accessor limit: ::Integer
|
584
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class ExecuteStatementOutput
|
589
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
590
|
+
attr_accessor next_token: ::String
|
591
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
592
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class ExecuteTransactionInput
|
597
|
+
attr_accessor transact_statements: ::Array[Types::ParameterizedStatement]
|
598
|
+
attr_accessor client_request_token: ::String
|
599
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class ExecuteTransactionOutput
|
604
|
+
attr_accessor responses: ::Array[Types::ItemResponse]
|
605
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class ExpectedAttributeValue
|
610
|
+
attr_accessor value: Types::AttributeValue
|
611
|
+
attr_accessor exists: bool
|
612
|
+
attr_accessor comparison_operator: ("EQ" | "NE" | "IN" | "LE" | "LT" | "GE" | "GT" | "BETWEEN" | "NOT_NULL" | "NULL" | "CONTAINS" | "NOT_CONTAINS" | "BEGINS_WITH")
|
613
|
+
attr_accessor attribute_value_list: ::Array[Types::AttributeValue]
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class ExportConflictException
|
618
|
+
attr_accessor message: ::String
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class ExportDescription
|
623
|
+
attr_accessor export_arn: ::String
|
624
|
+
attr_accessor export_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
625
|
+
attr_accessor start_time: ::Time
|
626
|
+
attr_accessor end_time: ::Time
|
627
|
+
attr_accessor export_manifest: ::String
|
628
|
+
attr_accessor table_arn: ::String
|
629
|
+
attr_accessor table_id: ::String
|
630
|
+
attr_accessor export_time: ::Time
|
631
|
+
attr_accessor client_token: ::String
|
632
|
+
attr_accessor s3_bucket: ::String
|
633
|
+
attr_accessor s3_bucket_owner: ::String
|
634
|
+
attr_accessor s3_prefix: ::String
|
635
|
+
attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
|
636
|
+
attr_accessor s3_sse_kms_key_id: ::String
|
637
|
+
attr_accessor failure_code: ::String
|
638
|
+
attr_accessor failure_message: ::String
|
639
|
+
attr_accessor export_format: ("DYNAMODB_JSON" | "ION")
|
640
|
+
attr_accessor billed_size_bytes: ::Integer
|
641
|
+
attr_accessor item_count: ::Integer
|
642
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
643
|
+
attr_accessor incremental_export_specification: Types::IncrementalExportSpecification
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class ExportNotFoundException
|
648
|
+
attr_accessor message: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class ExportSummary
|
653
|
+
attr_accessor export_arn: ::String
|
654
|
+
attr_accessor export_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
655
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class ExportTableToPointInTimeInput
|
660
|
+
attr_accessor table_arn: ::String
|
661
|
+
attr_accessor export_time: ::Time
|
662
|
+
attr_accessor client_token: ::String
|
663
|
+
attr_accessor s3_bucket: ::String
|
664
|
+
attr_accessor s3_bucket_owner: ::String
|
665
|
+
attr_accessor s3_prefix: ::String
|
666
|
+
attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
|
667
|
+
attr_accessor s3_sse_kms_key_id: ::String
|
668
|
+
attr_accessor export_format: ("DYNAMODB_JSON" | "ION")
|
669
|
+
attr_accessor export_type: ("FULL_EXPORT" | "INCREMENTAL_EXPORT")
|
670
|
+
attr_accessor incremental_export_specification: Types::IncrementalExportSpecification
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class ExportTableToPointInTimeOutput
|
675
|
+
attr_accessor export_description: Types::ExportDescription
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class FailureException
|
680
|
+
attr_accessor exception_name: ::String
|
681
|
+
attr_accessor exception_description: ::String
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class Get
|
686
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
687
|
+
attr_accessor table_name: ::String
|
688
|
+
attr_accessor projection_expression: ::String
|
689
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class GetItemInput
|
694
|
+
attr_accessor table_name: ::String
|
695
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
696
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
697
|
+
attr_accessor consistent_read: bool
|
698
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
699
|
+
attr_accessor projection_expression: ::String
|
700
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class GetItemOutput
|
705
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
706
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class GetResourcePolicyInput
|
711
|
+
attr_accessor resource_arn: ::String
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class GetResourcePolicyOutput
|
716
|
+
attr_accessor policy: ::String
|
717
|
+
attr_accessor revision_id: ::String
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class GlobalSecondaryIndex
|
722
|
+
attr_accessor index_name: ::String
|
723
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
724
|
+
attr_accessor projection: Types::Projection
|
725
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
726
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
727
|
+
attr_accessor warm_throughput: Types::WarmThroughput
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class GlobalSecondaryIndexAutoScalingUpdate
|
732
|
+
attr_accessor index_name: ::String
|
733
|
+
attr_accessor provisioned_write_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class GlobalSecondaryIndexDescription
|
738
|
+
attr_accessor index_name: ::String
|
739
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
740
|
+
attr_accessor projection: Types::Projection
|
741
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
742
|
+
attr_accessor backfilling: bool
|
743
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughputDescription
|
744
|
+
attr_accessor index_size_bytes: ::Integer
|
745
|
+
attr_accessor item_count: ::Integer
|
746
|
+
attr_accessor index_arn: ::String
|
747
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
748
|
+
attr_accessor warm_throughput: Types::GlobalSecondaryIndexWarmThroughputDescription
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class GlobalSecondaryIndexInfo
|
753
|
+
attr_accessor index_name: ::String
|
754
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
755
|
+
attr_accessor projection: Types::Projection
|
756
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
757
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
758
|
+
SENSITIVE: []
|
759
|
+
end
|
760
|
+
|
761
|
+
class GlobalSecondaryIndexUpdate
|
762
|
+
attr_accessor update: Types::UpdateGlobalSecondaryIndexAction
|
763
|
+
attr_accessor create: Types::CreateGlobalSecondaryIndexAction
|
764
|
+
attr_accessor delete: Types::DeleteGlobalSecondaryIndexAction
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class GlobalSecondaryIndexWarmThroughputDescription
|
769
|
+
attr_accessor read_units_per_second: ::Integer
|
770
|
+
attr_accessor write_units_per_second: ::Integer
|
771
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class GlobalTable
|
776
|
+
attr_accessor global_table_name: ::String
|
777
|
+
attr_accessor replication_group: ::Array[Types::Replica]
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class GlobalTableAlreadyExistsException
|
782
|
+
attr_accessor message: ::String
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class GlobalTableDescription
|
787
|
+
attr_accessor replication_group: ::Array[Types::ReplicaDescription]
|
788
|
+
attr_accessor global_table_arn: ::String
|
789
|
+
attr_accessor creation_date_time: ::Time
|
790
|
+
attr_accessor global_table_status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING")
|
791
|
+
attr_accessor global_table_name: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class GlobalTableGlobalSecondaryIndexSettingsUpdate
|
796
|
+
attr_accessor index_name: ::String
|
797
|
+
attr_accessor provisioned_write_capacity_units: ::Integer
|
798
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class GlobalTableNotFoundException
|
803
|
+
attr_accessor message: ::String
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
807
|
+
class IdempotentParameterMismatchException
|
808
|
+
attr_accessor message: ::String
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class ImportConflictException
|
813
|
+
attr_accessor message: ::String
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class ImportNotFoundException
|
818
|
+
attr_accessor message: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class ImportSummary
|
823
|
+
attr_accessor import_arn: ::String
|
824
|
+
attr_accessor import_status: ("IN_PROGRESS" | "COMPLETED" | "CANCELLING" | "CANCELLED" | "FAILED")
|
825
|
+
attr_accessor table_arn: ::String
|
826
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
827
|
+
attr_accessor cloud_watch_log_group_arn: ::String
|
828
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
829
|
+
attr_accessor start_time: ::Time
|
830
|
+
attr_accessor end_time: ::Time
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class ImportTableDescription
|
835
|
+
attr_accessor import_arn: ::String
|
836
|
+
attr_accessor import_status: ("IN_PROGRESS" | "COMPLETED" | "CANCELLING" | "CANCELLED" | "FAILED")
|
837
|
+
attr_accessor table_arn: ::String
|
838
|
+
attr_accessor table_id: ::String
|
839
|
+
attr_accessor client_token: ::String
|
840
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
841
|
+
attr_accessor error_count: ::Integer
|
842
|
+
attr_accessor cloud_watch_log_group_arn: ::String
|
843
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
844
|
+
attr_accessor input_format_options: Types::InputFormatOptions
|
845
|
+
attr_accessor input_compression_type: ("GZIP" | "ZSTD" | "NONE")
|
846
|
+
attr_accessor table_creation_parameters: Types::TableCreationParameters
|
847
|
+
attr_accessor start_time: ::Time
|
848
|
+
attr_accessor end_time: ::Time
|
849
|
+
attr_accessor processed_size_bytes: ::Integer
|
850
|
+
attr_accessor processed_item_count: ::Integer
|
851
|
+
attr_accessor imported_item_count: ::Integer
|
852
|
+
attr_accessor failure_code: ::String
|
853
|
+
attr_accessor failure_message: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ImportTableInput
|
858
|
+
attr_accessor client_token: ::String
|
859
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
860
|
+
attr_accessor input_format: ("DYNAMODB_JSON" | "ION" | "CSV")
|
861
|
+
attr_accessor input_format_options: Types::InputFormatOptions
|
862
|
+
attr_accessor input_compression_type: ("GZIP" | "ZSTD" | "NONE")
|
863
|
+
attr_accessor table_creation_parameters: Types::TableCreationParameters
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class ImportTableOutput
|
868
|
+
attr_accessor import_table_description: Types::ImportTableDescription
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class IncrementalExportSpecification
|
873
|
+
attr_accessor export_from_time: ::Time
|
874
|
+
attr_accessor export_to_time: ::Time
|
875
|
+
attr_accessor export_view_type: ("NEW_IMAGE" | "NEW_AND_OLD_IMAGES")
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class IndexNotFoundException
|
880
|
+
attr_accessor message: ::String
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class InputFormatOptions
|
885
|
+
attr_accessor csv: Types::CsvOptions
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class InternalServerError
|
890
|
+
attr_accessor message: ::String
|
891
|
+
SENSITIVE: []
|
892
|
+
end
|
893
|
+
|
894
|
+
class InvalidExportTimeException
|
895
|
+
attr_accessor message: ::String
|
896
|
+
SENSITIVE: []
|
897
|
+
end
|
898
|
+
|
899
|
+
class InvalidRestoreTimeException
|
900
|
+
attr_accessor message: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class ItemCollectionMetrics
|
905
|
+
attr_accessor item_collection_key: ::Hash[::String, Types::AttributeValue]
|
906
|
+
attr_accessor size_estimate_range_gb: ::Array[::Float]
|
907
|
+
SENSITIVE: []
|
908
|
+
end
|
909
|
+
|
910
|
+
class ItemCollectionSizeLimitExceededException
|
911
|
+
attr_accessor message: ::String
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class ItemResponse
|
916
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class KeySchemaElement
|
921
|
+
attr_accessor attribute_name: ::String
|
922
|
+
attr_accessor key_type: ("HASH" | "RANGE")
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class KeysAndAttributes
|
927
|
+
attr_accessor keys: ::Array[::Hash[::String, Types::AttributeValue]]
|
928
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
929
|
+
attr_accessor consistent_read: bool
|
930
|
+
attr_accessor projection_expression: ::String
|
931
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class KinesisDataStreamDestination
|
936
|
+
attr_accessor stream_arn: ::String
|
937
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
938
|
+
attr_accessor destination_status_description: ::String
|
939
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
940
|
+
SENSITIVE: []
|
941
|
+
end
|
942
|
+
|
943
|
+
class KinesisStreamingDestinationInput
|
944
|
+
attr_accessor table_name: ::String
|
945
|
+
attr_accessor stream_arn: ::String
|
946
|
+
attr_accessor enable_kinesis_streaming_configuration: Types::EnableKinesisStreamingConfiguration
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class KinesisStreamingDestinationOutput
|
951
|
+
attr_accessor table_name: ::String
|
952
|
+
attr_accessor stream_arn: ::String
|
953
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
954
|
+
attr_accessor enable_kinesis_streaming_configuration: Types::EnableKinesisStreamingConfiguration
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class LimitExceededException
|
959
|
+
attr_accessor message: ::String
|
960
|
+
SENSITIVE: []
|
961
|
+
end
|
962
|
+
|
963
|
+
class ListBackupsInput
|
964
|
+
attr_accessor table_name: ::String
|
965
|
+
attr_accessor limit: ::Integer
|
966
|
+
attr_accessor time_range_lower_bound: ::Time
|
967
|
+
attr_accessor time_range_upper_bound: ::Time
|
968
|
+
attr_accessor exclusive_start_backup_arn: ::String
|
969
|
+
attr_accessor backup_type: ("USER" | "SYSTEM" | "AWS_BACKUP" | "ALL")
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class ListBackupsOutput
|
974
|
+
attr_accessor backup_summaries: ::Array[Types::BackupSummary]
|
975
|
+
attr_accessor last_evaluated_backup_arn: ::String
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
979
|
+
class ListContributorInsightsInput
|
980
|
+
attr_accessor table_name: ::String
|
981
|
+
attr_accessor next_token: ::String
|
982
|
+
attr_accessor max_results: ::Integer
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class ListContributorInsightsOutput
|
987
|
+
attr_accessor contributor_insights_summaries: ::Array[Types::ContributorInsightsSummary]
|
988
|
+
attr_accessor next_token: ::String
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class ListExportsInput
|
993
|
+
attr_accessor table_arn: ::String
|
994
|
+
attr_accessor max_results: ::Integer
|
995
|
+
attr_accessor next_token: ::String
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class ListExportsOutput
|
1000
|
+
attr_accessor export_summaries: ::Array[Types::ExportSummary]
|
1001
|
+
attr_accessor next_token: ::String
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class ListGlobalTablesInput
|
1006
|
+
attr_accessor exclusive_start_global_table_name: ::String
|
1007
|
+
attr_accessor limit: ::Integer
|
1008
|
+
attr_accessor region_name: ::String
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class ListGlobalTablesOutput
|
1013
|
+
attr_accessor global_tables: ::Array[Types::GlobalTable]
|
1014
|
+
attr_accessor last_evaluated_global_table_name: ::String
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class ListImportsInput
|
1019
|
+
attr_accessor table_arn: ::String
|
1020
|
+
attr_accessor page_size: ::Integer
|
1021
|
+
attr_accessor next_token: ::String
|
1022
|
+
SENSITIVE: []
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class ListImportsOutput
|
1026
|
+
attr_accessor import_summary_list: ::Array[Types::ImportSummary]
|
1027
|
+
attr_accessor next_token: ::String
|
1028
|
+
SENSITIVE: []
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
class ListTablesInput
|
1032
|
+
attr_accessor exclusive_start_table_name: ::String
|
1033
|
+
attr_accessor limit: ::Integer
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class ListTablesOutput
|
1038
|
+
attr_accessor table_names: ::Array[::String]
|
1039
|
+
attr_accessor last_evaluated_table_name: ::String
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class ListTagsOfResourceInput
|
1044
|
+
attr_accessor resource_arn: ::String
|
1045
|
+
attr_accessor next_token: ::String
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class ListTagsOfResourceOutput
|
1050
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1051
|
+
attr_accessor next_token: ::String
|
1052
|
+
SENSITIVE: []
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class LocalSecondaryIndex
|
1056
|
+
attr_accessor index_name: ::String
|
1057
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1058
|
+
attr_accessor projection: Types::Projection
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class LocalSecondaryIndexDescription
|
1063
|
+
attr_accessor index_name: ::String
|
1064
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1065
|
+
attr_accessor projection: Types::Projection
|
1066
|
+
attr_accessor index_size_bytes: ::Integer
|
1067
|
+
attr_accessor item_count: ::Integer
|
1068
|
+
attr_accessor index_arn: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class LocalSecondaryIndexInfo
|
1073
|
+
attr_accessor index_name: ::String
|
1074
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1075
|
+
attr_accessor projection: Types::Projection
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
class OnDemandThroughput
|
1080
|
+
attr_accessor max_read_request_units: ::Integer
|
1081
|
+
attr_accessor max_write_request_units: ::Integer
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class OnDemandThroughputOverride
|
1086
|
+
attr_accessor max_read_request_units: ::Integer
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class ParameterizedStatement
|
1091
|
+
attr_accessor statement: ::String
|
1092
|
+
attr_accessor parameters: ::Array[Types::AttributeValue]
|
1093
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1094
|
+
SENSITIVE: []
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class PointInTimeRecoveryDescription
|
1098
|
+
attr_accessor point_in_time_recovery_status: ("ENABLED" | "DISABLED")
|
1099
|
+
attr_accessor earliest_restorable_date_time: ::Time
|
1100
|
+
attr_accessor latest_restorable_date_time: ::Time
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class PointInTimeRecoverySpecification
|
1105
|
+
attr_accessor point_in_time_recovery_enabled: bool
|
1106
|
+
SENSITIVE: []
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
class PointInTimeRecoveryUnavailableException
|
1110
|
+
attr_accessor message: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class PolicyNotFoundException
|
1115
|
+
attr_accessor message: ::String
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class Projection
|
1120
|
+
attr_accessor projection_type: ("ALL" | "KEYS_ONLY" | "INCLUDE")
|
1121
|
+
attr_accessor non_key_attributes: ::Array[::String]
|
1122
|
+
SENSITIVE: []
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class ProvisionedThroughput
|
1126
|
+
attr_accessor read_capacity_units: ::Integer
|
1127
|
+
attr_accessor write_capacity_units: ::Integer
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class ProvisionedThroughputDescription
|
1132
|
+
attr_accessor last_increase_date_time: ::Time
|
1133
|
+
attr_accessor last_decrease_date_time: ::Time
|
1134
|
+
attr_accessor number_of_decreases_today: ::Integer
|
1135
|
+
attr_accessor read_capacity_units: ::Integer
|
1136
|
+
attr_accessor write_capacity_units: ::Integer
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
class ProvisionedThroughputExceededException
|
1141
|
+
attr_accessor message: ::String
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class ProvisionedThroughputOverride
|
1146
|
+
attr_accessor read_capacity_units: ::Integer
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class Put
|
1151
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1152
|
+
attr_accessor table_name: ::String
|
1153
|
+
attr_accessor condition_expression: ::String
|
1154
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1155
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1156
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class PutItemInput
|
1161
|
+
attr_accessor table_name: ::String
|
1162
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1163
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
1164
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
1165
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1166
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1167
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1168
|
+
attr_accessor condition_expression: ::String
|
1169
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1170
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1171
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class PutItemOutput
|
1176
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
1177
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1178
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
1179
|
+
SENSITIVE: []
|
1180
|
+
end
|
1181
|
+
|
1182
|
+
class PutRequest
|
1183
|
+
attr_accessor item: ::Hash[::String, Types::AttributeValue]
|
1184
|
+
SENSITIVE: []
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
class PutResourcePolicyInput
|
1188
|
+
attr_accessor resource_arn: ::String
|
1189
|
+
attr_accessor policy: ::String
|
1190
|
+
attr_accessor expected_revision_id: ::String
|
1191
|
+
attr_accessor confirm_remove_self_resource_access: bool
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class PutResourcePolicyOutput
|
1196
|
+
attr_accessor revision_id: ::String
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class QueryInput
|
1201
|
+
attr_accessor table_name: ::String
|
1202
|
+
attr_accessor index_name: ::String
|
1203
|
+
attr_accessor select: ("ALL_ATTRIBUTES" | "ALL_PROJECTED_ATTRIBUTES" | "SPECIFIC_ATTRIBUTES" | "COUNT")
|
1204
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
1205
|
+
attr_accessor limit: ::Integer
|
1206
|
+
attr_accessor consistent_read: bool
|
1207
|
+
attr_accessor key_conditions: ::Hash[::String, Types::Condition]
|
1208
|
+
attr_accessor query_filter: ::Hash[::String, Types::Condition]
|
1209
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1210
|
+
attr_accessor scan_index_forward: bool
|
1211
|
+
attr_accessor exclusive_start_key: ::Hash[::String, Types::AttributeValue]
|
1212
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1213
|
+
attr_accessor projection_expression: ::String
|
1214
|
+
attr_accessor filter_expression: ::String
|
1215
|
+
attr_accessor key_condition_expression: ::String
|
1216
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1217
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class QueryOutput
|
1222
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
1223
|
+
attr_accessor count: ::Integer
|
1224
|
+
attr_accessor scanned_count: ::Integer
|
1225
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
1226
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class Replica
|
1231
|
+
attr_accessor region_name: ::String
|
1232
|
+
SENSITIVE: []
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class ReplicaAlreadyExistsException
|
1236
|
+
attr_accessor message: ::String
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class ReplicaAutoScalingDescription
|
1241
|
+
attr_accessor region_name: ::String
|
1242
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndexAutoScalingDescription]
|
1243
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1244
|
+
attr_accessor replica_provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1245
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1246
|
+
SENSITIVE: []
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
class ReplicaAutoScalingUpdate
|
1250
|
+
attr_accessor region_name: ::String
|
1251
|
+
attr_accessor replica_global_secondary_index_updates: ::Array[Types::ReplicaGlobalSecondaryIndexAutoScalingUpdate]
|
1252
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class ReplicaDescription
|
1257
|
+
attr_accessor region_name: ::String
|
1258
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1259
|
+
attr_accessor replica_status_description: ::String
|
1260
|
+
attr_accessor replica_status_percent_progress: ::String
|
1261
|
+
attr_accessor kms_master_key_id: ::String
|
1262
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1263
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughputOverride
|
1264
|
+
attr_accessor warm_throughput: Types::TableWarmThroughputDescription
|
1265
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndexDescription]
|
1266
|
+
attr_accessor replica_inaccessible_date_time: ::Time
|
1267
|
+
attr_accessor replica_table_class_summary: Types::TableClassSummary
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class ReplicaGlobalSecondaryIndex
|
1272
|
+
attr_accessor index_name: ::String
|
1273
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1274
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughputOverride
|
1275
|
+
SENSITIVE: []
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
class ReplicaGlobalSecondaryIndexAutoScalingDescription
|
1279
|
+
attr_accessor index_name: ::String
|
1280
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
1281
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1282
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class ReplicaGlobalSecondaryIndexAutoScalingUpdate
|
1287
|
+
attr_accessor index_name: ::String
|
1288
|
+
attr_accessor provisioned_read_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class ReplicaGlobalSecondaryIndexDescription
|
1293
|
+
attr_accessor index_name: ::String
|
1294
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1295
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughputOverride
|
1296
|
+
attr_accessor warm_throughput: Types::GlobalSecondaryIndexWarmThroughputDescription
|
1297
|
+
SENSITIVE: []
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
class ReplicaGlobalSecondaryIndexSettingsDescription
|
1301
|
+
attr_accessor index_name: ::String
|
1302
|
+
attr_accessor index_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE")
|
1303
|
+
attr_accessor provisioned_read_capacity_units: ::Integer
|
1304
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1305
|
+
attr_accessor provisioned_write_capacity_units: ::Integer
|
1306
|
+
attr_accessor provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1307
|
+
SENSITIVE: []
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class ReplicaGlobalSecondaryIndexSettingsUpdate
|
1311
|
+
attr_accessor index_name: ::String
|
1312
|
+
attr_accessor provisioned_read_capacity_units: ::Integer
|
1313
|
+
attr_accessor provisioned_read_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1314
|
+
SENSITIVE: []
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class ReplicaNotFoundException
|
1318
|
+
attr_accessor message: ::String
|
1319
|
+
SENSITIVE: []
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
class ReplicaSettingsDescription
|
1323
|
+
attr_accessor region_name: ::String
|
1324
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1325
|
+
attr_accessor replica_billing_mode_summary: Types::BillingModeSummary
|
1326
|
+
attr_accessor replica_provisioned_read_capacity_units: ::Integer
|
1327
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1328
|
+
attr_accessor replica_provisioned_write_capacity_units: ::Integer
|
1329
|
+
attr_accessor replica_provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1330
|
+
attr_accessor replica_global_secondary_index_settings: ::Array[Types::ReplicaGlobalSecondaryIndexSettingsDescription]
|
1331
|
+
attr_accessor replica_table_class_summary: Types::TableClassSummary
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class ReplicaSettingsUpdate
|
1336
|
+
attr_accessor region_name: ::String
|
1337
|
+
attr_accessor replica_provisioned_read_capacity_units: ::Integer
|
1338
|
+
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1339
|
+
attr_accessor replica_global_secondary_index_settings_update: ::Array[Types::ReplicaGlobalSecondaryIndexSettingsUpdate]
|
1340
|
+
attr_accessor replica_table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class ReplicaUpdate
|
1345
|
+
attr_accessor create: Types::CreateReplicaAction
|
1346
|
+
attr_accessor delete: Types::DeleteReplicaAction
|
1347
|
+
SENSITIVE: []
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class ReplicatedWriteConflictException
|
1351
|
+
attr_accessor message: ::String
|
1352
|
+
SENSITIVE: []
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class ReplicationGroupUpdate
|
1356
|
+
attr_accessor create: Types::CreateReplicationGroupMemberAction
|
1357
|
+
attr_accessor update: Types::UpdateReplicationGroupMemberAction
|
1358
|
+
attr_accessor delete: Types::DeleteReplicationGroupMemberAction
|
1359
|
+
SENSITIVE: []
|
1360
|
+
end
|
1361
|
+
|
1362
|
+
class RequestLimitExceeded
|
1363
|
+
attr_accessor message: ::String
|
1364
|
+
SENSITIVE: []
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
class ResourceInUseException
|
1368
|
+
attr_accessor message: ::String
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ResourceNotFoundException
|
1373
|
+
attr_accessor message: ::String
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
class RestoreSummary
|
1378
|
+
attr_accessor source_backup_arn: ::String
|
1379
|
+
attr_accessor source_table_arn: ::String
|
1380
|
+
attr_accessor restore_date_time: ::Time
|
1381
|
+
attr_accessor restore_in_progress: bool
|
1382
|
+
SENSITIVE: []
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
class RestoreTableFromBackupInput
|
1386
|
+
attr_accessor target_table_name: ::String
|
1387
|
+
attr_accessor backup_arn: ::String
|
1388
|
+
attr_accessor billing_mode_override: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1389
|
+
attr_accessor global_secondary_index_override: ::Array[Types::GlobalSecondaryIndex]
|
1390
|
+
attr_accessor local_secondary_index_override: ::Array[Types::LocalSecondaryIndex]
|
1391
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughput
|
1392
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughput
|
1393
|
+
attr_accessor sse_specification_override: Types::SSESpecification
|
1394
|
+
SENSITIVE: []
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class RestoreTableFromBackupOutput
|
1398
|
+
attr_accessor table_description: Types::TableDescription
|
1399
|
+
SENSITIVE: []
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
class RestoreTableToPointInTimeInput
|
1403
|
+
attr_accessor source_table_arn: ::String
|
1404
|
+
attr_accessor source_table_name: ::String
|
1405
|
+
attr_accessor target_table_name: ::String
|
1406
|
+
attr_accessor use_latest_restorable_time: bool
|
1407
|
+
attr_accessor restore_date_time: ::Time
|
1408
|
+
attr_accessor billing_mode_override: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1409
|
+
attr_accessor global_secondary_index_override: ::Array[Types::GlobalSecondaryIndex]
|
1410
|
+
attr_accessor local_secondary_index_override: ::Array[Types::LocalSecondaryIndex]
|
1411
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughput
|
1412
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughput
|
1413
|
+
attr_accessor sse_specification_override: Types::SSESpecification
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class RestoreTableToPointInTimeOutput
|
1418
|
+
attr_accessor table_description: Types::TableDescription
|
1419
|
+
SENSITIVE: []
|
1420
|
+
end
|
1421
|
+
|
1422
|
+
class S3BucketSource
|
1423
|
+
attr_accessor s3_bucket_owner: ::String
|
1424
|
+
attr_accessor s3_bucket: ::String
|
1425
|
+
attr_accessor s3_key_prefix: ::String
|
1426
|
+
SENSITIVE: []
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class SSEDescription
|
1430
|
+
attr_accessor status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "UPDATING")
|
1431
|
+
attr_accessor sse_type: ("AES256" | "KMS")
|
1432
|
+
attr_accessor kms_master_key_arn: ::String
|
1433
|
+
attr_accessor inaccessible_encryption_date_time: ::Time
|
1434
|
+
SENSITIVE: []
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
class SSESpecification
|
1438
|
+
attr_accessor enabled: bool
|
1439
|
+
attr_accessor sse_type: ("AES256" | "KMS")
|
1440
|
+
attr_accessor kms_master_key_id: ::String
|
1441
|
+
SENSITIVE: []
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class ScanInput
|
1445
|
+
attr_accessor table_name: ::String
|
1446
|
+
attr_accessor index_name: ::String
|
1447
|
+
attr_accessor attributes_to_get: ::Array[::String]
|
1448
|
+
attr_accessor limit: ::Integer
|
1449
|
+
attr_accessor select: ("ALL_ATTRIBUTES" | "ALL_PROJECTED_ATTRIBUTES" | "SPECIFIC_ATTRIBUTES" | "COUNT")
|
1450
|
+
attr_accessor scan_filter: ::Hash[::String, Types::Condition]
|
1451
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1452
|
+
attr_accessor exclusive_start_key: ::Hash[::String, Types::AttributeValue]
|
1453
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1454
|
+
attr_accessor total_segments: ::Integer
|
1455
|
+
attr_accessor segment: ::Integer
|
1456
|
+
attr_accessor projection_expression: ::String
|
1457
|
+
attr_accessor filter_expression: ::String
|
1458
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1459
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1460
|
+
attr_accessor consistent_read: bool
|
1461
|
+
SENSITIVE: []
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
class ScanOutput
|
1465
|
+
attr_accessor items: ::Array[::Hash[::String, Types::AttributeValue]]
|
1466
|
+
attr_accessor count: ::Integer
|
1467
|
+
attr_accessor scanned_count: ::Integer
|
1468
|
+
attr_accessor last_evaluated_key: ::Hash[::String, Types::AttributeValue]
|
1469
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1470
|
+
SENSITIVE: []
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class SourceTableDetails
|
1474
|
+
attr_accessor table_name: ::String
|
1475
|
+
attr_accessor table_id: ::String
|
1476
|
+
attr_accessor table_arn: ::String
|
1477
|
+
attr_accessor table_size_bytes: ::Integer
|
1478
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1479
|
+
attr_accessor table_creation_date_time: ::Time
|
1480
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1481
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1482
|
+
attr_accessor item_count: ::Integer
|
1483
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1484
|
+
SENSITIVE: []
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
class SourceTableFeatureDetails
|
1488
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndexInfo]
|
1489
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndexInfo]
|
1490
|
+
attr_accessor stream_description: Types::StreamSpecification
|
1491
|
+
attr_accessor time_to_live_description: Types::TimeToLiveDescription
|
1492
|
+
attr_accessor sse_description: Types::SSEDescription
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
class StreamSpecification
|
1497
|
+
attr_accessor stream_enabled: bool
|
1498
|
+
attr_accessor stream_view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "NEW_AND_OLD_IMAGES" | "KEYS_ONLY")
|
1499
|
+
SENSITIVE: []
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class TableAlreadyExistsException
|
1503
|
+
attr_accessor message: ::String
|
1504
|
+
SENSITIVE: []
|
1505
|
+
end
|
1506
|
+
|
1507
|
+
class TableAutoScalingDescription
|
1508
|
+
attr_accessor table_name: ::String
|
1509
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1510
|
+
attr_accessor replicas: ::Array[Types::ReplicaAutoScalingDescription]
|
1511
|
+
SENSITIVE: []
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
class TableClassSummary
|
1515
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1516
|
+
attr_accessor last_update_date_time: ::Time
|
1517
|
+
SENSITIVE: []
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
class TableCreationParameters
|
1521
|
+
attr_accessor table_name: ::String
|
1522
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1523
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1524
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1525
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1526
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1527
|
+
attr_accessor sse_specification: Types::SSESpecification
|
1528
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndex]
|
1529
|
+
SENSITIVE: []
|
1530
|
+
end
|
1531
|
+
|
1532
|
+
class TableDescription
|
1533
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1534
|
+
attr_accessor table_name: ::String
|
1535
|
+
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1536
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1537
|
+
attr_accessor creation_date_time: ::Time
|
1538
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughputDescription
|
1539
|
+
attr_accessor table_size_bytes: ::Integer
|
1540
|
+
attr_accessor item_count: ::Integer
|
1541
|
+
attr_accessor table_arn: ::String
|
1542
|
+
attr_accessor table_id: ::String
|
1543
|
+
attr_accessor billing_mode_summary: Types::BillingModeSummary
|
1544
|
+
attr_accessor local_secondary_indexes: ::Array[Types::LocalSecondaryIndexDescription]
|
1545
|
+
attr_accessor global_secondary_indexes: ::Array[Types::GlobalSecondaryIndexDescription]
|
1546
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
1547
|
+
attr_accessor latest_stream_label: ::String
|
1548
|
+
attr_accessor latest_stream_arn: ::String
|
1549
|
+
attr_accessor global_table_version: ::String
|
1550
|
+
attr_accessor replicas: ::Array[Types::ReplicaDescription]
|
1551
|
+
attr_accessor restore_summary: Types::RestoreSummary
|
1552
|
+
attr_accessor sse_description: Types::SSEDescription
|
1553
|
+
attr_accessor archival_summary: Types::ArchivalSummary
|
1554
|
+
attr_accessor table_class_summary: Types::TableClassSummary
|
1555
|
+
attr_accessor deletion_protection_enabled: bool
|
1556
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1557
|
+
attr_accessor warm_throughput: Types::TableWarmThroughputDescription
|
1558
|
+
attr_accessor multi_region_consistency: ("EVENTUAL" | "STRONG")
|
1559
|
+
SENSITIVE: []
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
class TableInUseException
|
1563
|
+
attr_accessor message: ::String
|
1564
|
+
SENSITIVE: []
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
class TableNotFoundException
|
1568
|
+
attr_accessor message: ::String
|
1569
|
+
SENSITIVE: []
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
class TableWarmThroughputDescription
|
1573
|
+
attr_accessor read_units_per_second: ::Integer
|
1574
|
+
attr_accessor write_units_per_second: ::Integer
|
1575
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1576
|
+
SENSITIVE: []
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
class Tag
|
1580
|
+
attr_accessor key: ::String
|
1581
|
+
attr_accessor value: ::String
|
1582
|
+
SENSITIVE: []
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
class TagResourceInput
|
1586
|
+
attr_accessor resource_arn: ::String
|
1587
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1588
|
+
SENSITIVE: []
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
class TimeToLiveDescription
|
1592
|
+
attr_accessor time_to_live_status: ("ENABLING" | "DISABLING" | "ENABLED" | "DISABLED")
|
1593
|
+
attr_accessor attribute_name: ::String
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class TimeToLiveSpecification
|
1598
|
+
attr_accessor enabled: bool
|
1599
|
+
attr_accessor attribute_name: ::String
|
1600
|
+
SENSITIVE: []
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
class TransactGetItem
|
1604
|
+
attr_accessor get: Types::Get
|
1605
|
+
SENSITIVE: []
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
class TransactGetItemsInput
|
1609
|
+
attr_accessor transact_items: ::Array[Types::TransactGetItem]
|
1610
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1611
|
+
SENSITIVE: []
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
class TransactGetItemsOutput
|
1615
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
1616
|
+
attr_accessor responses: ::Array[Types::ItemResponse]
|
1617
|
+
SENSITIVE: []
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
class TransactWriteItem
|
1621
|
+
attr_accessor condition_check: Types::ConditionCheck
|
1622
|
+
attr_accessor put: Types::Put
|
1623
|
+
attr_accessor delete: Types::Delete
|
1624
|
+
attr_accessor update: Types::Update
|
1625
|
+
SENSITIVE: []
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
class TransactWriteItemsInput
|
1629
|
+
attr_accessor transact_items: ::Array[Types::TransactWriteItem]
|
1630
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1631
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1632
|
+
attr_accessor client_request_token: ::String
|
1633
|
+
SENSITIVE: []
|
1634
|
+
end
|
1635
|
+
|
1636
|
+
class TransactWriteItemsOutput
|
1637
|
+
attr_accessor consumed_capacity: ::Array[Types::ConsumedCapacity]
|
1638
|
+
attr_accessor item_collection_metrics: ::Hash[::String, ::Array[Types::ItemCollectionMetrics]]
|
1639
|
+
SENSITIVE: []
|
1640
|
+
end
|
1641
|
+
|
1642
|
+
class TransactionCanceledException
|
1643
|
+
attr_accessor message: ::String
|
1644
|
+
attr_accessor cancellation_reasons: ::Array[Types::CancellationReason]
|
1645
|
+
SENSITIVE: []
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
class TransactionConflictException
|
1649
|
+
attr_accessor message: ::String
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
class TransactionInProgressException
|
1654
|
+
attr_accessor message: ::String
|
1655
|
+
SENSITIVE: []
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
class UntagResourceInput
|
1659
|
+
attr_accessor resource_arn: ::String
|
1660
|
+
attr_accessor tag_keys: ::Array[::String]
|
1661
|
+
SENSITIVE: []
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
class Update
|
1665
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
1666
|
+
attr_accessor update_expression: ::String
|
1667
|
+
attr_accessor table_name: ::String
|
1668
|
+
attr_accessor condition_expression: ::String
|
1669
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1670
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1671
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1672
|
+
SENSITIVE: []
|
1673
|
+
end
|
1674
|
+
|
1675
|
+
class UpdateContinuousBackupsInput
|
1676
|
+
attr_accessor table_name: ::String
|
1677
|
+
attr_accessor point_in_time_recovery_specification: Types::PointInTimeRecoverySpecification
|
1678
|
+
SENSITIVE: []
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
class UpdateContinuousBackupsOutput
|
1682
|
+
attr_accessor continuous_backups_description: Types::ContinuousBackupsDescription
|
1683
|
+
SENSITIVE: []
|
1684
|
+
end
|
1685
|
+
|
1686
|
+
class UpdateContributorInsightsInput
|
1687
|
+
attr_accessor table_name: ::String
|
1688
|
+
attr_accessor index_name: ::String
|
1689
|
+
attr_accessor contributor_insights_action: ("ENABLE" | "DISABLE")
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class UpdateContributorInsightsOutput
|
1694
|
+
attr_accessor table_name: ::String
|
1695
|
+
attr_accessor index_name: ::String
|
1696
|
+
attr_accessor contributor_insights_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
|
1697
|
+
SENSITIVE: []
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
class UpdateGlobalSecondaryIndexAction
|
1701
|
+
attr_accessor index_name: ::String
|
1702
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1703
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1704
|
+
attr_accessor warm_throughput: Types::WarmThroughput
|
1705
|
+
SENSITIVE: []
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
class UpdateGlobalTableInput
|
1709
|
+
attr_accessor global_table_name: ::String
|
1710
|
+
attr_accessor replica_updates: ::Array[Types::ReplicaUpdate]
|
1711
|
+
SENSITIVE: []
|
1712
|
+
end
|
1713
|
+
|
1714
|
+
class UpdateGlobalTableOutput
|
1715
|
+
attr_accessor global_table_description: Types::GlobalTableDescription
|
1716
|
+
SENSITIVE: []
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
class UpdateGlobalTableSettingsInput
|
1720
|
+
attr_accessor global_table_name: ::String
|
1721
|
+
attr_accessor global_table_billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1722
|
+
attr_accessor global_table_provisioned_write_capacity_units: ::Integer
|
1723
|
+
attr_accessor global_table_provisioned_write_capacity_auto_scaling_settings_update: Types::AutoScalingSettingsUpdate
|
1724
|
+
attr_accessor global_table_global_secondary_index_settings_update: ::Array[Types::GlobalTableGlobalSecondaryIndexSettingsUpdate]
|
1725
|
+
attr_accessor replica_settings_update: ::Array[Types::ReplicaSettingsUpdate]
|
1726
|
+
SENSITIVE: []
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
class UpdateGlobalTableSettingsOutput
|
1730
|
+
attr_accessor global_table_name: ::String
|
1731
|
+
attr_accessor replica_settings: ::Array[Types::ReplicaSettingsDescription]
|
1732
|
+
SENSITIVE: []
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class UpdateItemInput
|
1736
|
+
attr_accessor table_name: ::String
|
1737
|
+
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
1738
|
+
attr_accessor attribute_updates: ::Hash[::String, Types::AttributeValueUpdate]
|
1739
|
+
attr_accessor expected: ::Hash[::String, Types::ExpectedAttributeValue]
|
1740
|
+
attr_accessor conditional_operator: ("AND" | "OR")
|
1741
|
+
attr_accessor return_values: ("NONE" | "ALL_OLD" | "UPDATED_OLD" | "ALL_NEW" | "UPDATED_NEW")
|
1742
|
+
attr_accessor return_consumed_capacity: ("INDEXES" | "TOTAL" | "NONE")
|
1743
|
+
attr_accessor return_item_collection_metrics: ("SIZE" | "NONE")
|
1744
|
+
attr_accessor update_expression: ::String
|
1745
|
+
attr_accessor condition_expression: ::String
|
1746
|
+
attr_accessor expression_attribute_names: ::Hash[::String, ::String]
|
1747
|
+
attr_accessor expression_attribute_values: ::Hash[::String, Types::AttributeValue]
|
1748
|
+
attr_accessor return_values_on_condition_check_failure: ("ALL_OLD" | "NONE")
|
1749
|
+
SENSITIVE: []
|
1750
|
+
end
|
1751
|
+
|
1752
|
+
class UpdateItemOutput
|
1753
|
+
attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
|
1754
|
+
attr_accessor consumed_capacity: Types::ConsumedCapacity
|
1755
|
+
attr_accessor item_collection_metrics: Types::ItemCollectionMetrics
|
1756
|
+
SENSITIVE: []
|
1757
|
+
end
|
1758
|
+
|
1759
|
+
class UpdateKinesisStreamingConfiguration
|
1760
|
+
attr_accessor approximate_creation_date_time_precision: ("MILLISECOND" | "MICROSECOND")
|
1761
|
+
SENSITIVE: []
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
class UpdateKinesisStreamingDestinationInput
|
1765
|
+
attr_accessor table_name: ::String
|
1766
|
+
attr_accessor stream_arn: ::String
|
1767
|
+
attr_accessor update_kinesis_streaming_configuration: Types::UpdateKinesisStreamingConfiguration
|
1768
|
+
SENSITIVE: []
|
1769
|
+
end
|
1770
|
+
|
1771
|
+
class UpdateKinesisStreamingDestinationOutput
|
1772
|
+
attr_accessor table_name: ::String
|
1773
|
+
attr_accessor stream_arn: ::String
|
1774
|
+
attr_accessor destination_status: ("ENABLING" | "ACTIVE" | "DISABLING" | "DISABLED" | "ENABLE_FAILED" | "UPDATING")
|
1775
|
+
attr_accessor update_kinesis_streaming_configuration: Types::UpdateKinesisStreamingConfiguration
|
1776
|
+
SENSITIVE: []
|
1777
|
+
end
|
1778
|
+
|
1779
|
+
class UpdateReplicationGroupMemberAction
|
1780
|
+
attr_accessor region_name: ::String
|
1781
|
+
attr_accessor kms_master_key_id: ::String
|
1782
|
+
attr_accessor provisioned_throughput_override: Types::ProvisionedThroughputOverride
|
1783
|
+
attr_accessor on_demand_throughput_override: Types::OnDemandThroughputOverride
|
1784
|
+
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndex]
|
1785
|
+
attr_accessor table_class_override: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1786
|
+
SENSITIVE: []
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
class UpdateTableInput
|
1790
|
+
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1791
|
+
attr_accessor table_name: ::String
|
1792
|
+
attr_accessor billing_mode: ("PROVISIONED" | "PAY_PER_REQUEST")
|
1793
|
+
attr_accessor provisioned_throughput: Types::ProvisionedThroughput
|
1794
|
+
attr_accessor global_secondary_index_updates: ::Array[Types::GlobalSecondaryIndexUpdate]
|
1795
|
+
attr_accessor stream_specification: Types::StreamSpecification
|
1796
|
+
attr_accessor sse_specification: Types::SSESpecification
|
1797
|
+
attr_accessor replica_updates: ::Array[Types::ReplicationGroupUpdate]
|
1798
|
+
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1799
|
+
attr_accessor deletion_protection_enabled: bool
|
1800
|
+
attr_accessor multi_region_consistency: ("EVENTUAL" | "STRONG")
|
1801
|
+
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1802
|
+
attr_accessor warm_throughput: Types::WarmThroughput
|
1803
|
+
SENSITIVE: []
|
1804
|
+
end
|
1805
|
+
|
1806
|
+
class UpdateTableOutput
|
1807
|
+
attr_accessor table_description: Types::TableDescription
|
1808
|
+
SENSITIVE: []
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class UpdateTableReplicaAutoScalingInput
|
1812
|
+
attr_accessor global_secondary_index_updates: ::Array[Types::GlobalSecondaryIndexAutoScalingUpdate]
|
1813
|
+
attr_accessor table_name: ::String
|
1814
|
+
attr_accessor provisioned_write_capacity_auto_scaling_update: Types::AutoScalingSettingsUpdate
|
1815
|
+
attr_accessor replica_updates: ::Array[Types::ReplicaAutoScalingUpdate]
|
1816
|
+
SENSITIVE: []
|
1817
|
+
end
|
1818
|
+
|
1819
|
+
class UpdateTableReplicaAutoScalingOutput
|
1820
|
+
attr_accessor table_auto_scaling_description: Types::TableAutoScalingDescription
|
1821
|
+
SENSITIVE: []
|
1822
|
+
end
|
1823
|
+
|
1824
|
+
class UpdateTimeToLiveInput
|
1825
|
+
attr_accessor table_name: ::String
|
1826
|
+
attr_accessor time_to_live_specification: Types::TimeToLiveSpecification
|
1827
|
+
SENSITIVE: []
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
class UpdateTimeToLiveOutput
|
1831
|
+
attr_accessor time_to_live_specification: Types::TimeToLiveSpecification
|
1832
|
+
SENSITIVE: []
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
class WarmThroughput
|
1836
|
+
attr_accessor read_units_per_second: ::Integer
|
1837
|
+
attr_accessor write_units_per_second: ::Integer
|
1838
|
+
SENSITIVE: []
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
class WriteRequest
|
1842
|
+
attr_accessor put_request: Types::PutRequest
|
1843
|
+
attr_accessor delete_request: Types::DeleteRequest
|
1844
|
+
SENSITIVE: []
|
1845
|
+
end
|
1846
|
+
end
|
1847
|
+
end
|