aws-sdk-resiliencehub 1.24.0 → 1.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resiliencehub/client.rb +70 -46
- data/lib/aws-sdk-resiliencehub/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-resiliencehub.rb +1 -1
- data/sig/client.rbs +942 -0
- data/sig/errors.rbs +42 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1237 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1237 @@
|
|
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::ResilienceHub
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AddDraftAppVersionResourceMappingsRequest
|
17
|
+
attr_accessor app_arn: ::String
|
18
|
+
attr_accessor resource_mappings: ::Array[Types::ResourceMapping]
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AddDraftAppVersionResourceMappingsResponse
|
23
|
+
attr_accessor app_arn: ::String
|
24
|
+
attr_accessor app_version: ::String
|
25
|
+
attr_accessor resource_mappings: ::Array[Types::ResourceMapping]
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class AlarmRecommendation
|
30
|
+
attr_accessor app_component_name: ::String
|
31
|
+
attr_accessor app_component_names: ::Array[::String]
|
32
|
+
attr_accessor description: ::String
|
33
|
+
attr_accessor items: ::Array[Types::RecommendationItem]
|
34
|
+
attr_accessor name: ::String
|
35
|
+
attr_accessor prerequisite: ::String
|
36
|
+
attr_accessor recommendation_id: ::String
|
37
|
+
attr_accessor recommendation_status: ("Implemented" | "Inactive" | "NotImplemented" | "Excluded")
|
38
|
+
attr_accessor reference_id: ::String
|
39
|
+
attr_accessor type: ("Metric" | "Composite" | "Canary" | "Logs" | "Event")
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class App
|
44
|
+
attr_accessor app_arn: ::String
|
45
|
+
attr_accessor assessment_schedule: ("Disabled" | "Daily")
|
46
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet" | "NotAssessed" | "ChangesDetected")
|
47
|
+
attr_accessor creation_time: ::Time
|
48
|
+
attr_accessor description: ::String
|
49
|
+
attr_accessor drift_status: ("NotChecked" | "NotDetected" | "Detected")
|
50
|
+
attr_accessor event_subscriptions: ::Array[Types::EventSubscription]
|
51
|
+
attr_accessor last_app_compliance_evaluation_time: ::Time
|
52
|
+
attr_accessor last_drift_evaluation_time: ::Time
|
53
|
+
attr_accessor last_resiliency_score_evaluation_time: ::Time
|
54
|
+
attr_accessor name: ::String
|
55
|
+
attr_accessor permission_model: Types::PermissionModel
|
56
|
+
attr_accessor policy_arn: ::String
|
57
|
+
attr_accessor resiliency_score: ::Float
|
58
|
+
attr_accessor rpo_in_secs: ::Integer
|
59
|
+
attr_accessor rto_in_secs: ::Integer
|
60
|
+
attr_accessor status: ("Active" | "Deleting")
|
61
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
62
|
+
SENSITIVE: [:tags]
|
63
|
+
end
|
64
|
+
|
65
|
+
class AppAssessment
|
66
|
+
attr_accessor app_arn: ::String
|
67
|
+
attr_accessor app_version: ::String
|
68
|
+
attr_accessor assessment_arn: ::String
|
69
|
+
attr_accessor assessment_name: ::String
|
70
|
+
attr_accessor assessment_status: ("Pending" | "InProgress" | "Failed" | "Success")
|
71
|
+
attr_accessor compliance: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::DisruptionCompliance]
|
72
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet")
|
73
|
+
attr_accessor cost: Types::Cost
|
74
|
+
attr_accessor drift_status: ("NotChecked" | "NotDetected" | "Detected")
|
75
|
+
attr_accessor end_time: ::Time
|
76
|
+
attr_accessor invoker: ("User" | "System")
|
77
|
+
attr_accessor message: ::String
|
78
|
+
attr_accessor policy: Types::ResiliencyPolicy
|
79
|
+
attr_accessor resiliency_score: Types::ResiliencyScore
|
80
|
+
attr_accessor resource_errors_details: Types::ResourceErrorsDetails
|
81
|
+
attr_accessor start_time: ::Time
|
82
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
83
|
+
attr_accessor version_name: ::String
|
84
|
+
SENSITIVE: [:tags]
|
85
|
+
end
|
86
|
+
|
87
|
+
class AppAssessmentSummary
|
88
|
+
attr_accessor app_arn: ::String
|
89
|
+
attr_accessor app_version: ::String
|
90
|
+
attr_accessor assessment_arn: ::String
|
91
|
+
attr_accessor assessment_name: ::String
|
92
|
+
attr_accessor assessment_status: ("Pending" | "InProgress" | "Failed" | "Success")
|
93
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet")
|
94
|
+
attr_accessor cost: Types::Cost
|
95
|
+
attr_accessor drift_status: ("NotChecked" | "NotDetected" | "Detected")
|
96
|
+
attr_accessor end_time: ::Time
|
97
|
+
attr_accessor invoker: ("User" | "System")
|
98
|
+
attr_accessor message: ::String
|
99
|
+
attr_accessor resiliency_score: ::Float
|
100
|
+
attr_accessor start_time: ::Time
|
101
|
+
attr_accessor version_name: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class AppComponent
|
106
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
107
|
+
attr_accessor id: ::String
|
108
|
+
attr_accessor name: ::String
|
109
|
+
attr_accessor type: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class AppComponentCompliance
|
114
|
+
attr_accessor app_component_name: ::String
|
115
|
+
attr_accessor compliance: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::DisruptionCompliance]
|
116
|
+
attr_accessor cost: Types::Cost
|
117
|
+
attr_accessor message: ::String
|
118
|
+
attr_accessor resiliency_score: Types::ResiliencyScore
|
119
|
+
attr_accessor status: ("PolicyBreached" | "PolicyMet")
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class AppInputSource
|
124
|
+
attr_accessor eks_source_cluster_namespace: Types::EksSourceClusterNamespace
|
125
|
+
attr_accessor import_type: ("CfnStack" | "Resource" | "AppRegistryApp" | "ResourceGroup" | "Terraform" | "EKS")
|
126
|
+
attr_accessor resource_count: ::Integer
|
127
|
+
attr_accessor source_arn: ::String
|
128
|
+
attr_accessor source_name: ::String
|
129
|
+
attr_accessor terraform_source: Types::TerraformSource
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class AppSummary
|
134
|
+
attr_accessor app_arn: ::String
|
135
|
+
attr_accessor assessment_schedule: ("Disabled" | "Daily")
|
136
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet" | "NotAssessed" | "ChangesDetected")
|
137
|
+
attr_accessor creation_time: ::Time
|
138
|
+
attr_accessor description: ::String
|
139
|
+
attr_accessor drift_status: ("NotChecked" | "NotDetected" | "Detected")
|
140
|
+
attr_accessor last_app_compliance_evaluation_time: ::Time
|
141
|
+
attr_accessor name: ::String
|
142
|
+
attr_accessor resiliency_score: ::Float
|
143
|
+
attr_accessor rpo_in_secs: ::Integer
|
144
|
+
attr_accessor rto_in_secs: ::Integer
|
145
|
+
attr_accessor status: ("Active" | "Deleting")
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class AppVersionSummary
|
150
|
+
attr_accessor app_version: ::String
|
151
|
+
attr_accessor creation_time: ::Time
|
152
|
+
attr_accessor identifier: ::Integer
|
153
|
+
attr_accessor version_name: ::String
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class BatchUpdateRecommendationStatusFailedEntry
|
158
|
+
attr_accessor entry_id: ::String
|
159
|
+
attr_accessor error_message: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class BatchUpdateRecommendationStatusRequest
|
164
|
+
attr_accessor app_arn: ::String
|
165
|
+
attr_accessor request_entries: ::Array[Types::UpdateRecommendationStatusRequestEntry]
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class BatchUpdateRecommendationStatusResponse
|
170
|
+
attr_accessor app_arn: ::String
|
171
|
+
attr_accessor failed_entries: ::Array[Types::BatchUpdateRecommendationStatusFailedEntry]
|
172
|
+
attr_accessor successful_entries: ::Array[Types::BatchUpdateRecommendationStatusSuccessfulEntry]
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class BatchUpdateRecommendationStatusSuccessfulEntry
|
177
|
+
attr_accessor entry_id: ::String
|
178
|
+
attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
|
179
|
+
attr_accessor excluded: bool
|
180
|
+
attr_accessor item: Types::UpdateRecommendationStatusItem
|
181
|
+
attr_accessor reference_id: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class ComplianceDrift
|
186
|
+
attr_accessor actual_reference_id: ::String
|
187
|
+
attr_accessor actual_value: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::DisruptionCompliance]
|
188
|
+
attr_accessor app_id: ::String
|
189
|
+
attr_accessor app_version: ::String
|
190
|
+
attr_accessor diff_type: ("NotEqual")
|
191
|
+
attr_accessor drift_type: ("ApplicationCompliance")
|
192
|
+
attr_accessor entity_id: ::String
|
193
|
+
attr_accessor entity_type: ::String
|
194
|
+
attr_accessor expected_reference_id: ::String
|
195
|
+
attr_accessor expected_value: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::DisruptionCompliance]
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class ComponentRecommendation
|
200
|
+
attr_accessor app_component_name: ::String
|
201
|
+
attr_accessor config_recommendations: ::Array[Types::ConfigRecommendation]
|
202
|
+
attr_accessor recommendation_status: ("BreachedUnattainable" | "BreachedCanMeet" | "MetCanImprove")
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class ConfigRecommendation
|
207
|
+
attr_accessor app_component_name: ::String
|
208
|
+
attr_accessor compliance: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::DisruptionCompliance]
|
209
|
+
attr_accessor cost: Types::Cost
|
210
|
+
attr_accessor description: ::String
|
211
|
+
attr_accessor ha_architecture: ("MultiSite" | "WarmStandby" | "PilotLight" | "BackupAndRestore" | "NoRecoveryPlan")
|
212
|
+
attr_accessor name: ::String
|
213
|
+
attr_accessor optimization_type: ("LeastCost" | "LeastChange" | "BestAZRecovery" | "LeastErrors" | "BestAttainable" | "BestRegionRecovery")
|
214
|
+
attr_accessor recommendation_compliance: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::RecommendationDisruptionCompliance]
|
215
|
+
attr_accessor reference_id: ::String
|
216
|
+
attr_accessor suggested_changes: ::Array[::String]
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class ConflictException
|
221
|
+
attr_accessor message: ::String
|
222
|
+
attr_accessor resource_id: ::String
|
223
|
+
attr_accessor resource_type: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class Cost
|
228
|
+
attr_accessor amount: ::Float
|
229
|
+
attr_accessor currency: ::String
|
230
|
+
attr_accessor frequency: ("Hourly" | "Daily" | "Monthly" | "Yearly")
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class CreateAppRequest
|
235
|
+
attr_accessor assessment_schedule: ("Disabled" | "Daily")
|
236
|
+
attr_accessor client_token: ::String
|
237
|
+
attr_accessor description: ::String
|
238
|
+
attr_accessor event_subscriptions: ::Array[Types::EventSubscription]
|
239
|
+
attr_accessor name: ::String
|
240
|
+
attr_accessor permission_model: Types::PermissionModel
|
241
|
+
attr_accessor policy_arn: ::String
|
242
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
243
|
+
SENSITIVE: [:tags]
|
244
|
+
end
|
245
|
+
|
246
|
+
class CreateAppResponse
|
247
|
+
attr_accessor app: Types::App
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class CreateAppVersionAppComponentRequest
|
252
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
253
|
+
attr_accessor app_arn: ::String
|
254
|
+
attr_accessor client_token: ::String
|
255
|
+
attr_accessor id: ::String
|
256
|
+
attr_accessor name: ::String
|
257
|
+
attr_accessor type: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class CreateAppVersionAppComponentResponse
|
262
|
+
attr_accessor app_arn: ::String
|
263
|
+
attr_accessor app_component: Types::AppComponent
|
264
|
+
attr_accessor app_version: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class CreateAppVersionResourceRequest
|
269
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
270
|
+
attr_accessor app_arn: ::String
|
271
|
+
attr_accessor app_components: ::Array[::String]
|
272
|
+
attr_accessor aws_account_id: ::String
|
273
|
+
attr_accessor aws_region: ::String
|
274
|
+
attr_accessor client_token: ::String
|
275
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
276
|
+
attr_accessor physical_resource_id: ::String
|
277
|
+
attr_accessor resource_name: ::String
|
278
|
+
attr_accessor resource_type: ::String
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class CreateAppVersionResourceResponse
|
283
|
+
attr_accessor app_arn: ::String
|
284
|
+
attr_accessor app_version: ::String
|
285
|
+
attr_accessor physical_resource: Types::PhysicalResource
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class CreateRecommendationTemplateRequest
|
290
|
+
attr_accessor assessment_arn: ::String
|
291
|
+
attr_accessor bucket_name: ::String
|
292
|
+
attr_accessor client_token: ::String
|
293
|
+
attr_accessor format: ("CfnYaml" | "CfnJson")
|
294
|
+
attr_accessor name: ::String
|
295
|
+
attr_accessor recommendation_ids: ::Array[::String]
|
296
|
+
attr_accessor recommendation_types: ::Array[("Alarm" | "Sop" | "Test")]
|
297
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
298
|
+
SENSITIVE: [:tags]
|
299
|
+
end
|
300
|
+
|
301
|
+
class CreateRecommendationTemplateResponse
|
302
|
+
attr_accessor recommendation_template: Types::RecommendationTemplate
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class CreateResiliencyPolicyRequest
|
307
|
+
attr_accessor client_token: ::String
|
308
|
+
attr_accessor data_location_constraint: ("AnyLocation" | "SameContinent" | "SameCountry")
|
309
|
+
attr_accessor policy: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::FailurePolicy]
|
310
|
+
attr_accessor policy_description: ::String
|
311
|
+
attr_accessor policy_name: ::String
|
312
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
313
|
+
attr_accessor tier: ("MissionCritical" | "Critical" | "Important" | "CoreServices" | "NonCritical" | "NotApplicable")
|
314
|
+
SENSITIVE: [:tags]
|
315
|
+
end
|
316
|
+
|
317
|
+
class CreateResiliencyPolicyResponse
|
318
|
+
attr_accessor policy: Types::ResiliencyPolicy
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class DeleteAppAssessmentRequest
|
323
|
+
attr_accessor assessment_arn: ::String
|
324
|
+
attr_accessor client_token: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class DeleteAppAssessmentResponse
|
329
|
+
attr_accessor assessment_arn: ::String
|
330
|
+
attr_accessor assessment_status: ("Pending" | "InProgress" | "Failed" | "Success")
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class DeleteAppInputSourceRequest
|
335
|
+
attr_accessor app_arn: ::String
|
336
|
+
attr_accessor client_token: ::String
|
337
|
+
attr_accessor eks_source_cluster_namespace: Types::EksSourceClusterNamespace
|
338
|
+
attr_accessor source_arn: ::String
|
339
|
+
attr_accessor terraform_source: Types::TerraformSource
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class DeleteAppInputSourceResponse
|
344
|
+
attr_accessor app_arn: ::String
|
345
|
+
attr_accessor app_input_source: Types::AppInputSource
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DeleteAppRequest
|
350
|
+
attr_accessor app_arn: ::String
|
351
|
+
attr_accessor client_token: ::String
|
352
|
+
attr_accessor force_delete: bool
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class DeleteAppResponse
|
357
|
+
attr_accessor app_arn: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeleteAppVersionAppComponentRequest
|
362
|
+
attr_accessor app_arn: ::String
|
363
|
+
attr_accessor client_token: ::String
|
364
|
+
attr_accessor id: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class DeleteAppVersionAppComponentResponse
|
369
|
+
attr_accessor app_arn: ::String
|
370
|
+
attr_accessor app_component: Types::AppComponent
|
371
|
+
attr_accessor app_version: ::String
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class DeleteAppVersionResourceRequest
|
376
|
+
attr_accessor app_arn: ::String
|
377
|
+
attr_accessor aws_account_id: ::String
|
378
|
+
attr_accessor aws_region: ::String
|
379
|
+
attr_accessor client_token: ::String
|
380
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
381
|
+
attr_accessor physical_resource_id: ::String
|
382
|
+
attr_accessor resource_name: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DeleteAppVersionResourceResponse
|
387
|
+
attr_accessor app_arn: ::String
|
388
|
+
attr_accessor app_version: ::String
|
389
|
+
attr_accessor physical_resource: Types::PhysicalResource
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class DeleteRecommendationTemplateRequest
|
394
|
+
attr_accessor client_token: ::String
|
395
|
+
attr_accessor recommendation_template_arn: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class DeleteRecommendationTemplateResponse
|
400
|
+
attr_accessor recommendation_template_arn: ::String
|
401
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class DeleteResiliencyPolicyRequest
|
406
|
+
attr_accessor client_token: ::String
|
407
|
+
attr_accessor policy_arn: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class DeleteResiliencyPolicyResponse
|
412
|
+
attr_accessor policy_arn: ::String
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class DescribeAppAssessmentRequest
|
417
|
+
attr_accessor assessment_arn: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DescribeAppAssessmentResponse
|
422
|
+
attr_accessor assessment: Types::AppAssessment
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class DescribeAppRequest
|
427
|
+
attr_accessor app_arn: ::String
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class DescribeAppResponse
|
432
|
+
attr_accessor app: Types::App
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class DescribeAppVersionAppComponentRequest
|
437
|
+
attr_accessor app_arn: ::String
|
438
|
+
attr_accessor app_version: ::String
|
439
|
+
attr_accessor id: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class DescribeAppVersionAppComponentResponse
|
444
|
+
attr_accessor app_arn: ::String
|
445
|
+
attr_accessor app_component: Types::AppComponent
|
446
|
+
attr_accessor app_version: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class DescribeAppVersionRequest
|
451
|
+
attr_accessor app_arn: ::String
|
452
|
+
attr_accessor app_version: ::String
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class DescribeAppVersionResourceRequest
|
457
|
+
attr_accessor app_arn: ::String
|
458
|
+
attr_accessor app_version: ::String
|
459
|
+
attr_accessor aws_account_id: ::String
|
460
|
+
attr_accessor aws_region: ::String
|
461
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
462
|
+
attr_accessor physical_resource_id: ::String
|
463
|
+
attr_accessor resource_name: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class DescribeAppVersionResourceResponse
|
468
|
+
attr_accessor app_arn: ::String
|
469
|
+
attr_accessor app_version: ::String
|
470
|
+
attr_accessor physical_resource: Types::PhysicalResource
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class DescribeAppVersionResourcesResolutionStatusRequest
|
475
|
+
attr_accessor app_arn: ::String
|
476
|
+
attr_accessor app_version: ::String
|
477
|
+
attr_accessor resolution_id: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class DescribeAppVersionResourcesResolutionStatusResponse
|
482
|
+
attr_accessor app_arn: ::String
|
483
|
+
attr_accessor app_version: ::String
|
484
|
+
attr_accessor error_message: ::String
|
485
|
+
attr_accessor resolution_id: ::String
|
486
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class DescribeAppVersionResponse
|
491
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
492
|
+
attr_accessor app_arn: ::String
|
493
|
+
attr_accessor app_version: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class DescribeAppVersionTemplateRequest
|
498
|
+
attr_accessor app_arn: ::String
|
499
|
+
attr_accessor app_version: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class DescribeAppVersionTemplateResponse
|
504
|
+
attr_accessor app_arn: ::String
|
505
|
+
attr_accessor app_template_body: ::String
|
506
|
+
attr_accessor app_version: ::String
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class DescribeDraftAppVersionResourcesImportStatusRequest
|
511
|
+
attr_accessor app_arn: ::String
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class DescribeDraftAppVersionResourcesImportStatusResponse
|
516
|
+
attr_accessor app_arn: ::String
|
517
|
+
attr_accessor app_version: ::String
|
518
|
+
attr_accessor error_message: ::String
|
519
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
520
|
+
attr_accessor status_change_time: ::Time
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class DescribeResiliencyPolicyRequest
|
525
|
+
attr_accessor policy_arn: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class DescribeResiliencyPolicyResponse
|
530
|
+
attr_accessor policy: Types::ResiliencyPolicy
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class DisruptionCompliance
|
535
|
+
attr_accessor achievable_rpo_in_secs: ::Integer
|
536
|
+
attr_accessor achievable_rto_in_secs: ::Integer
|
537
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet")
|
538
|
+
attr_accessor current_rpo_in_secs: ::Integer
|
539
|
+
attr_accessor current_rto_in_secs: ::Integer
|
540
|
+
attr_accessor message: ::String
|
541
|
+
attr_accessor rpo_description: ::String
|
542
|
+
attr_accessor rpo_reference_id: ::String
|
543
|
+
attr_accessor rto_description: ::String
|
544
|
+
attr_accessor rto_reference_id: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class EksSource
|
549
|
+
attr_accessor eks_cluster_arn: ::String
|
550
|
+
attr_accessor namespaces: ::Array[::String]
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class EksSourceClusterNamespace
|
555
|
+
attr_accessor eks_cluster_arn: ::String
|
556
|
+
attr_accessor namespace: ::String
|
557
|
+
SENSITIVE: []
|
558
|
+
end
|
559
|
+
|
560
|
+
class EventSubscription
|
561
|
+
attr_accessor event_type: ("ScheduledAssessmentFailure" | "DriftDetected")
|
562
|
+
attr_accessor name: ::String
|
563
|
+
attr_accessor sns_topic_arn: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class FailurePolicy
|
568
|
+
attr_accessor rpo_in_secs: ::Integer
|
569
|
+
attr_accessor rto_in_secs: ::Integer
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class ImportResourcesToDraftAppVersionRequest
|
574
|
+
attr_accessor app_arn: ::String
|
575
|
+
attr_accessor eks_sources: ::Array[Types::EksSource]
|
576
|
+
attr_accessor import_strategy: ("AddOnly" | "ReplaceAll")
|
577
|
+
attr_accessor source_arns: ::Array[::String]
|
578
|
+
attr_accessor terraform_sources: ::Array[Types::TerraformSource]
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class ImportResourcesToDraftAppVersionResponse
|
583
|
+
attr_accessor app_arn: ::String
|
584
|
+
attr_accessor app_version: ::String
|
585
|
+
attr_accessor eks_sources: ::Array[Types::EksSource]
|
586
|
+
attr_accessor source_arns: ::Array[::String]
|
587
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
588
|
+
attr_accessor terraform_sources: ::Array[Types::TerraformSource]
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class InternalServerException
|
593
|
+
attr_accessor message: ::String
|
594
|
+
SENSITIVE: []
|
595
|
+
end
|
596
|
+
|
597
|
+
class ListAlarmRecommendationsRequest
|
598
|
+
attr_accessor assessment_arn: ::String
|
599
|
+
attr_accessor max_results: ::Integer
|
600
|
+
attr_accessor next_token: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ListAlarmRecommendationsResponse
|
605
|
+
attr_accessor alarm_recommendations: ::Array[Types::AlarmRecommendation]
|
606
|
+
attr_accessor next_token: ::String
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class ListAppAssessmentComplianceDriftsRequest
|
611
|
+
attr_accessor assessment_arn: ::String
|
612
|
+
attr_accessor max_results: ::Integer
|
613
|
+
attr_accessor next_token: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class ListAppAssessmentComplianceDriftsResponse
|
618
|
+
attr_accessor compliance_drifts: ::Array[Types::ComplianceDrift]
|
619
|
+
attr_accessor next_token: ::String
|
620
|
+
SENSITIVE: []
|
621
|
+
end
|
622
|
+
|
623
|
+
class ListAppAssessmentsRequest
|
624
|
+
attr_accessor app_arn: ::String
|
625
|
+
attr_accessor assessment_name: ::String
|
626
|
+
attr_accessor assessment_status: ::Array[("Pending" | "InProgress" | "Failed" | "Success")]
|
627
|
+
attr_accessor compliance_status: ("PolicyBreached" | "PolicyMet")
|
628
|
+
attr_accessor invoker: ("User" | "System")
|
629
|
+
attr_accessor max_results: ::Integer
|
630
|
+
attr_accessor next_token: ::String
|
631
|
+
attr_accessor reverse_order: bool
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class ListAppAssessmentsResponse
|
636
|
+
attr_accessor assessment_summaries: ::Array[Types::AppAssessmentSummary]
|
637
|
+
attr_accessor next_token: ::String
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class ListAppComponentCompliancesRequest
|
642
|
+
attr_accessor assessment_arn: ::String
|
643
|
+
attr_accessor max_results: ::Integer
|
644
|
+
attr_accessor next_token: ::String
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class ListAppComponentCompliancesResponse
|
649
|
+
attr_accessor component_compliances: ::Array[Types::AppComponentCompliance]
|
650
|
+
attr_accessor next_token: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class ListAppComponentRecommendationsRequest
|
655
|
+
attr_accessor assessment_arn: ::String
|
656
|
+
attr_accessor max_results: ::Integer
|
657
|
+
attr_accessor next_token: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class ListAppComponentRecommendationsResponse
|
662
|
+
attr_accessor component_recommendations: ::Array[Types::ComponentRecommendation]
|
663
|
+
attr_accessor next_token: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class ListAppInputSourcesRequest
|
668
|
+
attr_accessor app_arn: ::String
|
669
|
+
attr_accessor app_version: ::String
|
670
|
+
attr_accessor max_results: ::Integer
|
671
|
+
attr_accessor next_token: ::String
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class ListAppInputSourcesResponse
|
676
|
+
attr_accessor app_input_sources: ::Array[Types::AppInputSource]
|
677
|
+
attr_accessor next_token: ::String
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class ListAppVersionAppComponentsRequest
|
682
|
+
attr_accessor app_arn: ::String
|
683
|
+
attr_accessor app_version: ::String
|
684
|
+
attr_accessor max_results: ::Integer
|
685
|
+
attr_accessor next_token: ::String
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class ListAppVersionAppComponentsResponse
|
690
|
+
attr_accessor app_arn: ::String
|
691
|
+
attr_accessor app_components: ::Array[Types::AppComponent]
|
692
|
+
attr_accessor app_version: ::String
|
693
|
+
attr_accessor next_token: ::String
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class ListAppVersionResourceMappingsRequest
|
698
|
+
attr_accessor app_arn: ::String
|
699
|
+
attr_accessor app_version: ::String
|
700
|
+
attr_accessor max_results: ::Integer
|
701
|
+
attr_accessor next_token: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class ListAppVersionResourceMappingsResponse
|
706
|
+
attr_accessor next_token: ::String
|
707
|
+
attr_accessor resource_mappings: ::Array[Types::ResourceMapping]
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class ListAppVersionResourcesRequest
|
712
|
+
attr_accessor app_arn: ::String
|
713
|
+
attr_accessor app_version: ::String
|
714
|
+
attr_accessor max_results: ::Integer
|
715
|
+
attr_accessor next_token: ::String
|
716
|
+
attr_accessor resolution_id: ::String
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class ListAppVersionResourcesResponse
|
721
|
+
attr_accessor next_token: ::String
|
722
|
+
attr_accessor physical_resources: ::Array[Types::PhysicalResource]
|
723
|
+
attr_accessor resolution_id: ::String
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class ListAppVersionsRequest
|
728
|
+
attr_accessor app_arn: ::String
|
729
|
+
attr_accessor end_time: ::Time
|
730
|
+
attr_accessor max_results: ::Integer
|
731
|
+
attr_accessor next_token: ::String
|
732
|
+
attr_accessor start_time: ::Time
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class ListAppVersionsResponse
|
737
|
+
attr_accessor app_versions: ::Array[Types::AppVersionSummary]
|
738
|
+
attr_accessor next_token: ::String
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class ListAppsRequest
|
743
|
+
attr_accessor app_arn: ::String
|
744
|
+
attr_accessor from_last_assessment_time: ::Time
|
745
|
+
attr_accessor max_results: ::Integer
|
746
|
+
attr_accessor name: ::String
|
747
|
+
attr_accessor next_token: ::String
|
748
|
+
attr_accessor reverse_order: bool
|
749
|
+
attr_accessor to_last_assessment_time: ::Time
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class ListAppsResponse
|
754
|
+
attr_accessor app_summaries: ::Array[Types::AppSummary]
|
755
|
+
attr_accessor next_token: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class ListRecommendationTemplatesRequest
|
760
|
+
attr_accessor assessment_arn: ::String
|
761
|
+
attr_accessor max_results: ::Integer
|
762
|
+
attr_accessor name: ::String
|
763
|
+
attr_accessor next_token: ::String
|
764
|
+
attr_accessor recommendation_template_arn: ::String
|
765
|
+
attr_accessor reverse_order: bool
|
766
|
+
attr_accessor status: ::Array[("Pending" | "InProgress" | "Failed" | "Success")]
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class ListRecommendationTemplatesResponse
|
771
|
+
attr_accessor next_token: ::String
|
772
|
+
attr_accessor recommendation_templates: ::Array[Types::RecommendationTemplate]
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class ListResiliencyPoliciesRequest
|
777
|
+
attr_accessor max_results: ::Integer
|
778
|
+
attr_accessor next_token: ::String
|
779
|
+
attr_accessor policy_name: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class ListResiliencyPoliciesResponse
|
784
|
+
attr_accessor next_token: ::String
|
785
|
+
attr_accessor resiliency_policies: ::Array[Types::ResiliencyPolicy]
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class ListSopRecommendationsRequest
|
790
|
+
attr_accessor assessment_arn: ::String
|
791
|
+
attr_accessor max_results: ::Integer
|
792
|
+
attr_accessor next_token: ::String
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class ListSopRecommendationsResponse
|
797
|
+
attr_accessor next_token: ::String
|
798
|
+
attr_accessor sop_recommendations: ::Array[Types::SopRecommendation]
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListSuggestedResiliencyPoliciesRequest
|
803
|
+
attr_accessor max_results: ::Integer
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class ListSuggestedResiliencyPoliciesResponse
|
809
|
+
attr_accessor next_token: ::String
|
810
|
+
attr_accessor resiliency_policies: ::Array[Types::ResiliencyPolicy]
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class ListTagsForResourceRequest
|
815
|
+
attr_accessor resource_arn: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ListTagsForResourceResponse
|
820
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
821
|
+
SENSITIVE: [:tags]
|
822
|
+
end
|
823
|
+
|
824
|
+
class ListTestRecommendationsRequest
|
825
|
+
attr_accessor assessment_arn: ::String
|
826
|
+
attr_accessor max_results: ::Integer
|
827
|
+
attr_accessor next_token: ::String
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class ListTestRecommendationsResponse
|
832
|
+
attr_accessor next_token: ::String
|
833
|
+
attr_accessor test_recommendations: ::Array[Types::TestRecommendation]
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class ListUnsupportedAppVersionResourcesRequest
|
838
|
+
attr_accessor app_arn: ::String
|
839
|
+
attr_accessor app_version: ::String
|
840
|
+
attr_accessor max_results: ::Integer
|
841
|
+
attr_accessor next_token: ::String
|
842
|
+
attr_accessor resolution_id: ::String
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class ListUnsupportedAppVersionResourcesResponse
|
847
|
+
attr_accessor next_token: ::String
|
848
|
+
attr_accessor resolution_id: ::String
|
849
|
+
attr_accessor unsupported_resources: ::Array[Types::UnsupportedResource]
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class LogicalResourceId
|
854
|
+
attr_accessor eks_source_name: ::String
|
855
|
+
attr_accessor identifier: ::String
|
856
|
+
attr_accessor logical_stack_name: ::String
|
857
|
+
attr_accessor resource_group_name: ::String
|
858
|
+
attr_accessor terraform_source_name: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class PermissionModel
|
863
|
+
attr_accessor cross_account_role_arns: ::Array[::String]
|
864
|
+
attr_accessor invoker_role_name: ::String
|
865
|
+
attr_accessor type: ("LegacyIAMUser" | "RoleBased")
|
866
|
+
SENSITIVE: []
|
867
|
+
end
|
868
|
+
|
869
|
+
class PhysicalResource
|
870
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
871
|
+
attr_accessor app_components: ::Array[Types::AppComponent]
|
872
|
+
attr_accessor excluded: bool
|
873
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
874
|
+
attr_accessor parent_resource_name: ::String
|
875
|
+
attr_accessor physical_resource_id: Types::PhysicalResourceId
|
876
|
+
attr_accessor resource_name: ::String
|
877
|
+
attr_accessor resource_type: ::String
|
878
|
+
attr_accessor source_type: ("AppTemplate" | "Discovered")
|
879
|
+
SENSITIVE: []
|
880
|
+
end
|
881
|
+
|
882
|
+
class PhysicalResourceId
|
883
|
+
attr_accessor aws_account_id: ::String
|
884
|
+
attr_accessor aws_region: ::String
|
885
|
+
attr_accessor identifier: ::String
|
886
|
+
attr_accessor type: ("Arn" | "Native")
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class PublishAppVersionRequest
|
891
|
+
attr_accessor app_arn: ::String
|
892
|
+
attr_accessor version_name: ::String
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
896
|
+
class PublishAppVersionResponse
|
897
|
+
attr_accessor app_arn: ::String
|
898
|
+
attr_accessor app_version: ::String
|
899
|
+
attr_accessor identifier: ::Integer
|
900
|
+
attr_accessor version_name: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class PutDraftAppVersionTemplateRequest
|
905
|
+
attr_accessor app_arn: ::String
|
906
|
+
attr_accessor app_template_body: ::String
|
907
|
+
SENSITIVE: []
|
908
|
+
end
|
909
|
+
|
910
|
+
class PutDraftAppVersionTemplateResponse
|
911
|
+
attr_accessor app_arn: ::String
|
912
|
+
attr_accessor app_version: ::String
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class RecommendationDisruptionCompliance
|
917
|
+
attr_accessor expected_compliance_status: ("PolicyBreached" | "PolicyMet")
|
918
|
+
attr_accessor expected_rpo_description: ::String
|
919
|
+
attr_accessor expected_rpo_in_secs: ::Integer
|
920
|
+
attr_accessor expected_rto_description: ::String
|
921
|
+
attr_accessor expected_rto_in_secs: ::Integer
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class RecommendationItem
|
926
|
+
attr_accessor already_implemented: bool
|
927
|
+
attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
|
928
|
+
attr_accessor excluded: bool
|
929
|
+
attr_accessor resource_id: ::String
|
930
|
+
attr_accessor target_account_id: ::String
|
931
|
+
attr_accessor target_region: ::String
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class RecommendationTemplate
|
936
|
+
attr_accessor app_arn: ::String
|
937
|
+
attr_accessor assessment_arn: ::String
|
938
|
+
attr_accessor end_time: ::Time
|
939
|
+
attr_accessor format: ("CfnYaml" | "CfnJson")
|
940
|
+
attr_accessor message: ::String
|
941
|
+
attr_accessor name: ::String
|
942
|
+
attr_accessor needs_replacements: bool
|
943
|
+
attr_accessor recommendation_ids: ::Array[::String]
|
944
|
+
attr_accessor recommendation_template_arn: ::String
|
945
|
+
attr_accessor recommendation_types: ::Array[("Alarm" | "Sop" | "Test")]
|
946
|
+
attr_accessor start_time: ::Time
|
947
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
948
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
949
|
+
attr_accessor templates_location: Types::S3Location
|
950
|
+
SENSITIVE: [:tags]
|
951
|
+
end
|
952
|
+
|
953
|
+
class RemoveDraftAppVersionResourceMappingsRequest
|
954
|
+
attr_accessor app_arn: ::String
|
955
|
+
attr_accessor app_registry_app_names: ::Array[::String]
|
956
|
+
attr_accessor eks_source_names: ::Array[::String]
|
957
|
+
attr_accessor logical_stack_names: ::Array[::String]
|
958
|
+
attr_accessor resource_group_names: ::Array[::String]
|
959
|
+
attr_accessor resource_names: ::Array[::String]
|
960
|
+
attr_accessor terraform_source_names: ::Array[::String]
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class RemoveDraftAppVersionResourceMappingsResponse
|
965
|
+
attr_accessor app_arn: ::String
|
966
|
+
attr_accessor app_version: ::String
|
967
|
+
SENSITIVE: []
|
968
|
+
end
|
969
|
+
|
970
|
+
class ResiliencyPolicy
|
971
|
+
attr_accessor creation_time: ::Time
|
972
|
+
attr_accessor data_location_constraint: ("AnyLocation" | "SameContinent" | "SameCountry")
|
973
|
+
attr_accessor estimated_cost_tier: ("L1" | "L2" | "L3" | "L4")
|
974
|
+
attr_accessor policy: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::FailurePolicy]
|
975
|
+
attr_accessor policy_arn: ::String
|
976
|
+
attr_accessor policy_description: ::String
|
977
|
+
attr_accessor policy_name: ::String
|
978
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
979
|
+
attr_accessor tier: ("MissionCritical" | "Critical" | "Important" | "CoreServices" | "NonCritical" | "NotApplicable")
|
980
|
+
SENSITIVE: [:tags]
|
981
|
+
end
|
982
|
+
|
983
|
+
class ResiliencyScore
|
984
|
+
attr_accessor component_score: ::Hash[("Compliance" | "Test" | "Alarm" | "Sop"), Types::ScoringComponentResiliencyScore]
|
985
|
+
attr_accessor disruption_score: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), ::Float]
|
986
|
+
attr_accessor score: ::Float
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class ResolveAppVersionResourcesRequest
|
991
|
+
attr_accessor app_arn: ::String
|
992
|
+
attr_accessor app_version: ::String
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class ResolveAppVersionResourcesResponse
|
997
|
+
attr_accessor app_arn: ::String
|
998
|
+
attr_accessor app_version: ::String
|
999
|
+
attr_accessor resolution_id: ::String
|
1000
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Success")
|
1001
|
+
SENSITIVE: []
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class ResourceError
|
1005
|
+
attr_accessor logical_resource_id: ::String
|
1006
|
+
attr_accessor physical_resource_id: ::String
|
1007
|
+
attr_accessor reason: ::String
|
1008
|
+
SENSITIVE: []
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
class ResourceErrorsDetails
|
1012
|
+
attr_accessor has_more_errors: bool
|
1013
|
+
attr_accessor resource_errors: ::Array[Types::ResourceError]
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class ResourceMapping
|
1018
|
+
attr_accessor app_registry_app_name: ::String
|
1019
|
+
attr_accessor eks_source_name: ::String
|
1020
|
+
attr_accessor logical_stack_name: ::String
|
1021
|
+
attr_accessor mapping_type: ("CfnStack" | "Resource" | "AppRegistryApp" | "ResourceGroup" | "Terraform" | "EKS")
|
1022
|
+
attr_accessor physical_resource_id: Types::PhysicalResourceId
|
1023
|
+
attr_accessor resource_group_name: ::String
|
1024
|
+
attr_accessor resource_name: ::String
|
1025
|
+
attr_accessor terraform_source_name: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class ResourceNotFoundException
|
1030
|
+
attr_accessor message: ::String
|
1031
|
+
attr_accessor resource_id: ::String
|
1032
|
+
attr_accessor resource_type: ::String
|
1033
|
+
SENSITIVE: []
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
class S3Location
|
1037
|
+
attr_accessor bucket: ::String
|
1038
|
+
attr_accessor prefix: ::String
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class ScoringComponentResiliencyScore
|
1043
|
+
attr_accessor excluded_count: ::Integer
|
1044
|
+
attr_accessor outstanding_count: ::Integer
|
1045
|
+
attr_accessor possible_score: ::Float
|
1046
|
+
attr_accessor score: ::Float
|
1047
|
+
SENSITIVE: []
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class ServiceQuotaExceededException
|
1051
|
+
attr_accessor message: ::String
|
1052
|
+
SENSITIVE: []
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class SopRecommendation
|
1056
|
+
attr_accessor app_component_name: ::String
|
1057
|
+
attr_accessor description: ::String
|
1058
|
+
attr_accessor items: ::Array[Types::RecommendationItem]
|
1059
|
+
attr_accessor name: ::String
|
1060
|
+
attr_accessor prerequisite: ::String
|
1061
|
+
attr_accessor recommendation_id: ::String
|
1062
|
+
attr_accessor recommendation_status: ("Implemented" | "Inactive" | "NotImplemented" | "Excluded")
|
1063
|
+
attr_accessor reference_id: ::String
|
1064
|
+
attr_accessor service_type: ("SSM")
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class StartAppAssessmentRequest
|
1069
|
+
attr_accessor app_arn: ::String
|
1070
|
+
attr_accessor app_version: ::String
|
1071
|
+
attr_accessor assessment_name: ::String
|
1072
|
+
attr_accessor client_token: ::String
|
1073
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1074
|
+
SENSITIVE: [:tags]
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class StartAppAssessmentResponse
|
1078
|
+
attr_accessor assessment: Types::AppAssessment
|
1079
|
+
SENSITIVE: []
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class TagResourceRequest
|
1083
|
+
attr_accessor resource_arn: ::String
|
1084
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1085
|
+
SENSITIVE: [:tags]
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class TerraformSource
|
1092
|
+
attr_accessor s3_state_file_url: ::String
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class TestRecommendation
|
1097
|
+
attr_accessor app_component_name: ::String
|
1098
|
+
attr_accessor depends_on_alarms: ::Array[::String]
|
1099
|
+
attr_accessor description: ::String
|
1100
|
+
attr_accessor intent: ::String
|
1101
|
+
attr_accessor items: ::Array[Types::RecommendationItem]
|
1102
|
+
attr_accessor name: ::String
|
1103
|
+
attr_accessor prerequisite: ::String
|
1104
|
+
attr_accessor recommendation_id: ::String
|
1105
|
+
attr_accessor recommendation_status: ("Implemented" | "Inactive" | "NotImplemented" | "Excluded")
|
1106
|
+
attr_accessor reference_id: ::String
|
1107
|
+
attr_accessor risk: ("Small" | "Medium" | "High")
|
1108
|
+
attr_accessor type: ("Software" | "Hardware" | "AZ" | "Region")
|
1109
|
+
SENSITIVE: []
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
class ThrottlingException
|
1113
|
+
attr_accessor message: ::String
|
1114
|
+
attr_accessor retry_after_seconds: ::Integer
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class UnsupportedResource
|
1119
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
1120
|
+
attr_accessor physical_resource_id: Types::PhysicalResourceId
|
1121
|
+
attr_accessor resource_type: ::String
|
1122
|
+
attr_accessor unsupported_resource_status: ::String
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class UntagResourceRequest
|
1127
|
+
attr_accessor resource_arn: ::String
|
1128
|
+
attr_accessor tag_keys: ::Array[::String]
|
1129
|
+
SENSITIVE: [:tag_keys]
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class UpdateAppRequest
|
1136
|
+
attr_accessor app_arn: ::String
|
1137
|
+
attr_accessor assessment_schedule: ("Disabled" | "Daily")
|
1138
|
+
attr_accessor clear_resiliency_policy_arn: bool
|
1139
|
+
attr_accessor description: ::String
|
1140
|
+
attr_accessor event_subscriptions: ::Array[Types::EventSubscription]
|
1141
|
+
attr_accessor permission_model: Types::PermissionModel
|
1142
|
+
attr_accessor policy_arn: ::String
|
1143
|
+
SENSITIVE: []
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class UpdateAppResponse
|
1147
|
+
attr_accessor app: Types::App
|
1148
|
+
SENSITIVE: []
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
class UpdateAppVersionAppComponentRequest
|
1152
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
1153
|
+
attr_accessor app_arn: ::String
|
1154
|
+
attr_accessor id: ::String
|
1155
|
+
attr_accessor name: ::String
|
1156
|
+
attr_accessor type: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class UpdateAppVersionAppComponentResponse
|
1161
|
+
attr_accessor app_arn: ::String
|
1162
|
+
attr_accessor app_component: Types::AppComponent
|
1163
|
+
attr_accessor app_version: ::String
|
1164
|
+
SENSITIVE: []
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class UpdateAppVersionRequest
|
1168
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
1169
|
+
attr_accessor app_arn: ::String
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class UpdateAppVersionResourceRequest
|
1174
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
1175
|
+
attr_accessor app_arn: ::String
|
1176
|
+
attr_accessor app_components: ::Array[::String]
|
1177
|
+
attr_accessor aws_account_id: ::String
|
1178
|
+
attr_accessor aws_region: ::String
|
1179
|
+
attr_accessor excluded: bool
|
1180
|
+
attr_accessor logical_resource_id: Types::LogicalResourceId
|
1181
|
+
attr_accessor physical_resource_id: ::String
|
1182
|
+
attr_accessor resource_name: ::String
|
1183
|
+
attr_accessor resource_type: ::String
|
1184
|
+
SENSITIVE: []
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
class UpdateAppVersionResourceResponse
|
1188
|
+
attr_accessor app_arn: ::String
|
1189
|
+
attr_accessor app_version: ::String
|
1190
|
+
attr_accessor physical_resource: Types::PhysicalResource
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class UpdateAppVersionResponse
|
1195
|
+
attr_accessor additional_info: ::Hash[::String, ::Array[::String]]
|
1196
|
+
attr_accessor app_arn: ::String
|
1197
|
+
attr_accessor app_version: ::String
|
1198
|
+
SENSITIVE: []
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
class UpdateRecommendationStatusItem
|
1202
|
+
attr_accessor resource_id: ::String
|
1203
|
+
attr_accessor target_account_id: ::String
|
1204
|
+
attr_accessor target_region: ::String
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class UpdateRecommendationStatusRequestEntry
|
1209
|
+
attr_accessor entry_id: ::String
|
1210
|
+
attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
|
1211
|
+
attr_accessor excluded: bool
|
1212
|
+
attr_accessor item: Types::UpdateRecommendationStatusItem
|
1213
|
+
attr_accessor reference_id: ::String
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class UpdateResiliencyPolicyRequest
|
1218
|
+
attr_accessor data_location_constraint: ("AnyLocation" | "SameContinent" | "SameCountry")
|
1219
|
+
attr_accessor policy: ::Hash[("Software" | "Hardware" | "AZ" | "Region"), Types::FailurePolicy]
|
1220
|
+
attr_accessor policy_arn: ::String
|
1221
|
+
attr_accessor policy_description: ::String
|
1222
|
+
attr_accessor policy_name: ::String
|
1223
|
+
attr_accessor tier: ("MissionCritical" | "Critical" | "Important" | "CoreServices" | "NonCritical" | "NotApplicable")
|
1224
|
+
SENSITIVE: []
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class UpdateResiliencyPolicyResponse
|
1228
|
+
attr_accessor policy: Types::ResiliencyPolicy
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class ValidationException
|
1233
|
+
attr_accessor message: ::String
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
end
|