aws-sdk-backup 1.64.0 → 1.65.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +1 -1
- data/lib/aws-sdk-backup/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +1525 -0
- data/sig/errors.rbs +78 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1809 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1809 @@
|
|
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::Backup
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AdvancedBackupSetting
|
12
|
+
attr_accessor resource_type: ::String
|
13
|
+
attr_accessor backup_options: ::Hash[::String, ::String]
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AlreadyExistsException
|
18
|
+
attr_accessor code: ::String
|
19
|
+
attr_accessor message: ::String
|
20
|
+
attr_accessor creator_request_id: ::String
|
21
|
+
attr_accessor arn: ::String
|
22
|
+
attr_accessor type: ::String
|
23
|
+
attr_accessor context: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class BackupJob
|
28
|
+
attr_accessor account_id: ::String
|
29
|
+
attr_accessor backup_job_id: ::String
|
30
|
+
attr_accessor backup_vault_name: ::String
|
31
|
+
attr_accessor backup_vault_arn: ::String
|
32
|
+
attr_accessor recovery_point_arn: ::String
|
33
|
+
attr_accessor resource_arn: ::String
|
34
|
+
attr_accessor creation_date: ::Time
|
35
|
+
attr_accessor completion_date: ::Time
|
36
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL")
|
37
|
+
attr_accessor status_message: ::String
|
38
|
+
attr_accessor percent_done: ::String
|
39
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
40
|
+
attr_accessor iam_role_arn: ::String
|
41
|
+
attr_accessor created_by: Types::RecoveryPointCreator
|
42
|
+
attr_accessor expected_completion_date: ::Time
|
43
|
+
attr_accessor start_by: ::Time
|
44
|
+
attr_accessor resource_type: ::String
|
45
|
+
attr_accessor bytes_transferred: ::Integer
|
46
|
+
attr_accessor backup_options: ::Hash[::String, ::String]
|
47
|
+
attr_accessor backup_type: ::String
|
48
|
+
attr_accessor parent_job_id: ::String
|
49
|
+
attr_accessor is_parent: bool
|
50
|
+
attr_accessor resource_name: ::String
|
51
|
+
attr_accessor initiation_date: ::Time
|
52
|
+
attr_accessor message_category: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class BackupJobSummary
|
57
|
+
attr_accessor region: ::String
|
58
|
+
attr_accessor account_id: ::String
|
59
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY")
|
60
|
+
attr_accessor resource_type: ::String
|
61
|
+
attr_accessor message_category: ::String
|
62
|
+
attr_accessor count: ::Integer
|
63
|
+
attr_accessor start_time: ::Time
|
64
|
+
attr_accessor end_time: ::Time
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class BackupPlan
|
69
|
+
attr_accessor backup_plan_name: ::String
|
70
|
+
attr_accessor rules: ::Array[Types::BackupRule]
|
71
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class BackupPlanInput
|
76
|
+
attr_accessor backup_plan_name: ::String
|
77
|
+
attr_accessor rules: ::Array[Types::BackupRuleInput]
|
78
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class BackupPlanTemplatesListMember
|
83
|
+
attr_accessor backup_plan_template_id: ::String
|
84
|
+
attr_accessor backup_plan_template_name: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class BackupPlansListMember
|
89
|
+
attr_accessor backup_plan_arn: ::String
|
90
|
+
attr_accessor backup_plan_id: ::String
|
91
|
+
attr_accessor creation_date: ::Time
|
92
|
+
attr_accessor deletion_date: ::Time
|
93
|
+
attr_accessor version_id: ::String
|
94
|
+
attr_accessor backup_plan_name: ::String
|
95
|
+
attr_accessor creator_request_id: ::String
|
96
|
+
attr_accessor last_execution_date: ::Time
|
97
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class BackupRule
|
102
|
+
attr_accessor rule_name: ::String
|
103
|
+
attr_accessor target_backup_vault_name: ::String
|
104
|
+
attr_accessor schedule_expression: ::String
|
105
|
+
attr_accessor start_window_minutes: ::Integer
|
106
|
+
attr_accessor completion_window_minutes: ::Integer
|
107
|
+
attr_accessor lifecycle: Types::Lifecycle
|
108
|
+
attr_accessor recovery_point_tags: ::Hash[::String, ::String]
|
109
|
+
attr_accessor rule_id: ::String
|
110
|
+
attr_accessor copy_actions: ::Array[Types::CopyAction]
|
111
|
+
attr_accessor enable_continuous_backup: bool
|
112
|
+
attr_accessor schedule_expression_timezone: ::String
|
113
|
+
SENSITIVE: [:recovery_point_tags]
|
114
|
+
end
|
115
|
+
|
116
|
+
class BackupRuleInput
|
117
|
+
attr_accessor rule_name: ::String
|
118
|
+
attr_accessor target_backup_vault_name: ::String
|
119
|
+
attr_accessor schedule_expression: ::String
|
120
|
+
attr_accessor start_window_minutes: ::Integer
|
121
|
+
attr_accessor completion_window_minutes: ::Integer
|
122
|
+
attr_accessor lifecycle: Types::Lifecycle
|
123
|
+
attr_accessor recovery_point_tags: ::Hash[::String, ::String]
|
124
|
+
attr_accessor copy_actions: ::Array[Types::CopyAction]
|
125
|
+
attr_accessor enable_continuous_backup: bool
|
126
|
+
attr_accessor schedule_expression_timezone: ::String
|
127
|
+
SENSITIVE: [:recovery_point_tags]
|
128
|
+
end
|
129
|
+
|
130
|
+
class BackupSelection
|
131
|
+
attr_accessor selection_name: ::String
|
132
|
+
attr_accessor iam_role_arn: ::String
|
133
|
+
attr_accessor resources: ::Array[::String]
|
134
|
+
attr_accessor list_of_tags: ::Array[Types::Condition]
|
135
|
+
attr_accessor not_resources: ::Array[::String]
|
136
|
+
attr_accessor conditions: Types::Conditions
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class BackupSelectionsListMember
|
141
|
+
attr_accessor selection_id: ::String
|
142
|
+
attr_accessor selection_name: ::String
|
143
|
+
attr_accessor backup_plan_id: ::String
|
144
|
+
attr_accessor creation_date: ::Time
|
145
|
+
attr_accessor creator_request_id: ::String
|
146
|
+
attr_accessor iam_role_arn: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class BackupVaultListMember
|
151
|
+
attr_accessor backup_vault_name: ::String
|
152
|
+
attr_accessor backup_vault_arn: ::String
|
153
|
+
attr_accessor creation_date: ::Time
|
154
|
+
attr_accessor encryption_key_arn: ::String
|
155
|
+
attr_accessor creator_request_id: ::String
|
156
|
+
attr_accessor number_of_recovery_points: ::Integer
|
157
|
+
attr_accessor locked: bool
|
158
|
+
attr_accessor min_retention_days: ::Integer
|
159
|
+
attr_accessor max_retention_days: ::Integer
|
160
|
+
attr_accessor lock_date: ::Time
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CalculatedLifecycle
|
165
|
+
attr_accessor move_to_cold_storage_at: ::Time
|
166
|
+
attr_accessor delete_at: ::Time
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CancelLegalHoldInput
|
171
|
+
attr_accessor legal_hold_id: ::String
|
172
|
+
attr_accessor cancel_description: ::String
|
173
|
+
attr_accessor retain_record_in_days: ::Integer
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CancelLegalHoldOutput < Aws::EmptyStructure
|
178
|
+
end
|
179
|
+
|
180
|
+
class Condition
|
181
|
+
attr_accessor condition_type: ("STRINGEQUALS")
|
182
|
+
attr_accessor condition_key: ::String
|
183
|
+
attr_accessor condition_value: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ConditionParameter
|
188
|
+
attr_accessor condition_key: ::String
|
189
|
+
attr_accessor condition_value: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class Conditions
|
194
|
+
attr_accessor string_equals: ::Array[Types::ConditionParameter]
|
195
|
+
attr_accessor string_not_equals: ::Array[Types::ConditionParameter]
|
196
|
+
attr_accessor string_like: ::Array[Types::ConditionParameter]
|
197
|
+
attr_accessor string_not_like: ::Array[Types::ConditionParameter]
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class ConflictException
|
202
|
+
attr_accessor code: ::String
|
203
|
+
attr_accessor message: ::String
|
204
|
+
attr_accessor type: ::String
|
205
|
+
attr_accessor context: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class ControlInputParameter
|
210
|
+
attr_accessor parameter_name: ::String
|
211
|
+
attr_accessor parameter_value: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class ControlScope
|
216
|
+
attr_accessor compliance_resource_ids: ::Array[::String]
|
217
|
+
attr_accessor compliance_resource_types: ::Array[::String]
|
218
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CopyAction
|
223
|
+
attr_accessor lifecycle: Types::Lifecycle
|
224
|
+
attr_accessor destination_backup_vault_arn: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class CopyJob
|
229
|
+
attr_accessor account_id: ::String
|
230
|
+
attr_accessor copy_job_id: ::String
|
231
|
+
attr_accessor source_backup_vault_arn: ::String
|
232
|
+
attr_accessor source_recovery_point_arn: ::String
|
233
|
+
attr_accessor destination_backup_vault_arn: ::String
|
234
|
+
attr_accessor destination_recovery_point_arn: ::String
|
235
|
+
attr_accessor resource_arn: ::String
|
236
|
+
attr_accessor creation_date: ::Time
|
237
|
+
attr_accessor completion_date: ::Time
|
238
|
+
attr_accessor state: ("CREATED" | "RUNNING" | "COMPLETED" | "FAILED" | "PARTIAL")
|
239
|
+
attr_accessor status_message: ::String
|
240
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
241
|
+
attr_accessor iam_role_arn: ::String
|
242
|
+
attr_accessor created_by: Types::RecoveryPointCreator
|
243
|
+
attr_accessor resource_type: ::String
|
244
|
+
attr_accessor parent_job_id: ::String
|
245
|
+
attr_accessor is_parent: bool
|
246
|
+
attr_accessor composite_member_identifier: ::String
|
247
|
+
attr_accessor number_of_child_jobs: ::Integer
|
248
|
+
attr_accessor child_jobs_in_state: ::Hash[("CREATED" | "RUNNING" | "COMPLETED" | "FAILED" | "PARTIAL"), ::Integer]
|
249
|
+
attr_accessor resource_name: ::String
|
250
|
+
attr_accessor message_category: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class CopyJobSummary
|
255
|
+
attr_accessor region: ::String
|
256
|
+
attr_accessor account_id: ::String
|
257
|
+
attr_accessor state: ("CREATED" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETING" | "COMPLETED" | "FAILING" | "FAILED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY")
|
258
|
+
attr_accessor resource_type: ::String
|
259
|
+
attr_accessor message_category: ::String
|
260
|
+
attr_accessor count: ::Integer
|
261
|
+
attr_accessor start_time: ::Time
|
262
|
+
attr_accessor end_time: ::Time
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class CreateBackupPlanInput
|
267
|
+
attr_accessor backup_plan: Types::BackupPlanInput
|
268
|
+
attr_accessor backup_plan_tags: ::Hash[::String, ::String]
|
269
|
+
attr_accessor creator_request_id: ::String
|
270
|
+
SENSITIVE: [:backup_plan_tags]
|
271
|
+
end
|
272
|
+
|
273
|
+
class CreateBackupPlanOutput
|
274
|
+
attr_accessor backup_plan_id: ::String
|
275
|
+
attr_accessor backup_plan_arn: ::String
|
276
|
+
attr_accessor creation_date: ::Time
|
277
|
+
attr_accessor version_id: ::String
|
278
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class CreateBackupSelectionInput
|
283
|
+
attr_accessor backup_plan_id: ::String
|
284
|
+
attr_accessor backup_selection: Types::BackupSelection
|
285
|
+
attr_accessor creator_request_id: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class CreateBackupSelectionOutput
|
290
|
+
attr_accessor selection_id: ::String
|
291
|
+
attr_accessor backup_plan_id: ::String
|
292
|
+
attr_accessor creation_date: ::Time
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class CreateBackupVaultInput
|
297
|
+
attr_accessor backup_vault_name: ::String
|
298
|
+
attr_accessor backup_vault_tags: ::Hash[::String, ::String]
|
299
|
+
attr_accessor encryption_key_arn: ::String
|
300
|
+
attr_accessor creator_request_id: ::String
|
301
|
+
SENSITIVE: [:backup_vault_tags]
|
302
|
+
end
|
303
|
+
|
304
|
+
class CreateBackupVaultOutput
|
305
|
+
attr_accessor backup_vault_name: ::String
|
306
|
+
attr_accessor backup_vault_arn: ::String
|
307
|
+
attr_accessor creation_date: ::Time
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class CreateFrameworkInput
|
312
|
+
attr_accessor framework_name: ::String
|
313
|
+
attr_accessor framework_description: ::String
|
314
|
+
attr_accessor framework_controls: ::Array[Types::FrameworkControl]
|
315
|
+
attr_accessor idempotency_token: ::String
|
316
|
+
attr_accessor framework_tags: ::Hash[::String, ::String]
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class CreateFrameworkOutput
|
321
|
+
attr_accessor framework_name: ::String
|
322
|
+
attr_accessor framework_arn: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class CreateLegalHoldInput
|
327
|
+
attr_accessor title: ::String
|
328
|
+
attr_accessor description: ::String
|
329
|
+
attr_accessor idempotency_token: ::String
|
330
|
+
attr_accessor recovery_point_selection: Types::RecoveryPointSelection
|
331
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
332
|
+
SENSITIVE: [:tags]
|
333
|
+
end
|
334
|
+
|
335
|
+
class CreateLegalHoldOutput
|
336
|
+
attr_accessor title: ::String
|
337
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CANCELING" | "CANCELED")
|
338
|
+
attr_accessor description: ::String
|
339
|
+
attr_accessor legal_hold_id: ::String
|
340
|
+
attr_accessor legal_hold_arn: ::String
|
341
|
+
attr_accessor creation_date: ::Time
|
342
|
+
attr_accessor recovery_point_selection: Types::RecoveryPointSelection
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class CreateLogicallyAirGappedBackupVaultInput
|
347
|
+
attr_accessor backup_vault_name: ::String
|
348
|
+
attr_accessor backup_vault_tags: ::Hash[::String, ::String]
|
349
|
+
attr_accessor creator_request_id: ::String
|
350
|
+
attr_accessor min_retention_days: ::Integer
|
351
|
+
attr_accessor max_retention_days: ::Integer
|
352
|
+
SENSITIVE: [:backup_vault_tags]
|
353
|
+
end
|
354
|
+
|
355
|
+
class CreateLogicallyAirGappedBackupVaultOutput
|
356
|
+
attr_accessor backup_vault_name: ::String
|
357
|
+
attr_accessor backup_vault_arn: ::String
|
358
|
+
attr_accessor creation_date: ::Time
|
359
|
+
attr_accessor vault_state: ("CREATING" | "AVAILABLE" | "FAILED")
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class CreateReportPlanInput
|
364
|
+
attr_accessor report_plan_name: ::String
|
365
|
+
attr_accessor report_plan_description: ::String
|
366
|
+
attr_accessor report_delivery_channel: Types::ReportDeliveryChannel
|
367
|
+
attr_accessor report_setting: Types::ReportSetting
|
368
|
+
attr_accessor report_plan_tags: ::Hash[::String, ::String]
|
369
|
+
attr_accessor idempotency_token: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class CreateReportPlanOutput
|
374
|
+
attr_accessor report_plan_name: ::String
|
375
|
+
attr_accessor report_plan_arn: ::String
|
376
|
+
attr_accessor creation_time: ::Time
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class CreateRestoreTestingPlanInput
|
381
|
+
attr_accessor creator_request_id: ::String
|
382
|
+
attr_accessor restore_testing_plan: Types::RestoreTestingPlanForCreate
|
383
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
384
|
+
SENSITIVE: [:tags]
|
385
|
+
end
|
386
|
+
|
387
|
+
class CreateRestoreTestingPlanOutput
|
388
|
+
attr_accessor creation_time: ::Time
|
389
|
+
attr_accessor restore_testing_plan_arn: ::String
|
390
|
+
attr_accessor restore_testing_plan_name: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class CreateRestoreTestingSelectionInput
|
395
|
+
attr_accessor creator_request_id: ::String
|
396
|
+
attr_accessor restore_testing_plan_name: ::String
|
397
|
+
attr_accessor restore_testing_selection: Types::RestoreTestingSelectionForCreate
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class CreateRestoreTestingSelectionOutput
|
402
|
+
attr_accessor creation_time: ::Time
|
403
|
+
attr_accessor restore_testing_plan_arn: ::String
|
404
|
+
attr_accessor restore_testing_plan_name: ::String
|
405
|
+
attr_accessor restore_testing_selection_name: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class DateRange
|
410
|
+
attr_accessor from_date: ::Time
|
411
|
+
attr_accessor to_date: ::Time
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class DeleteBackupPlanInput
|
416
|
+
attr_accessor backup_plan_id: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class DeleteBackupPlanOutput
|
421
|
+
attr_accessor backup_plan_id: ::String
|
422
|
+
attr_accessor backup_plan_arn: ::String
|
423
|
+
attr_accessor deletion_date: ::Time
|
424
|
+
attr_accessor version_id: ::String
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class DeleteBackupSelectionInput
|
429
|
+
attr_accessor backup_plan_id: ::String
|
430
|
+
attr_accessor selection_id: ::String
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class DeleteBackupVaultAccessPolicyInput
|
435
|
+
attr_accessor backup_vault_name: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class DeleteBackupVaultInput
|
440
|
+
attr_accessor backup_vault_name: ::String
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class DeleteBackupVaultLockConfigurationInput
|
445
|
+
attr_accessor backup_vault_name: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class DeleteBackupVaultNotificationsInput
|
450
|
+
attr_accessor backup_vault_name: ::String
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class DeleteFrameworkInput
|
455
|
+
attr_accessor framework_name: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class DeleteRecoveryPointInput
|
460
|
+
attr_accessor backup_vault_name: ::String
|
461
|
+
attr_accessor recovery_point_arn: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class DeleteReportPlanInput
|
466
|
+
attr_accessor report_plan_name: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class DeleteRestoreTestingPlanInput
|
471
|
+
attr_accessor restore_testing_plan_name: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class DeleteRestoreTestingSelectionInput
|
476
|
+
attr_accessor restore_testing_plan_name: ::String
|
477
|
+
attr_accessor restore_testing_selection_name: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class DependencyFailureException
|
482
|
+
attr_accessor code: ::String
|
483
|
+
attr_accessor message: ::String
|
484
|
+
attr_accessor type: ::String
|
485
|
+
attr_accessor context: ::String
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class DescribeBackupJobInput
|
490
|
+
attr_accessor backup_job_id: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class DescribeBackupJobOutput
|
495
|
+
attr_accessor account_id: ::String
|
496
|
+
attr_accessor backup_job_id: ::String
|
497
|
+
attr_accessor backup_vault_name: ::String
|
498
|
+
attr_accessor backup_vault_arn: ::String
|
499
|
+
attr_accessor recovery_point_arn: ::String
|
500
|
+
attr_accessor resource_arn: ::String
|
501
|
+
attr_accessor creation_date: ::Time
|
502
|
+
attr_accessor completion_date: ::Time
|
503
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL")
|
504
|
+
attr_accessor status_message: ::String
|
505
|
+
attr_accessor percent_done: ::String
|
506
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
507
|
+
attr_accessor iam_role_arn: ::String
|
508
|
+
attr_accessor created_by: Types::RecoveryPointCreator
|
509
|
+
attr_accessor resource_type: ::String
|
510
|
+
attr_accessor bytes_transferred: ::Integer
|
511
|
+
attr_accessor expected_completion_date: ::Time
|
512
|
+
attr_accessor start_by: ::Time
|
513
|
+
attr_accessor backup_options: ::Hash[::String, ::String]
|
514
|
+
attr_accessor backup_type: ::String
|
515
|
+
attr_accessor parent_job_id: ::String
|
516
|
+
attr_accessor is_parent: bool
|
517
|
+
attr_accessor number_of_child_jobs: ::Integer
|
518
|
+
attr_accessor child_jobs_in_state: ::Hash[("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL"), ::Integer]
|
519
|
+
attr_accessor resource_name: ::String
|
520
|
+
attr_accessor initiation_date: ::Time
|
521
|
+
attr_accessor message_category: ::String
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class DescribeBackupVaultInput
|
526
|
+
attr_accessor backup_vault_name: ::String
|
527
|
+
attr_accessor backup_vault_account_id: ::String
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class DescribeBackupVaultOutput
|
532
|
+
attr_accessor backup_vault_name: ::String
|
533
|
+
attr_accessor backup_vault_arn: ::String
|
534
|
+
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
535
|
+
attr_accessor encryption_key_arn: ::String
|
536
|
+
attr_accessor creation_date: ::Time
|
537
|
+
attr_accessor creator_request_id: ::String
|
538
|
+
attr_accessor number_of_recovery_points: ::Integer
|
539
|
+
attr_accessor locked: bool
|
540
|
+
attr_accessor min_retention_days: ::Integer
|
541
|
+
attr_accessor max_retention_days: ::Integer
|
542
|
+
attr_accessor lock_date: ::Time
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DescribeCopyJobInput
|
547
|
+
attr_accessor copy_job_id: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class DescribeCopyJobOutput
|
552
|
+
attr_accessor copy_job: Types::CopyJob
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class DescribeFrameworkInput
|
557
|
+
attr_accessor framework_name: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class DescribeFrameworkOutput
|
562
|
+
attr_accessor framework_name: ::String
|
563
|
+
attr_accessor framework_arn: ::String
|
564
|
+
attr_accessor framework_description: ::String
|
565
|
+
attr_accessor framework_controls: ::Array[Types::FrameworkControl]
|
566
|
+
attr_accessor creation_time: ::Time
|
567
|
+
attr_accessor deployment_status: ::String
|
568
|
+
attr_accessor framework_status: ::String
|
569
|
+
attr_accessor idempotency_token: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class DescribeGlobalSettingsInput < Aws::EmptyStructure
|
574
|
+
end
|
575
|
+
|
576
|
+
class DescribeGlobalSettingsOutput
|
577
|
+
attr_accessor global_settings: ::Hash[::String, ::String]
|
578
|
+
attr_accessor last_update_time: ::Time
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DescribeProtectedResourceInput
|
583
|
+
attr_accessor resource_arn: ::String
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class DescribeProtectedResourceOutput
|
588
|
+
attr_accessor resource_arn: ::String
|
589
|
+
attr_accessor resource_type: ::String
|
590
|
+
attr_accessor last_backup_time: ::Time
|
591
|
+
attr_accessor resource_name: ::String
|
592
|
+
attr_accessor last_backup_vault_arn: ::String
|
593
|
+
attr_accessor last_recovery_point_arn: ::String
|
594
|
+
attr_accessor latest_restore_execution_time_minutes: ::Integer
|
595
|
+
attr_accessor latest_restore_job_creation_date: ::Time
|
596
|
+
attr_accessor latest_restore_recovery_point_creation_date: ::Time
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class DescribeRecoveryPointInput
|
601
|
+
attr_accessor backup_vault_name: ::String
|
602
|
+
attr_accessor recovery_point_arn: ::String
|
603
|
+
attr_accessor backup_vault_account_id: ::String
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class DescribeRecoveryPointOutput
|
608
|
+
attr_accessor recovery_point_arn: ::String
|
609
|
+
attr_accessor backup_vault_name: ::String
|
610
|
+
attr_accessor backup_vault_arn: ::String
|
611
|
+
attr_accessor source_backup_vault_arn: ::String
|
612
|
+
attr_accessor resource_arn: ::String
|
613
|
+
attr_accessor resource_type: ::String
|
614
|
+
attr_accessor created_by: Types::RecoveryPointCreator
|
615
|
+
attr_accessor iam_role_arn: ::String
|
616
|
+
attr_accessor status: ("COMPLETED" | "PARTIAL" | "DELETING" | "EXPIRED")
|
617
|
+
attr_accessor status_message: ::String
|
618
|
+
attr_accessor creation_date: ::Time
|
619
|
+
attr_accessor completion_date: ::Time
|
620
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
621
|
+
attr_accessor calculated_lifecycle: Types::CalculatedLifecycle
|
622
|
+
attr_accessor lifecycle: Types::Lifecycle
|
623
|
+
attr_accessor encryption_key_arn: ::String
|
624
|
+
attr_accessor is_encrypted: bool
|
625
|
+
attr_accessor storage_class: ("WARM" | "COLD" | "DELETED")
|
626
|
+
attr_accessor last_restore_time: ::Time
|
627
|
+
attr_accessor parent_recovery_point_arn: ::String
|
628
|
+
attr_accessor composite_member_identifier: ::String
|
629
|
+
attr_accessor is_parent: bool
|
630
|
+
attr_accessor resource_name: ::String
|
631
|
+
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class DescribeRegionSettingsInput < Aws::EmptyStructure
|
636
|
+
end
|
637
|
+
|
638
|
+
class DescribeRegionSettingsOutput
|
639
|
+
attr_accessor resource_type_opt_in_preference: ::Hash[::String, bool]
|
640
|
+
attr_accessor resource_type_management_preference: ::Hash[::String, bool]
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class DescribeReportJobInput
|
645
|
+
attr_accessor report_job_id: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class DescribeReportJobOutput
|
650
|
+
attr_accessor report_job: Types::ReportJob
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class DescribeReportPlanInput
|
655
|
+
attr_accessor report_plan_name: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class DescribeReportPlanOutput
|
660
|
+
attr_accessor report_plan: Types::ReportPlan
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class DescribeRestoreJobInput
|
665
|
+
attr_accessor restore_job_id: ::String
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class DescribeRestoreJobOutput
|
670
|
+
attr_accessor account_id: ::String
|
671
|
+
attr_accessor restore_job_id: ::String
|
672
|
+
attr_accessor recovery_point_arn: ::String
|
673
|
+
attr_accessor creation_date: ::Time
|
674
|
+
attr_accessor completion_date: ::Time
|
675
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
676
|
+
attr_accessor status_message: ::String
|
677
|
+
attr_accessor percent_done: ::String
|
678
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
679
|
+
attr_accessor iam_role_arn: ::String
|
680
|
+
attr_accessor expected_completion_time_minutes: ::Integer
|
681
|
+
attr_accessor created_resource_arn: ::String
|
682
|
+
attr_accessor resource_type: ::String
|
683
|
+
attr_accessor recovery_point_creation_date: ::Time
|
684
|
+
attr_accessor created_by: Types::RestoreJobCreator
|
685
|
+
attr_accessor validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
|
686
|
+
attr_accessor validation_status_message: ::String
|
687
|
+
attr_accessor deletion_status: ("DELETING" | "FAILED" | "SUCCESSFUL")
|
688
|
+
attr_accessor deletion_status_message: ::String
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class DisassociateRecoveryPointFromParentInput
|
693
|
+
attr_accessor backup_vault_name: ::String
|
694
|
+
attr_accessor recovery_point_arn: ::String
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class DisassociateRecoveryPointInput
|
699
|
+
attr_accessor backup_vault_name: ::String
|
700
|
+
attr_accessor recovery_point_arn: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class ExportBackupPlanTemplateInput
|
705
|
+
attr_accessor backup_plan_id: ::String
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class ExportBackupPlanTemplateOutput
|
710
|
+
attr_accessor backup_plan_template_json: ::String
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class Framework
|
715
|
+
attr_accessor framework_name: ::String
|
716
|
+
attr_accessor framework_arn: ::String
|
717
|
+
attr_accessor framework_description: ::String
|
718
|
+
attr_accessor number_of_controls: ::Integer
|
719
|
+
attr_accessor creation_time: ::Time
|
720
|
+
attr_accessor deployment_status: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class FrameworkControl
|
725
|
+
attr_accessor control_name: ::String
|
726
|
+
attr_accessor control_input_parameters: ::Array[Types::ControlInputParameter]
|
727
|
+
attr_accessor control_scope: Types::ControlScope
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class GetBackupPlanFromJSONInput
|
732
|
+
attr_accessor backup_plan_template_json: ::String
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class GetBackupPlanFromJSONOutput
|
737
|
+
attr_accessor backup_plan: Types::BackupPlan
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GetBackupPlanFromTemplateInput
|
742
|
+
attr_accessor backup_plan_template_id: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class GetBackupPlanFromTemplateOutput
|
747
|
+
attr_accessor backup_plan_document: Types::BackupPlan
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class GetBackupPlanInput
|
752
|
+
attr_accessor backup_plan_id: ::String
|
753
|
+
attr_accessor version_id: ::String
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class GetBackupPlanOutput
|
758
|
+
attr_accessor backup_plan: Types::BackupPlan
|
759
|
+
attr_accessor backup_plan_id: ::String
|
760
|
+
attr_accessor backup_plan_arn: ::String
|
761
|
+
attr_accessor version_id: ::String
|
762
|
+
attr_accessor creator_request_id: ::String
|
763
|
+
attr_accessor creation_date: ::Time
|
764
|
+
attr_accessor deletion_date: ::Time
|
765
|
+
attr_accessor last_execution_date: ::Time
|
766
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class GetBackupSelectionInput
|
771
|
+
attr_accessor backup_plan_id: ::String
|
772
|
+
attr_accessor selection_id: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class GetBackupSelectionOutput
|
777
|
+
attr_accessor backup_selection: Types::BackupSelection
|
778
|
+
attr_accessor selection_id: ::String
|
779
|
+
attr_accessor backup_plan_id: ::String
|
780
|
+
attr_accessor creation_date: ::Time
|
781
|
+
attr_accessor creator_request_id: ::String
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class GetBackupVaultAccessPolicyInput
|
786
|
+
attr_accessor backup_vault_name: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class GetBackupVaultAccessPolicyOutput
|
791
|
+
attr_accessor backup_vault_name: ::String
|
792
|
+
attr_accessor backup_vault_arn: ::String
|
793
|
+
attr_accessor policy: ::String
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class GetBackupVaultNotificationsInput
|
798
|
+
attr_accessor backup_vault_name: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class GetBackupVaultNotificationsOutput
|
803
|
+
attr_accessor backup_vault_name: ::String
|
804
|
+
attr_accessor backup_vault_arn: ::String
|
805
|
+
attr_accessor sns_topic_arn: ::String
|
806
|
+
attr_accessor backup_vault_events: ::Array[("BACKUP_JOB_STARTED" | "BACKUP_JOB_COMPLETED" | "BACKUP_JOB_SUCCESSFUL" | "BACKUP_JOB_FAILED" | "BACKUP_JOB_EXPIRED" | "RESTORE_JOB_STARTED" | "RESTORE_JOB_COMPLETED" | "RESTORE_JOB_SUCCESSFUL" | "RESTORE_JOB_FAILED" | "COPY_JOB_STARTED" | "COPY_JOB_SUCCESSFUL" | "COPY_JOB_FAILED" | "RECOVERY_POINT_MODIFIED" | "BACKUP_PLAN_CREATED" | "BACKUP_PLAN_MODIFIED" | "S3_BACKUP_OBJECT_FAILED" | "S3_RESTORE_OBJECT_FAILED")]
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class GetLegalHoldInput
|
811
|
+
attr_accessor legal_hold_id: ::String
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class GetLegalHoldOutput
|
816
|
+
attr_accessor title: ::String
|
817
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CANCELING" | "CANCELED")
|
818
|
+
attr_accessor description: ::String
|
819
|
+
attr_accessor cancel_description: ::String
|
820
|
+
attr_accessor legal_hold_id: ::String
|
821
|
+
attr_accessor legal_hold_arn: ::String
|
822
|
+
attr_accessor creation_date: ::Time
|
823
|
+
attr_accessor cancellation_date: ::Time
|
824
|
+
attr_accessor retain_record_until: ::Time
|
825
|
+
attr_accessor recovery_point_selection: Types::RecoveryPointSelection
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class GetRecoveryPointRestoreMetadataInput
|
830
|
+
attr_accessor backup_vault_name: ::String
|
831
|
+
attr_accessor recovery_point_arn: ::String
|
832
|
+
attr_accessor backup_vault_account_id: ::String
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class GetRecoveryPointRestoreMetadataOutput
|
837
|
+
attr_accessor backup_vault_arn: ::String
|
838
|
+
attr_accessor recovery_point_arn: ::String
|
839
|
+
attr_accessor restore_metadata: ::Hash[::String, ::String]
|
840
|
+
attr_accessor resource_type: ::String
|
841
|
+
SENSITIVE: [:restore_metadata]
|
842
|
+
end
|
843
|
+
|
844
|
+
class GetRestoreJobMetadataInput
|
845
|
+
attr_accessor restore_job_id: ::String
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class GetRestoreJobMetadataOutput
|
850
|
+
attr_accessor restore_job_id: ::String
|
851
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
852
|
+
SENSITIVE: [:metadata]
|
853
|
+
end
|
854
|
+
|
855
|
+
class GetRestoreTestingInferredMetadataInput
|
856
|
+
attr_accessor backup_vault_account_id: ::String
|
857
|
+
attr_accessor backup_vault_name: ::String
|
858
|
+
attr_accessor recovery_point_arn: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class GetRestoreTestingInferredMetadataOutput
|
863
|
+
attr_accessor inferred_metadata: ::Hash[::String, ::String]
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class GetRestoreTestingPlanInput
|
868
|
+
attr_accessor restore_testing_plan_name: ::String
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class GetRestoreTestingPlanOutput
|
873
|
+
attr_accessor restore_testing_plan: Types::RestoreTestingPlanForGet
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class GetRestoreTestingSelectionInput
|
878
|
+
attr_accessor restore_testing_plan_name: ::String
|
879
|
+
attr_accessor restore_testing_selection_name: ::String
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class GetRestoreTestingSelectionOutput
|
884
|
+
attr_accessor restore_testing_selection: Types::RestoreTestingSelectionForGet
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class GetSupportedResourceTypesOutput
|
889
|
+
attr_accessor resource_types: ::Array[::String]
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class InvalidParameterValueException
|
894
|
+
attr_accessor code: ::String
|
895
|
+
attr_accessor message: ::String
|
896
|
+
attr_accessor type: ::String
|
897
|
+
attr_accessor context: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class InvalidRequestException
|
902
|
+
attr_accessor code: ::String
|
903
|
+
attr_accessor message: ::String
|
904
|
+
attr_accessor type: ::String
|
905
|
+
attr_accessor context: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class InvalidResourceStateException
|
910
|
+
attr_accessor code: ::String
|
911
|
+
attr_accessor message: ::String
|
912
|
+
attr_accessor type: ::String
|
913
|
+
attr_accessor context: ::String
|
914
|
+
SENSITIVE: []
|
915
|
+
end
|
916
|
+
|
917
|
+
class KeyValue
|
918
|
+
attr_accessor key: ::String
|
919
|
+
attr_accessor value: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class LegalHold
|
924
|
+
attr_accessor title: ::String
|
925
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CANCELING" | "CANCELED")
|
926
|
+
attr_accessor description: ::String
|
927
|
+
attr_accessor legal_hold_id: ::String
|
928
|
+
attr_accessor legal_hold_arn: ::String
|
929
|
+
attr_accessor creation_date: ::Time
|
930
|
+
attr_accessor cancellation_date: ::Time
|
931
|
+
SENSITIVE: []
|
932
|
+
end
|
933
|
+
|
934
|
+
class Lifecycle
|
935
|
+
attr_accessor move_to_cold_storage_after_days: ::Integer
|
936
|
+
attr_accessor delete_after_days: ::Integer
|
937
|
+
attr_accessor opt_in_to_archive_for_supported_resources: bool
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class LimitExceededException
|
942
|
+
attr_accessor code: ::String
|
943
|
+
attr_accessor message: ::String
|
944
|
+
attr_accessor type: ::String
|
945
|
+
attr_accessor context: ::String
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class ListBackupJobSummariesInput
|
950
|
+
attr_accessor account_id: ::String
|
951
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY")
|
952
|
+
attr_accessor resource_type: ::String
|
953
|
+
attr_accessor message_category: ::String
|
954
|
+
attr_accessor aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS")
|
955
|
+
attr_accessor max_results: ::Integer
|
956
|
+
attr_accessor next_token: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class ListBackupJobSummariesOutput
|
961
|
+
attr_accessor backup_job_summaries: ::Array[Types::BackupJobSummary]
|
962
|
+
attr_accessor aggregation_period: ::String
|
963
|
+
attr_accessor next_token: ::String
|
964
|
+
SENSITIVE: []
|
965
|
+
end
|
966
|
+
|
967
|
+
class ListBackupJobsInput
|
968
|
+
attr_accessor next_token: ::String
|
969
|
+
attr_accessor max_results: ::Integer
|
970
|
+
attr_accessor by_resource_arn: ::String
|
971
|
+
attr_accessor by_state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL")
|
972
|
+
attr_accessor by_backup_vault_name: ::String
|
973
|
+
attr_accessor by_created_before: ::Time
|
974
|
+
attr_accessor by_created_after: ::Time
|
975
|
+
attr_accessor by_resource_type: ::String
|
976
|
+
attr_accessor by_account_id: ::String
|
977
|
+
attr_accessor by_complete_after: ::Time
|
978
|
+
attr_accessor by_complete_before: ::Time
|
979
|
+
attr_accessor by_parent_job_id: ::String
|
980
|
+
attr_accessor by_message_category: ::String
|
981
|
+
SENSITIVE: []
|
982
|
+
end
|
983
|
+
|
984
|
+
class ListBackupJobsOutput
|
985
|
+
attr_accessor backup_jobs: ::Array[Types::BackupJob]
|
986
|
+
attr_accessor next_token: ::String
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class ListBackupPlanTemplatesInput
|
991
|
+
attr_accessor next_token: ::String
|
992
|
+
attr_accessor max_results: ::Integer
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class ListBackupPlanTemplatesOutput
|
997
|
+
attr_accessor next_token: ::String
|
998
|
+
attr_accessor backup_plan_templates_list: ::Array[Types::BackupPlanTemplatesListMember]
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class ListBackupPlanVersionsInput
|
1003
|
+
attr_accessor backup_plan_id: ::String
|
1004
|
+
attr_accessor next_token: ::String
|
1005
|
+
attr_accessor max_results: ::Integer
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class ListBackupPlanVersionsOutput
|
1010
|
+
attr_accessor next_token: ::String
|
1011
|
+
attr_accessor backup_plan_versions_list: ::Array[Types::BackupPlansListMember]
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class ListBackupPlansInput
|
1016
|
+
attr_accessor next_token: ::String
|
1017
|
+
attr_accessor max_results: ::Integer
|
1018
|
+
attr_accessor include_deleted: bool
|
1019
|
+
SENSITIVE: []
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class ListBackupPlansOutput
|
1023
|
+
attr_accessor next_token: ::String
|
1024
|
+
attr_accessor backup_plans_list: ::Array[Types::BackupPlansListMember]
|
1025
|
+
SENSITIVE: []
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class ListBackupSelectionsInput
|
1029
|
+
attr_accessor backup_plan_id: ::String
|
1030
|
+
attr_accessor next_token: ::String
|
1031
|
+
attr_accessor max_results: ::Integer
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class ListBackupSelectionsOutput
|
1036
|
+
attr_accessor next_token: ::String
|
1037
|
+
attr_accessor backup_selections_list: ::Array[Types::BackupSelectionsListMember]
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class ListBackupVaultsInput
|
1042
|
+
attr_accessor by_vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
1043
|
+
attr_accessor by_shared: bool
|
1044
|
+
attr_accessor next_token: ::String
|
1045
|
+
attr_accessor max_results: ::Integer
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class ListBackupVaultsOutput
|
1050
|
+
attr_accessor backup_vault_list: ::Array[Types::BackupVaultListMember]
|
1051
|
+
attr_accessor next_token: ::String
|
1052
|
+
SENSITIVE: []
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class ListCopyJobSummariesInput
|
1056
|
+
attr_accessor account_id: ::String
|
1057
|
+
attr_accessor state: ("CREATED" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETING" | "COMPLETED" | "FAILING" | "FAILED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY")
|
1058
|
+
attr_accessor resource_type: ::String
|
1059
|
+
attr_accessor message_category: ::String
|
1060
|
+
attr_accessor aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS")
|
1061
|
+
attr_accessor max_results: ::Integer
|
1062
|
+
attr_accessor next_token: ::String
|
1063
|
+
SENSITIVE: []
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class ListCopyJobSummariesOutput
|
1067
|
+
attr_accessor copy_job_summaries: ::Array[Types::CopyJobSummary]
|
1068
|
+
attr_accessor aggregation_period: ::String
|
1069
|
+
attr_accessor next_token: ::String
|
1070
|
+
SENSITIVE: []
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class ListCopyJobsInput
|
1074
|
+
attr_accessor next_token: ::String
|
1075
|
+
attr_accessor max_results: ::Integer
|
1076
|
+
attr_accessor by_resource_arn: ::String
|
1077
|
+
attr_accessor by_state: ("CREATED" | "RUNNING" | "COMPLETED" | "FAILED" | "PARTIAL")
|
1078
|
+
attr_accessor by_created_before: ::Time
|
1079
|
+
attr_accessor by_created_after: ::Time
|
1080
|
+
attr_accessor by_resource_type: ::String
|
1081
|
+
attr_accessor by_destination_vault_arn: ::String
|
1082
|
+
attr_accessor by_account_id: ::String
|
1083
|
+
attr_accessor by_complete_before: ::Time
|
1084
|
+
attr_accessor by_complete_after: ::Time
|
1085
|
+
attr_accessor by_parent_job_id: ::String
|
1086
|
+
attr_accessor by_message_category: ::String
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class ListCopyJobsOutput
|
1091
|
+
attr_accessor copy_jobs: ::Array[Types::CopyJob]
|
1092
|
+
attr_accessor next_token: ::String
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class ListFrameworksInput
|
1097
|
+
attr_accessor max_results: ::Integer
|
1098
|
+
attr_accessor next_token: ::String
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class ListFrameworksOutput
|
1103
|
+
attr_accessor frameworks: ::Array[Types::Framework]
|
1104
|
+
attr_accessor next_token: ::String
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class ListLegalHoldsInput
|
1109
|
+
attr_accessor next_token: ::String
|
1110
|
+
attr_accessor max_results: ::Integer
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class ListLegalHoldsOutput
|
1115
|
+
attr_accessor next_token: ::String
|
1116
|
+
attr_accessor legal_holds: ::Array[Types::LegalHold]
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class ListProtectedResourcesByBackupVaultInput
|
1121
|
+
attr_accessor backup_vault_name: ::String
|
1122
|
+
attr_accessor backup_vault_account_id: ::String
|
1123
|
+
attr_accessor next_token: ::String
|
1124
|
+
attr_accessor max_results: ::Integer
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class ListProtectedResourcesByBackupVaultOutput
|
1129
|
+
attr_accessor results: ::Array[Types::ProtectedResource]
|
1130
|
+
attr_accessor next_token: ::String
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class ListProtectedResourcesInput
|
1135
|
+
attr_accessor next_token: ::String
|
1136
|
+
attr_accessor max_results: ::Integer
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
class ListProtectedResourcesOutput
|
1141
|
+
attr_accessor results: ::Array[Types::ProtectedResource]
|
1142
|
+
attr_accessor next_token: ::String
|
1143
|
+
SENSITIVE: []
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class ListRecoveryPointsByBackupVaultInput
|
1147
|
+
attr_accessor backup_vault_name: ::String
|
1148
|
+
attr_accessor backup_vault_account_id: ::String
|
1149
|
+
attr_accessor next_token: ::String
|
1150
|
+
attr_accessor max_results: ::Integer
|
1151
|
+
attr_accessor by_resource_arn: ::String
|
1152
|
+
attr_accessor by_resource_type: ::String
|
1153
|
+
attr_accessor by_backup_plan_id: ::String
|
1154
|
+
attr_accessor by_created_before: ::Time
|
1155
|
+
attr_accessor by_created_after: ::Time
|
1156
|
+
attr_accessor by_parent_recovery_point_arn: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class ListRecoveryPointsByBackupVaultOutput
|
1161
|
+
attr_accessor next_token: ::String
|
1162
|
+
attr_accessor recovery_points: ::Array[Types::RecoveryPointByBackupVault]
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class ListRecoveryPointsByLegalHoldInput
|
1167
|
+
attr_accessor legal_hold_id: ::String
|
1168
|
+
attr_accessor next_token: ::String
|
1169
|
+
attr_accessor max_results: ::Integer
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class ListRecoveryPointsByLegalHoldOutput
|
1174
|
+
attr_accessor recovery_points: ::Array[Types::RecoveryPointMember]
|
1175
|
+
attr_accessor next_token: ::String
|
1176
|
+
SENSITIVE: []
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class ListRecoveryPointsByResourceInput
|
1180
|
+
attr_accessor resource_arn: ::String
|
1181
|
+
attr_accessor next_token: ::String
|
1182
|
+
attr_accessor max_results: ::Integer
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class ListRecoveryPointsByResourceOutput
|
1187
|
+
attr_accessor next_token: ::String
|
1188
|
+
attr_accessor recovery_points: ::Array[Types::RecoveryPointByResource]
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class ListReportJobsInput
|
1193
|
+
attr_accessor by_report_plan_name: ::String
|
1194
|
+
attr_accessor by_creation_before: ::Time
|
1195
|
+
attr_accessor by_creation_after: ::Time
|
1196
|
+
attr_accessor by_status: ::String
|
1197
|
+
attr_accessor max_results: ::Integer
|
1198
|
+
attr_accessor next_token: ::String
|
1199
|
+
SENSITIVE: []
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class ListReportJobsOutput
|
1203
|
+
attr_accessor report_jobs: ::Array[Types::ReportJob]
|
1204
|
+
attr_accessor next_token: ::String
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class ListReportPlansInput
|
1209
|
+
attr_accessor max_results: ::Integer
|
1210
|
+
attr_accessor next_token: ::String
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class ListReportPlansOutput
|
1215
|
+
attr_accessor report_plans: ::Array[Types::ReportPlan]
|
1216
|
+
attr_accessor next_token: ::String
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class ListRestoreJobSummariesInput
|
1221
|
+
attr_accessor account_id: ::String
|
1222
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTED" | "COMPLETED" | "FAILED" | "AGGREGATE_ALL" | "ANY")
|
1223
|
+
attr_accessor resource_type: ::String
|
1224
|
+
attr_accessor aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS")
|
1225
|
+
attr_accessor max_results: ::Integer
|
1226
|
+
attr_accessor next_token: ::String
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class ListRestoreJobSummariesOutput
|
1231
|
+
attr_accessor restore_job_summaries: ::Array[Types::RestoreJobSummary]
|
1232
|
+
attr_accessor aggregation_period: ::String
|
1233
|
+
attr_accessor next_token: ::String
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class ListRestoreJobsByProtectedResourceInput
|
1238
|
+
attr_accessor resource_arn: ::String
|
1239
|
+
attr_accessor by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
1240
|
+
attr_accessor by_recovery_point_creation_date_after: ::Time
|
1241
|
+
attr_accessor by_recovery_point_creation_date_before: ::Time
|
1242
|
+
attr_accessor next_token: ::String
|
1243
|
+
attr_accessor max_results: ::Integer
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class ListRestoreJobsByProtectedResourceOutput
|
1248
|
+
attr_accessor restore_jobs: ::Array[Types::RestoreJobsListMember]
|
1249
|
+
attr_accessor next_token: ::String
|
1250
|
+
SENSITIVE: []
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
class ListRestoreJobsInput
|
1254
|
+
attr_accessor next_token: ::String
|
1255
|
+
attr_accessor max_results: ::Integer
|
1256
|
+
attr_accessor by_account_id: ::String
|
1257
|
+
attr_accessor by_resource_type: ::String
|
1258
|
+
attr_accessor by_created_before: ::Time
|
1259
|
+
attr_accessor by_created_after: ::Time
|
1260
|
+
attr_accessor by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
1261
|
+
attr_accessor by_complete_before: ::Time
|
1262
|
+
attr_accessor by_complete_after: ::Time
|
1263
|
+
attr_accessor by_restore_testing_plan_arn: ::String
|
1264
|
+
SENSITIVE: []
|
1265
|
+
end
|
1266
|
+
|
1267
|
+
class ListRestoreJobsOutput
|
1268
|
+
attr_accessor restore_jobs: ::Array[Types::RestoreJobsListMember]
|
1269
|
+
attr_accessor next_token: ::String
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
class ListRestoreTestingPlansInput
|
1274
|
+
attr_accessor max_results: ::Integer
|
1275
|
+
attr_accessor next_token: ::String
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class ListRestoreTestingPlansOutput
|
1280
|
+
attr_accessor next_token: ::String
|
1281
|
+
attr_accessor restore_testing_plans: ::Array[Types::RestoreTestingPlanForList]
|
1282
|
+
SENSITIVE: []
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
class ListRestoreTestingSelectionsInput
|
1286
|
+
attr_accessor max_results: ::Integer
|
1287
|
+
attr_accessor next_token: ::String
|
1288
|
+
attr_accessor restore_testing_plan_name: ::String
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class ListRestoreTestingSelectionsOutput
|
1293
|
+
attr_accessor next_token: ::String
|
1294
|
+
attr_accessor restore_testing_selections: ::Array[Types::RestoreTestingSelectionForList]
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class ListTagsInput
|
1299
|
+
attr_accessor resource_arn: ::String
|
1300
|
+
attr_accessor next_token: ::String
|
1301
|
+
attr_accessor max_results: ::Integer
|
1302
|
+
SENSITIVE: []
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class ListTagsOutput
|
1306
|
+
attr_accessor next_token: ::String
|
1307
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1308
|
+
SENSITIVE: [:tags]
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
class MissingParameterValueException
|
1312
|
+
attr_accessor code: ::String
|
1313
|
+
attr_accessor message: ::String
|
1314
|
+
attr_accessor type: ::String
|
1315
|
+
attr_accessor context: ::String
|
1316
|
+
SENSITIVE: []
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
class ProtectedResource
|
1320
|
+
attr_accessor resource_arn: ::String
|
1321
|
+
attr_accessor resource_type: ::String
|
1322
|
+
attr_accessor last_backup_time: ::Time
|
1323
|
+
attr_accessor resource_name: ::String
|
1324
|
+
attr_accessor last_backup_vault_arn: ::String
|
1325
|
+
attr_accessor last_recovery_point_arn: ::String
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class ProtectedResourceConditions
|
1330
|
+
attr_accessor string_equals: ::Array[Types::KeyValue]
|
1331
|
+
attr_accessor string_not_equals: ::Array[Types::KeyValue]
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class PutBackupVaultAccessPolicyInput
|
1336
|
+
attr_accessor backup_vault_name: ::String
|
1337
|
+
attr_accessor policy: ::String
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class PutBackupVaultLockConfigurationInput
|
1342
|
+
attr_accessor backup_vault_name: ::String
|
1343
|
+
attr_accessor min_retention_days: ::Integer
|
1344
|
+
attr_accessor max_retention_days: ::Integer
|
1345
|
+
attr_accessor changeable_for_days: ::Integer
|
1346
|
+
SENSITIVE: []
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
class PutBackupVaultNotificationsInput
|
1350
|
+
attr_accessor backup_vault_name: ::String
|
1351
|
+
attr_accessor sns_topic_arn: ::String
|
1352
|
+
attr_accessor backup_vault_events: ::Array[("BACKUP_JOB_STARTED" | "BACKUP_JOB_COMPLETED" | "BACKUP_JOB_SUCCESSFUL" | "BACKUP_JOB_FAILED" | "BACKUP_JOB_EXPIRED" | "RESTORE_JOB_STARTED" | "RESTORE_JOB_COMPLETED" | "RESTORE_JOB_SUCCESSFUL" | "RESTORE_JOB_FAILED" | "COPY_JOB_STARTED" | "COPY_JOB_SUCCESSFUL" | "COPY_JOB_FAILED" | "RECOVERY_POINT_MODIFIED" | "BACKUP_PLAN_CREATED" | "BACKUP_PLAN_MODIFIED" | "S3_BACKUP_OBJECT_FAILED" | "S3_RESTORE_OBJECT_FAILED")]
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class PutRestoreValidationResultInput
|
1357
|
+
attr_accessor restore_job_id: ::String
|
1358
|
+
attr_accessor validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
|
1359
|
+
attr_accessor validation_status_message: ::String
|
1360
|
+
SENSITIVE: []
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class RecoveryPointByBackupVault
|
1364
|
+
attr_accessor recovery_point_arn: ::String
|
1365
|
+
attr_accessor backup_vault_name: ::String
|
1366
|
+
attr_accessor backup_vault_arn: ::String
|
1367
|
+
attr_accessor source_backup_vault_arn: ::String
|
1368
|
+
attr_accessor resource_arn: ::String
|
1369
|
+
attr_accessor resource_type: ::String
|
1370
|
+
attr_accessor created_by: Types::RecoveryPointCreator
|
1371
|
+
attr_accessor iam_role_arn: ::String
|
1372
|
+
attr_accessor status: ("COMPLETED" | "PARTIAL" | "DELETING" | "EXPIRED")
|
1373
|
+
attr_accessor status_message: ::String
|
1374
|
+
attr_accessor creation_date: ::Time
|
1375
|
+
attr_accessor completion_date: ::Time
|
1376
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
1377
|
+
attr_accessor calculated_lifecycle: Types::CalculatedLifecycle
|
1378
|
+
attr_accessor lifecycle: Types::Lifecycle
|
1379
|
+
attr_accessor encryption_key_arn: ::String
|
1380
|
+
attr_accessor is_encrypted: bool
|
1381
|
+
attr_accessor last_restore_time: ::Time
|
1382
|
+
attr_accessor parent_recovery_point_arn: ::String
|
1383
|
+
attr_accessor composite_member_identifier: ::String
|
1384
|
+
attr_accessor is_parent: bool
|
1385
|
+
attr_accessor resource_name: ::String
|
1386
|
+
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
1387
|
+
SENSITIVE: []
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
class RecoveryPointByResource
|
1391
|
+
attr_accessor recovery_point_arn: ::String
|
1392
|
+
attr_accessor creation_date: ::Time
|
1393
|
+
attr_accessor status: ("COMPLETED" | "PARTIAL" | "DELETING" | "EXPIRED")
|
1394
|
+
attr_accessor status_message: ::String
|
1395
|
+
attr_accessor encryption_key_arn: ::String
|
1396
|
+
attr_accessor backup_size_bytes: ::Integer
|
1397
|
+
attr_accessor backup_vault_name: ::String
|
1398
|
+
attr_accessor is_parent: bool
|
1399
|
+
attr_accessor parent_recovery_point_arn: ::String
|
1400
|
+
attr_accessor resource_name: ::String
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class RecoveryPointCreator
|
1405
|
+
attr_accessor backup_plan_id: ::String
|
1406
|
+
attr_accessor backup_plan_arn: ::String
|
1407
|
+
attr_accessor backup_plan_version: ::String
|
1408
|
+
attr_accessor backup_rule_id: ::String
|
1409
|
+
SENSITIVE: []
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
class RecoveryPointMember
|
1413
|
+
attr_accessor recovery_point_arn: ::String
|
1414
|
+
attr_accessor resource_arn: ::String
|
1415
|
+
attr_accessor resource_type: ::String
|
1416
|
+
attr_accessor backup_vault_name: ::String
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class RecoveryPointSelection
|
1421
|
+
attr_accessor vault_names: ::Array[::String]
|
1422
|
+
attr_accessor resource_identifiers: ::Array[::String]
|
1423
|
+
attr_accessor date_range: Types::DateRange
|
1424
|
+
SENSITIVE: []
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
class ReportDeliveryChannel
|
1428
|
+
attr_accessor s3_bucket_name: ::String
|
1429
|
+
attr_accessor s3_key_prefix: ::String
|
1430
|
+
attr_accessor formats: ::Array[::String]
|
1431
|
+
SENSITIVE: []
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
class ReportDestination
|
1435
|
+
attr_accessor s3_bucket_name: ::String
|
1436
|
+
attr_accessor s3_keys: ::Array[::String]
|
1437
|
+
SENSITIVE: []
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
class ReportJob
|
1441
|
+
attr_accessor report_job_id: ::String
|
1442
|
+
attr_accessor report_plan_arn: ::String
|
1443
|
+
attr_accessor report_template: ::String
|
1444
|
+
attr_accessor creation_time: ::Time
|
1445
|
+
attr_accessor completion_time: ::Time
|
1446
|
+
attr_accessor status: ::String
|
1447
|
+
attr_accessor status_message: ::String
|
1448
|
+
attr_accessor report_destination: Types::ReportDestination
|
1449
|
+
SENSITIVE: []
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
class ReportPlan
|
1453
|
+
attr_accessor report_plan_arn: ::String
|
1454
|
+
attr_accessor report_plan_name: ::String
|
1455
|
+
attr_accessor report_plan_description: ::String
|
1456
|
+
attr_accessor report_setting: Types::ReportSetting
|
1457
|
+
attr_accessor report_delivery_channel: Types::ReportDeliveryChannel
|
1458
|
+
attr_accessor deployment_status: ::String
|
1459
|
+
attr_accessor creation_time: ::Time
|
1460
|
+
attr_accessor last_attempted_execution_time: ::Time
|
1461
|
+
attr_accessor last_successful_execution_time: ::Time
|
1462
|
+
SENSITIVE: []
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
class ReportSetting
|
1466
|
+
attr_accessor report_template: ::String
|
1467
|
+
attr_accessor framework_arns: ::Array[::String]
|
1468
|
+
attr_accessor number_of_frameworks: ::Integer
|
1469
|
+
attr_accessor accounts: ::Array[::String]
|
1470
|
+
attr_accessor organization_units: ::Array[::String]
|
1471
|
+
attr_accessor regions: ::Array[::String]
|
1472
|
+
SENSITIVE: []
|
1473
|
+
end
|
1474
|
+
|
1475
|
+
class ResourceNotFoundException
|
1476
|
+
attr_accessor code: ::String
|
1477
|
+
attr_accessor message: ::String
|
1478
|
+
attr_accessor type: ::String
|
1479
|
+
attr_accessor context: ::String
|
1480
|
+
SENSITIVE: []
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class RestoreJobCreator
|
1484
|
+
attr_accessor restore_testing_plan_arn: ::String
|
1485
|
+
SENSITIVE: []
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
class RestoreJobSummary
|
1489
|
+
attr_accessor region: ::String
|
1490
|
+
attr_accessor account_id: ::String
|
1491
|
+
attr_accessor state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTED" | "COMPLETED" | "FAILED" | "AGGREGATE_ALL" | "ANY")
|
1492
|
+
attr_accessor resource_type: ::String
|
1493
|
+
attr_accessor count: ::Integer
|
1494
|
+
attr_accessor start_time: ::Time
|
1495
|
+
attr_accessor end_time: ::Time
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class RestoreJobsListMember
|
1500
|
+
attr_accessor account_id: ::String
|
1501
|
+
attr_accessor restore_job_id: ::String
|
1502
|
+
attr_accessor recovery_point_arn: ::String
|
1503
|
+
attr_accessor creation_date: ::Time
|
1504
|
+
attr_accessor completion_date: ::Time
|
1505
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
1506
|
+
attr_accessor status_message: ::String
|
1507
|
+
attr_accessor percent_done: ::String
|
1508
|
+
attr_accessor backup_size_in_bytes: ::Integer
|
1509
|
+
attr_accessor iam_role_arn: ::String
|
1510
|
+
attr_accessor expected_completion_time_minutes: ::Integer
|
1511
|
+
attr_accessor created_resource_arn: ::String
|
1512
|
+
attr_accessor resource_type: ::String
|
1513
|
+
attr_accessor recovery_point_creation_date: ::Time
|
1514
|
+
attr_accessor created_by: Types::RestoreJobCreator
|
1515
|
+
attr_accessor validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
|
1516
|
+
attr_accessor validation_status_message: ::String
|
1517
|
+
attr_accessor deletion_status: ("DELETING" | "FAILED" | "SUCCESSFUL")
|
1518
|
+
attr_accessor deletion_status_message: ::String
|
1519
|
+
SENSITIVE: []
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
class RestoreTestingPlanForCreate
|
1523
|
+
attr_accessor recovery_point_selection: Types::RestoreTestingRecoveryPointSelection
|
1524
|
+
attr_accessor restore_testing_plan_name: ::String
|
1525
|
+
attr_accessor schedule_expression: ::String
|
1526
|
+
attr_accessor schedule_expression_timezone: ::String
|
1527
|
+
attr_accessor start_window_hours: ::Integer
|
1528
|
+
SENSITIVE: []
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
class RestoreTestingPlanForGet
|
1532
|
+
attr_accessor creation_time: ::Time
|
1533
|
+
attr_accessor creator_request_id: ::String
|
1534
|
+
attr_accessor last_execution_time: ::Time
|
1535
|
+
attr_accessor last_update_time: ::Time
|
1536
|
+
attr_accessor recovery_point_selection: Types::RestoreTestingRecoveryPointSelection
|
1537
|
+
attr_accessor restore_testing_plan_arn: ::String
|
1538
|
+
attr_accessor restore_testing_plan_name: ::String
|
1539
|
+
attr_accessor schedule_expression: ::String
|
1540
|
+
attr_accessor schedule_expression_timezone: ::String
|
1541
|
+
attr_accessor start_window_hours: ::Integer
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class RestoreTestingPlanForList
|
1546
|
+
attr_accessor creation_time: ::Time
|
1547
|
+
attr_accessor last_execution_time: ::Time
|
1548
|
+
attr_accessor last_update_time: ::Time
|
1549
|
+
attr_accessor restore_testing_plan_arn: ::String
|
1550
|
+
attr_accessor restore_testing_plan_name: ::String
|
1551
|
+
attr_accessor schedule_expression: ::String
|
1552
|
+
attr_accessor schedule_expression_timezone: ::String
|
1553
|
+
attr_accessor start_window_hours: ::Integer
|
1554
|
+
SENSITIVE: []
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
class RestoreTestingPlanForUpdate
|
1558
|
+
attr_accessor recovery_point_selection: Types::RestoreTestingRecoveryPointSelection
|
1559
|
+
attr_accessor schedule_expression: ::String
|
1560
|
+
attr_accessor schedule_expression_timezone: ::String
|
1561
|
+
attr_accessor start_window_hours: ::Integer
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class RestoreTestingRecoveryPointSelection
|
1566
|
+
attr_accessor algorithm: ("LATEST_WITHIN_WINDOW" | "RANDOM_WITHIN_WINDOW")
|
1567
|
+
attr_accessor exclude_vaults: ::Array[::String]
|
1568
|
+
attr_accessor include_vaults: ::Array[::String]
|
1569
|
+
attr_accessor recovery_point_types: ::Array[("CONTINUOUS" | "SNAPSHOT")]
|
1570
|
+
attr_accessor selection_window_days: ::Integer
|
1571
|
+
SENSITIVE: []
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
class RestoreTestingSelectionForCreate
|
1575
|
+
attr_accessor iam_role_arn: ::String
|
1576
|
+
attr_accessor protected_resource_arns: ::Array[::String]
|
1577
|
+
attr_accessor protected_resource_conditions: Types::ProtectedResourceConditions
|
1578
|
+
attr_accessor protected_resource_type: ::String
|
1579
|
+
attr_accessor restore_metadata_overrides: ::Hash[::String, ::String]
|
1580
|
+
attr_accessor restore_testing_selection_name: ::String
|
1581
|
+
attr_accessor validation_window_hours: ::Integer
|
1582
|
+
SENSITIVE: [:restore_metadata_overrides]
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
class RestoreTestingSelectionForGet
|
1586
|
+
attr_accessor creation_time: ::Time
|
1587
|
+
attr_accessor creator_request_id: ::String
|
1588
|
+
attr_accessor iam_role_arn: ::String
|
1589
|
+
attr_accessor protected_resource_arns: ::Array[::String]
|
1590
|
+
attr_accessor protected_resource_conditions: Types::ProtectedResourceConditions
|
1591
|
+
attr_accessor protected_resource_type: ::String
|
1592
|
+
attr_accessor restore_metadata_overrides: ::Hash[::String, ::String]
|
1593
|
+
attr_accessor restore_testing_plan_name: ::String
|
1594
|
+
attr_accessor restore_testing_selection_name: ::String
|
1595
|
+
attr_accessor validation_window_hours: ::Integer
|
1596
|
+
SENSITIVE: [:restore_metadata_overrides]
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class RestoreTestingSelectionForList
|
1600
|
+
attr_accessor creation_time: ::Time
|
1601
|
+
attr_accessor iam_role_arn: ::String
|
1602
|
+
attr_accessor protected_resource_type: ::String
|
1603
|
+
attr_accessor restore_testing_plan_name: ::String
|
1604
|
+
attr_accessor restore_testing_selection_name: ::String
|
1605
|
+
attr_accessor validation_window_hours: ::Integer
|
1606
|
+
SENSITIVE: []
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
class RestoreTestingSelectionForUpdate
|
1610
|
+
attr_accessor iam_role_arn: ::String
|
1611
|
+
attr_accessor protected_resource_arns: ::Array[::String]
|
1612
|
+
attr_accessor protected_resource_conditions: Types::ProtectedResourceConditions
|
1613
|
+
attr_accessor restore_metadata_overrides: ::Hash[::String, ::String]
|
1614
|
+
attr_accessor validation_window_hours: ::Integer
|
1615
|
+
SENSITIVE: [:restore_metadata_overrides]
|
1616
|
+
end
|
1617
|
+
|
1618
|
+
class ServiceUnavailableException
|
1619
|
+
attr_accessor code: ::String
|
1620
|
+
attr_accessor message: ::String
|
1621
|
+
attr_accessor type: ::String
|
1622
|
+
attr_accessor context: ::String
|
1623
|
+
SENSITIVE: []
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
class StartBackupJobInput
|
1627
|
+
attr_accessor backup_vault_name: ::String
|
1628
|
+
attr_accessor resource_arn: ::String
|
1629
|
+
attr_accessor iam_role_arn: ::String
|
1630
|
+
attr_accessor idempotency_token: ::String
|
1631
|
+
attr_accessor start_window_minutes: ::Integer
|
1632
|
+
attr_accessor complete_window_minutes: ::Integer
|
1633
|
+
attr_accessor lifecycle: Types::Lifecycle
|
1634
|
+
attr_accessor recovery_point_tags: ::Hash[::String, ::String]
|
1635
|
+
attr_accessor backup_options: ::Hash[::String, ::String]
|
1636
|
+
SENSITIVE: [:recovery_point_tags]
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
class StartBackupJobOutput
|
1640
|
+
attr_accessor backup_job_id: ::String
|
1641
|
+
attr_accessor recovery_point_arn: ::String
|
1642
|
+
attr_accessor creation_date: ::Time
|
1643
|
+
attr_accessor is_parent: bool
|
1644
|
+
SENSITIVE: []
|
1645
|
+
end
|
1646
|
+
|
1647
|
+
class StartCopyJobInput
|
1648
|
+
attr_accessor recovery_point_arn: ::String
|
1649
|
+
attr_accessor source_backup_vault_name: ::String
|
1650
|
+
attr_accessor destination_backup_vault_arn: ::String
|
1651
|
+
attr_accessor iam_role_arn: ::String
|
1652
|
+
attr_accessor idempotency_token: ::String
|
1653
|
+
attr_accessor lifecycle: Types::Lifecycle
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class StartCopyJobOutput
|
1658
|
+
attr_accessor copy_job_id: ::String
|
1659
|
+
attr_accessor creation_date: ::Time
|
1660
|
+
attr_accessor is_parent: bool
|
1661
|
+
SENSITIVE: []
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
class StartReportJobInput
|
1665
|
+
attr_accessor report_plan_name: ::String
|
1666
|
+
attr_accessor idempotency_token: ::String
|
1667
|
+
SENSITIVE: []
|
1668
|
+
end
|
1669
|
+
|
1670
|
+
class StartReportJobOutput
|
1671
|
+
attr_accessor report_job_id: ::String
|
1672
|
+
SENSITIVE: []
|
1673
|
+
end
|
1674
|
+
|
1675
|
+
class StartRestoreJobInput
|
1676
|
+
attr_accessor recovery_point_arn: ::String
|
1677
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
1678
|
+
attr_accessor iam_role_arn: ::String
|
1679
|
+
attr_accessor idempotency_token: ::String
|
1680
|
+
attr_accessor resource_type: ::String
|
1681
|
+
attr_accessor copy_source_tags_to_restored_resource: bool
|
1682
|
+
SENSITIVE: [:metadata]
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
class StartRestoreJobOutput
|
1686
|
+
attr_accessor restore_job_id: ::String
|
1687
|
+
SENSITIVE: []
|
1688
|
+
end
|
1689
|
+
|
1690
|
+
class StopBackupJobInput
|
1691
|
+
attr_accessor backup_job_id: ::String
|
1692
|
+
SENSITIVE: []
|
1693
|
+
end
|
1694
|
+
|
1695
|
+
class TagResourceInput
|
1696
|
+
attr_accessor resource_arn: ::String
|
1697
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1698
|
+
SENSITIVE: [:tags]
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
class UntagResourceInput
|
1702
|
+
attr_accessor resource_arn: ::String
|
1703
|
+
attr_accessor tag_key_list: ::Array[::String]
|
1704
|
+
SENSITIVE: [:tag_key_list]
|
1705
|
+
end
|
1706
|
+
|
1707
|
+
class UpdateBackupPlanInput
|
1708
|
+
attr_accessor backup_plan_id: ::String
|
1709
|
+
attr_accessor backup_plan: Types::BackupPlanInput
|
1710
|
+
SENSITIVE: []
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
class UpdateBackupPlanOutput
|
1714
|
+
attr_accessor backup_plan_id: ::String
|
1715
|
+
attr_accessor backup_plan_arn: ::String
|
1716
|
+
attr_accessor creation_date: ::Time
|
1717
|
+
attr_accessor version_id: ::String
|
1718
|
+
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
1719
|
+
SENSITIVE: []
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
class UpdateFrameworkInput
|
1723
|
+
attr_accessor framework_name: ::String
|
1724
|
+
attr_accessor framework_description: ::String
|
1725
|
+
attr_accessor framework_controls: ::Array[Types::FrameworkControl]
|
1726
|
+
attr_accessor idempotency_token: ::String
|
1727
|
+
SENSITIVE: []
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
class UpdateFrameworkOutput
|
1731
|
+
attr_accessor framework_name: ::String
|
1732
|
+
attr_accessor framework_arn: ::String
|
1733
|
+
attr_accessor creation_time: ::Time
|
1734
|
+
SENSITIVE: []
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
class UpdateGlobalSettingsInput
|
1738
|
+
attr_accessor global_settings: ::Hash[::String, ::String]
|
1739
|
+
SENSITIVE: []
|
1740
|
+
end
|
1741
|
+
|
1742
|
+
class UpdateRecoveryPointLifecycleInput
|
1743
|
+
attr_accessor backup_vault_name: ::String
|
1744
|
+
attr_accessor recovery_point_arn: ::String
|
1745
|
+
attr_accessor lifecycle: Types::Lifecycle
|
1746
|
+
SENSITIVE: []
|
1747
|
+
end
|
1748
|
+
|
1749
|
+
class UpdateRecoveryPointLifecycleOutput
|
1750
|
+
attr_accessor backup_vault_arn: ::String
|
1751
|
+
attr_accessor recovery_point_arn: ::String
|
1752
|
+
attr_accessor lifecycle: Types::Lifecycle
|
1753
|
+
attr_accessor calculated_lifecycle: Types::CalculatedLifecycle
|
1754
|
+
SENSITIVE: []
|
1755
|
+
end
|
1756
|
+
|
1757
|
+
class UpdateRegionSettingsInput
|
1758
|
+
attr_accessor resource_type_opt_in_preference: ::Hash[::String, bool]
|
1759
|
+
attr_accessor resource_type_management_preference: ::Hash[::String, bool]
|
1760
|
+
SENSITIVE: []
|
1761
|
+
end
|
1762
|
+
|
1763
|
+
class UpdateReportPlanInput
|
1764
|
+
attr_accessor report_plan_name: ::String
|
1765
|
+
attr_accessor report_plan_description: ::String
|
1766
|
+
attr_accessor report_delivery_channel: Types::ReportDeliveryChannel
|
1767
|
+
attr_accessor report_setting: Types::ReportSetting
|
1768
|
+
attr_accessor idempotency_token: ::String
|
1769
|
+
SENSITIVE: []
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
class UpdateReportPlanOutput
|
1773
|
+
attr_accessor report_plan_name: ::String
|
1774
|
+
attr_accessor report_plan_arn: ::String
|
1775
|
+
attr_accessor creation_time: ::Time
|
1776
|
+
SENSITIVE: []
|
1777
|
+
end
|
1778
|
+
|
1779
|
+
class UpdateRestoreTestingPlanInput
|
1780
|
+
attr_accessor restore_testing_plan: Types::RestoreTestingPlanForUpdate
|
1781
|
+
attr_accessor restore_testing_plan_name: ::String
|
1782
|
+
SENSITIVE: []
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
class UpdateRestoreTestingPlanOutput
|
1786
|
+
attr_accessor creation_time: ::Time
|
1787
|
+
attr_accessor restore_testing_plan_arn: ::String
|
1788
|
+
attr_accessor restore_testing_plan_name: ::String
|
1789
|
+
attr_accessor update_time: ::Time
|
1790
|
+
SENSITIVE: []
|
1791
|
+
end
|
1792
|
+
|
1793
|
+
class UpdateRestoreTestingSelectionInput
|
1794
|
+
attr_accessor restore_testing_plan_name: ::String
|
1795
|
+
attr_accessor restore_testing_selection: Types::RestoreTestingSelectionForUpdate
|
1796
|
+
attr_accessor restore_testing_selection_name: ::String
|
1797
|
+
SENSITIVE: []
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class UpdateRestoreTestingSelectionOutput
|
1801
|
+
attr_accessor creation_time: ::Time
|
1802
|
+
attr_accessor restore_testing_plan_arn: ::String
|
1803
|
+
attr_accessor restore_testing_plan_name: ::String
|
1804
|
+
attr_accessor restore_testing_selection_name: ::String
|
1805
|
+
attr_accessor update_time: ::Time
|
1806
|
+
SENSITIVE: []
|
1807
|
+
end
|
1808
|
+
end
|
1809
|
+
end
|