aws-sdk-cloudformation 1.41.0 → 1.131.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,2104 @@
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::CloudFormation
9
+ module Types
10
+
11
+ class AccountGateResult
12
+ attr_accessor status: ("SUCCEEDED" | "FAILED" | "SKIPPED")
13
+ attr_accessor status_reason: ::String
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class AccountLimit
18
+ attr_accessor name: ::String
19
+ attr_accessor value: ::Integer
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class ActivateOrganizationsAccessInput < Aws::EmptyStructure
24
+ end
25
+
26
+ class ActivateOrganizationsAccessOutput < Aws::EmptyStructure
27
+ end
28
+
29
+ class ActivateTypeInput
30
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
31
+ attr_accessor public_type_arn: ::String
32
+ attr_accessor publisher_id: ::String
33
+ attr_accessor type_name: ::String
34
+ attr_accessor type_name_alias: ::String
35
+ attr_accessor auto_update: bool
36
+ attr_accessor logging_config: Types::LoggingConfig
37
+ attr_accessor execution_role_arn: ::String
38
+ attr_accessor version_bump: ("MAJOR" | "MINOR")
39
+ attr_accessor major_version: ::Integer
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class ActivateTypeOutput
44
+ attr_accessor arn: ::String
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class AlreadyExistsException < Aws::EmptyStructure
49
+ end
50
+
51
+ class AutoDeployment
52
+ attr_accessor enabled: bool
53
+ attr_accessor retain_stacks_on_account_removal: bool
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class BatchDescribeTypeConfigurationsError
58
+ attr_accessor error_code: ::String
59
+ attr_accessor error_message: ::String
60
+ attr_accessor type_configuration_identifier: Types::TypeConfigurationIdentifier
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class BatchDescribeTypeConfigurationsInput
65
+ attr_accessor type_configuration_identifiers: ::Array[Types::TypeConfigurationIdentifier]
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class BatchDescribeTypeConfigurationsOutput
70
+ attr_accessor errors: ::Array[Types::BatchDescribeTypeConfigurationsError]
71
+ attr_accessor unprocessed_type_configurations: ::Array[Types::TypeConfigurationIdentifier]
72
+ attr_accessor type_configurations: ::Array[Types::TypeConfigurationDetails]
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CFNRegistryException
77
+ attr_accessor message: ::String
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class CancelUpdateStackInput
82
+ attr_accessor stack_name: ::String
83
+ attr_accessor client_request_token: ::String
84
+ SENSITIVE: []
85
+ end
86
+
87
+ class Change
88
+ attr_accessor type: ("Resource")
89
+ attr_accessor hook_invocation_count: ::Integer
90
+ attr_accessor resource_change: Types::ResourceChange
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class ChangeSetHook
95
+ attr_accessor invocation_point: ("PRE_PROVISION")
96
+ attr_accessor failure_mode: ("FAIL" | "WARN")
97
+ attr_accessor type_name: ::String
98
+ attr_accessor type_version_id: ::String
99
+ attr_accessor type_configuration_version_id: ::String
100
+ attr_accessor target_details: Types::ChangeSetHookTargetDetails
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class ChangeSetHookResourceTargetDetails
105
+ attr_accessor logical_resource_id: ::String
106
+ attr_accessor resource_type: ::String
107
+ attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class ChangeSetHookTargetDetails
112
+ attr_accessor target_type: ("RESOURCE")
113
+ attr_accessor resource_target_details: Types::ChangeSetHookResourceTargetDetails
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class ChangeSetNotFoundException < Aws::EmptyStructure
118
+ end
119
+
120
+ class ChangeSetSummary
121
+ attr_accessor stack_id: ::String
122
+ attr_accessor stack_name: ::String
123
+ attr_accessor change_set_id: ::String
124
+ attr_accessor change_set_name: ::String
125
+ attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
126
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
127
+ attr_accessor status_reason: ::String
128
+ attr_accessor creation_time: ::Time
129
+ attr_accessor description: ::String
130
+ attr_accessor include_nested_stacks: bool
131
+ attr_accessor parent_change_set_id: ::String
132
+ attr_accessor root_change_set_id: ::String
133
+ attr_accessor import_existing_resources: bool
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class ConcurrentResourcesLimitExceededException < Aws::EmptyStructure
138
+ end
139
+
140
+ class ContinueUpdateRollbackInput
141
+ attr_accessor stack_name: ::String
142
+ attr_accessor role_arn: ::String
143
+ attr_accessor resources_to_skip: ::Array[::String]
144
+ attr_accessor client_request_token: ::String
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class ContinueUpdateRollbackOutput < Aws::EmptyStructure
149
+ end
150
+
151
+ class CreateChangeSetInput
152
+ attr_accessor stack_name: ::String
153
+ attr_accessor template_body: ::String
154
+ attr_accessor template_url: ::String
155
+ attr_accessor use_previous_template: bool
156
+ attr_accessor parameters: ::Array[Types::Parameter]
157
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
158
+ attr_accessor resource_types: ::Array[::String]
159
+ attr_accessor role_arn: ::String
160
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
161
+ attr_accessor notification_arns: ::Array[::String]
162
+ attr_accessor tags: ::Array[Types::Tag]
163
+ attr_accessor change_set_name: ::String
164
+ attr_accessor client_token: ::String
165
+ attr_accessor description: ::String
166
+ attr_accessor change_set_type: ("CREATE" | "UPDATE" | "IMPORT")
167
+ attr_accessor resources_to_import: ::Array[Types::ResourceToImport]
168
+ attr_accessor include_nested_stacks: bool
169
+ attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
170
+ attr_accessor import_existing_resources: bool
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class CreateChangeSetOutput
175
+ attr_accessor id: ::String
176
+ attr_accessor stack_id: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class CreateGeneratedTemplateInput
181
+ attr_accessor resources: ::Array[Types::ResourceDefinition]
182
+ attr_accessor generated_template_name: ::String
183
+ attr_accessor stack_name: ::String
184
+ attr_accessor template_configuration: Types::TemplateConfiguration
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class CreateGeneratedTemplateOutput
189
+ attr_accessor generated_template_id: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class CreateStackInput
194
+ attr_accessor stack_name: ::String
195
+ attr_accessor template_body: ::String
196
+ attr_accessor template_url: ::String
197
+ attr_accessor parameters: ::Array[Types::Parameter]
198
+ attr_accessor disable_rollback: bool
199
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
200
+ attr_accessor timeout_in_minutes: ::Integer
201
+ attr_accessor notification_arns: ::Array[::String]
202
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
203
+ attr_accessor resource_types: ::Array[::String]
204
+ attr_accessor role_arn: ::String
205
+ attr_accessor on_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
206
+ attr_accessor stack_policy_body: ::String
207
+ attr_accessor stack_policy_url: ::String
208
+ attr_accessor tags: ::Array[Types::Tag]
209
+ attr_accessor client_request_token: ::String
210
+ attr_accessor enable_termination_protection: bool
211
+ attr_accessor retain_except_on_create: bool
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class CreateStackInstancesInput
216
+ attr_accessor stack_set_name: ::String
217
+ attr_accessor accounts: ::Array[::String]
218
+ attr_accessor deployment_targets: Types::DeploymentTargets
219
+ attr_accessor regions: ::Array[::String]
220
+ attr_accessor parameter_overrides: ::Array[Types::Parameter]
221
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
222
+ attr_accessor operation_id: ::String
223
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class CreateStackInstancesOutput
228
+ attr_accessor operation_id: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class CreateStackOutput
233
+ attr_accessor stack_id: ::String
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class CreateStackRefactorInput
238
+ attr_accessor description: ::String
239
+ attr_accessor enable_stack_creation: bool
240
+ attr_accessor resource_mappings: ::Array[Types::ResourceMapping]
241
+ attr_accessor stack_definitions: ::Array[Types::StackDefinition]
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class CreateStackRefactorOutput
246
+ attr_accessor stack_refactor_id: ::String
247
+ SENSITIVE: []
248
+ end
249
+
250
+ class CreateStackSetInput
251
+ attr_accessor stack_set_name: ::String
252
+ attr_accessor description: ::String
253
+ attr_accessor template_body: ::String
254
+ attr_accessor template_url: ::String
255
+ attr_accessor stack_id: ::String
256
+ attr_accessor parameters: ::Array[Types::Parameter]
257
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
258
+ attr_accessor tags: ::Array[Types::Tag]
259
+ attr_accessor administration_role_arn: ::String
260
+ attr_accessor execution_role_name: ::String
261
+ attr_accessor permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED")
262
+ attr_accessor auto_deployment: Types::AutoDeployment
263
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
264
+ attr_accessor client_request_token: ::String
265
+ attr_accessor managed_execution: Types::ManagedExecution
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class CreateStackSetOutput
270
+ attr_accessor stack_set_id: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class CreatedButModifiedException < Aws::EmptyStructure
275
+ end
276
+
277
+ class DeactivateOrganizationsAccessInput < Aws::EmptyStructure
278
+ end
279
+
280
+ class DeactivateOrganizationsAccessOutput < Aws::EmptyStructure
281
+ end
282
+
283
+ class DeactivateTypeInput
284
+ attr_accessor type_name: ::String
285
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
286
+ attr_accessor arn: ::String
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class DeactivateTypeOutput < Aws::EmptyStructure
291
+ end
292
+
293
+ class DeleteChangeSetInput
294
+ attr_accessor change_set_name: ::String
295
+ attr_accessor stack_name: ::String
296
+ SENSITIVE: []
297
+ end
298
+
299
+ class DeleteChangeSetOutput < Aws::EmptyStructure
300
+ end
301
+
302
+ class DeleteGeneratedTemplateInput
303
+ attr_accessor generated_template_name: ::String
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class DeleteStackInput
308
+ attr_accessor stack_name: ::String
309
+ attr_accessor retain_resources: ::Array[::String]
310
+ attr_accessor role_arn: ::String
311
+ attr_accessor client_request_token: ::String
312
+ attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class DeleteStackInstancesInput
317
+ attr_accessor stack_set_name: ::String
318
+ attr_accessor accounts: ::Array[::String]
319
+ attr_accessor deployment_targets: Types::DeploymentTargets
320
+ attr_accessor regions: ::Array[::String]
321
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
322
+ attr_accessor retain_stacks: bool
323
+ attr_accessor operation_id: ::String
324
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class DeleteStackInstancesOutput
329
+ attr_accessor operation_id: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class DeleteStackSetInput
334
+ attr_accessor stack_set_name: ::String
335
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class DeleteStackSetOutput < Aws::EmptyStructure
340
+ end
341
+
342
+ class DeploymentTargets
343
+ attr_accessor accounts: ::Array[::String]
344
+ attr_accessor accounts_url: ::String
345
+ attr_accessor organizational_unit_ids: ::Array[::String]
346
+ attr_accessor account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")
347
+ SENSITIVE: []
348
+ end
349
+
350
+ class DeregisterTypeInput
351
+ attr_accessor arn: ::String
352
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
353
+ attr_accessor type_name: ::String
354
+ attr_accessor version_id: ::String
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class DeregisterTypeOutput < Aws::EmptyStructure
359
+ end
360
+
361
+ class DescribeAccountLimitsInput
362
+ attr_accessor next_token: ::String
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class DescribeAccountLimitsOutput
367
+ attr_accessor account_limits: ::Array[Types::AccountLimit]
368
+ attr_accessor next_token: ::String
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class DescribeChangeSetHooksInput
373
+ attr_accessor change_set_name: ::String
374
+ attr_accessor stack_name: ::String
375
+ attr_accessor next_token: ::String
376
+ attr_accessor logical_resource_id: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class DescribeChangeSetHooksOutput
381
+ attr_accessor change_set_id: ::String
382
+ attr_accessor change_set_name: ::String
383
+ attr_accessor hooks: ::Array[Types::ChangeSetHook]
384
+ attr_accessor status: ("PLANNING" | "PLANNED" | "UNAVAILABLE")
385
+ attr_accessor next_token: ::String
386
+ attr_accessor stack_id: ::String
387
+ attr_accessor stack_name: ::String
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class DescribeChangeSetInput
392
+ attr_accessor change_set_name: ::String
393
+ attr_accessor stack_name: ::String
394
+ attr_accessor next_token: ::String
395
+ attr_accessor include_property_values: bool
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class DescribeChangeSetOutput
400
+ attr_accessor change_set_name: ::String
401
+ attr_accessor change_set_id: ::String
402
+ attr_accessor stack_id: ::String
403
+ attr_accessor stack_name: ::String
404
+ attr_accessor description: ::String
405
+ attr_accessor parameters: ::Array[Types::Parameter]
406
+ attr_accessor creation_time: ::Time
407
+ attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
408
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
409
+ attr_accessor status_reason: ::String
410
+ attr_accessor notification_arns: ::Array[::String]
411
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
412
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
413
+ attr_accessor tags: ::Array[Types::Tag]
414
+ attr_accessor changes: ::Array[Types::Change]
415
+ attr_accessor next_token: ::String
416
+ attr_accessor include_nested_stacks: bool
417
+ attr_accessor parent_change_set_id: ::String
418
+ attr_accessor root_change_set_id: ::String
419
+ attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
420
+ attr_accessor import_existing_resources: bool
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class DescribeGeneratedTemplateInput
425
+ attr_accessor generated_template_name: ::String
426
+ SENSITIVE: []
427
+ end
428
+
429
+ class DescribeGeneratedTemplateOutput
430
+ attr_accessor generated_template_id: ::String
431
+ attr_accessor generated_template_name: ::String
432
+ attr_accessor resources: ::Array[Types::ResourceDetail]
433
+ attr_accessor status: ("CREATE_PENDING" | "UPDATE_PENDING" | "DELETE_PENDING" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "COMPLETE")
434
+ attr_accessor status_reason: ::String
435
+ attr_accessor creation_time: ::Time
436
+ attr_accessor last_updated_time: ::Time
437
+ attr_accessor progress: Types::TemplateProgress
438
+ attr_accessor stack_id: ::String
439
+ attr_accessor template_configuration: Types::TemplateConfiguration
440
+ attr_accessor total_warnings: ::Integer
441
+ SENSITIVE: []
442
+ end
443
+
444
+ class DescribeOrganizationsAccessInput
445
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class DescribeOrganizationsAccessOutput
450
+ attr_accessor status: ("ENABLED" | "DISABLED" | "DISABLED_PERMANENTLY")
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class DescribePublisherInput
455
+ attr_accessor publisher_id: ::String
456
+ SENSITIVE: []
457
+ end
458
+
459
+ class DescribePublisherOutput
460
+ attr_accessor publisher_id: ::String
461
+ attr_accessor publisher_status: ("VERIFIED" | "UNVERIFIED")
462
+ attr_accessor identity_provider: ("AWS_Marketplace" | "GitHub" | "Bitbucket")
463
+ attr_accessor publisher_profile: ::String
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class DescribeResourceScanInput
468
+ attr_accessor resource_scan_id: ::String
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class DescribeResourceScanOutput
473
+ attr_accessor resource_scan_id: ::String
474
+ attr_accessor status: ("IN_PROGRESS" | "FAILED" | "COMPLETE" | "EXPIRED")
475
+ attr_accessor status_reason: ::String
476
+ attr_accessor start_time: ::Time
477
+ attr_accessor end_time: ::Time
478
+ attr_accessor percentage_completed: ::Float
479
+ attr_accessor resource_types: ::Array[::String]
480
+ attr_accessor resources_scanned: ::Integer
481
+ attr_accessor resources_read: ::Integer
482
+ attr_accessor scan_filters: ::Array[Types::ScanFilter]
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class DescribeStackDriftDetectionStatusInput
487
+ attr_accessor stack_drift_detection_id: ::String
488
+ SENSITIVE: []
489
+ end
490
+
491
+ class DescribeStackDriftDetectionStatusOutput
492
+ attr_accessor stack_id: ::String
493
+ attr_accessor stack_drift_detection_id: ::String
494
+ attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
495
+ attr_accessor detection_status: ("DETECTION_IN_PROGRESS" | "DETECTION_FAILED" | "DETECTION_COMPLETE")
496
+ attr_accessor detection_status_reason: ::String
497
+ attr_accessor drifted_stack_resource_count: ::Integer
498
+ attr_accessor timestamp: ::Time
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class DescribeStackEventsInput
503
+ attr_accessor stack_name: ::String
504
+ attr_accessor next_token: ::String
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class DescribeStackEventsOutput
509
+ attr_accessor stack_events: ::Array[Types::StackEvent]
510
+ attr_accessor next_token: ::String
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class DescribeStackInstanceInput
515
+ attr_accessor stack_set_name: ::String
516
+ attr_accessor stack_instance_account: ::String
517
+ attr_accessor stack_instance_region: ::String
518
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
519
+ SENSITIVE: []
520
+ end
521
+
522
+ class DescribeStackInstanceOutput
523
+ attr_accessor stack_instance: Types::StackInstance
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class DescribeStackRefactorInput
528
+ attr_accessor stack_refactor_id: ::String
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class DescribeStackRefactorOutput
533
+ attr_accessor description: ::String
534
+ attr_accessor stack_refactor_id: ::String
535
+ attr_accessor stack_ids: ::Array[::String]
536
+ attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "OBSOLETE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
537
+ attr_accessor execution_status_reason: ::String
538
+ attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
539
+ attr_accessor status_reason: ::String
540
+ SENSITIVE: []
541
+ end
542
+
543
+ class DescribeStackResourceDriftsInput
544
+ attr_accessor stack_name: ::String
545
+ attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")]
546
+ attr_accessor next_token: ::String
547
+ attr_accessor max_results: ::Integer
548
+ SENSITIVE: []
549
+ end
550
+
551
+ class DescribeStackResourceDriftsOutput
552
+ attr_accessor stack_resource_drifts: ::Array[Types::StackResourceDrift]
553
+ attr_accessor next_token: ::String
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class DescribeStackResourceInput
558
+ attr_accessor stack_name: ::String
559
+ attr_accessor logical_resource_id: ::String
560
+ SENSITIVE: []
561
+ end
562
+
563
+ class DescribeStackResourceOutput
564
+ attr_accessor stack_resource_detail: Types::StackResourceDetail
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class DescribeStackResourcesInput
569
+ attr_accessor stack_name: ::String
570
+ attr_accessor logical_resource_id: ::String
571
+ attr_accessor physical_resource_id: ::String
572
+ SENSITIVE: []
573
+ end
574
+
575
+ class DescribeStackResourcesOutput
576
+ attr_accessor stack_resources: ::Array[Types::StackResource]
577
+ SENSITIVE: []
578
+ end
579
+
580
+ class DescribeStackSetInput
581
+ attr_accessor stack_set_name: ::String
582
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class DescribeStackSetOperationInput
587
+ attr_accessor stack_set_name: ::String
588
+ attr_accessor operation_id: ::String
589
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
590
+ SENSITIVE: []
591
+ end
592
+
593
+ class DescribeStackSetOperationOutput
594
+ attr_accessor stack_set_operation: Types::StackSetOperation
595
+ SENSITIVE: []
596
+ end
597
+
598
+ class DescribeStackSetOutput
599
+ attr_accessor stack_set: Types::StackSet
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class DescribeStacksInput
604
+ attr_accessor stack_name: ::String
605
+ attr_accessor next_token: ::String
606
+ SENSITIVE: []
607
+ end
608
+
609
+ class DescribeStacksOutput
610
+ attr_accessor stacks: ::Array[Types::Stack]
611
+ attr_accessor next_token: ::String
612
+ SENSITIVE: []
613
+ end
614
+
615
+ class DescribeTypeInput
616
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
617
+ attr_accessor type_name: ::String
618
+ attr_accessor arn: ::String
619
+ attr_accessor version_id: ::String
620
+ attr_accessor publisher_id: ::String
621
+ attr_accessor public_version_number: ::String
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class DescribeTypeOutput
626
+ attr_accessor arn: ::String
627
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
628
+ attr_accessor type_name: ::String
629
+ attr_accessor default_version_id: ::String
630
+ attr_accessor is_default_version: bool
631
+ attr_accessor type_tests_status: ("PASSED" | "FAILED" | "IN_PROGRESS" | "NOT_TESTED")
632
+ attr_accessor type_tests_status_description: ::String
633
+ attr_accessor description: ::String
634
+ attr_accessor schema: ::String
635
+ attr_accessor provisioning_type: ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE")
636
+ attr_accessor deprecated_status: ("LIVE" | "DEPRECATED")
637
+ attr_accessor logging_config: Types::LoggingConfig
638
+ attr_accessor required_activated_types: ::Array[Types::RequiredActivatedType]
639
+ attr_accessor execution_role_arn: ::String
640
+ attr_accessor visibility: ("PUBLIC" | "PRIVATE")
641
+ attr_accessor source_url: ::String
642
+ attr_accessor documentation_url: ::String
643
+ attr_accessor last_updated: ::Time
644
+ attr_accessor time_created: ::Time
645
+ attr_accessor configuration_schema: ::String
646
+ attr_accessor publisher_id: ::String
647
+ attr_accessor original_type_name: ::String
648
+ attr_accessor original_type_arn: ::String
649
+ attr_accessor public_version_number: ::String
650
+ attr_accessor latest_public_version: ::String
651
+ attr_accessor is_activated: bool
652
+ attr_accessor auto_update: bool
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class DescribeTypeRegistrationInput
657
+ attr_accessor registration_token: ::String
658
+ SENSITIVE: []
659
+ end
660
+
661
+ class DescribeTypeRegistrationOutput
662
+ attr_accessor progress_status: ("COMPLETE" | "IN_PROGRESS" | "FAILED")
663
+ attr_accessor description: ::String
664
+ attr_accessor type_arn: ::String
665
+ attr_accessor type_version_arn: ::String
666
+ SENSITIVE: []
667
+ end
668
+
669
+ class DetectStackDriftInput
670
+ attr_accessor stack_name: ::String
671
+ attr_accessor logical_resource_ids: ::Array[::String]
672
+ SENSITIVE: []
673
+ end
674
+
675
+ class DetectStackDriftOutput
676
+ attr_accessor stack_drift_detection_id: ::String
677
+ SENSITIVE: []
678
+ end
679
+
680
+ class DetectStackResourceDriftInput
681
+ attr_accessor stack_name: ::String
682
+ attr_accessor logical_resource_id: ::String
683
+ SENSITIVE: []
684
+ end
685
+
686
+ class DetectStackResourceDriftOutput
687
+ attr_accessor stack_resource_drift: Types::StackResourceDrift
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class DetectStackSetDriftInput
692
+ attr_accessor stack_set_name: ::String
693
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
694
+ attr_accessor operation_id: ::String
695
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
696
+ SENSITIVE: []
697
+ end
698
+
699
+ class DetectStackSetDriftOutput
700
+ attr_accessor operation_id: ::String
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class EstimateTemplateCostInput
705
+ attr_accessor template_body: ::String
706
+ attr_accessor template_url: ::String
707
+ attr_accessor parameters: ::Array[Types::Parameter]
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class EstimateTemplateCostOutput
712
+ attr_accessor url: ::String
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class ExecuteChangeSetInput
717
+ attr_accessor change_set_name: ::String
718
+ attr_accessor stack_name: ::String
719
+ attr_accessor client_request_token: ::String
720
+ attr_accessor disable_rollback: bool
721
+ attr_accessor retain_except_on_create: bool
722
+ SENSITIVE: []
723
+ end
724
+
725
+ class ExecuteChangeSetOutput < Aws::EmptyStructure
726
+ end
727
+
728
+ class ExecuteStackRefactorInput
729
+ attr_accessor stack_refactor_id: ::String
730
+ SENSITIVE: []
731
+ end
732
+
733
+ class Export
734
+ attr_accessor exporting_stack_id: ::String
735
+ attr_accessor name: ::String
736
+ attr_accessor value: ::String
737
+ SENSITIVE: []
738
+ end
739
+
740
+ class GeneratedTemplateNotFoundException < Aws::EmptyStructure
741
+ end
742
+
743
+ class GetGeneratedTemplateInput
744
+ attr_accessor format: ("JSON" | "YAML")
745
+ attr_accessor generated_template_name: ::String
746
+ SENSITIVE: []
747
+ end
748
+
749
+ class GetGeneratedTemplateOutput
750
+ attr_accessor status: ("CREATE_PENDING" | "UPDATE_PENDING" | "DELETE_PENDING" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "COMPLETE")
751
+ attr_accessor template_body: ::String
752
+ SENSITIVE: []
753
+ end
754
+
755
+ class GetStackPolicyInput
756
+ attr_accessor stack_name: ::String
757
+ SENSITIVE: []
758
+ end
759
+
760
+ class GetStackPolicyOutput
761
+ attr_accessor stack_policy_body: ::String
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class GetTemplateInput
766
+ attr_accessor stack_name: ::String
767
+ attr_accessor change_set_name: ::String
768
+ attr_accessor template_stage: ("Original" | "Processed")
769
+ SENSITIVE: []
770
+ end
771
+
772
+ class GetTemplateOutput
773
+ attr_accessor template_body: ::String
774
+ attr_accessor stages_available: ::Array[("Original" | "Processed")]
775
+ SENSITIVE: []
776
+ end
777
+
778
+ class GetTemplateSummaryInput
779
+ attr_accessor template_body: ::String
780
+ attr_accessor template_url: ::String
781
+ attr_accessor stack_name: ::String
782
+ attr_accessor stack_set_name: ::String
783
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
784
+ attr_accessor template_summary_config: Types::TemplateSummaryConfig
785
+ SENSITIVE: []
786
+ end
787
+
788
+ class GetTemplateSummaryOutput
789
+ attr_accessor parameters: ::Array[Types::ParameterDeclaration]
790
+ attr_accessor description: ::String
791
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
792
+ attr_accessor capabilities_reason: ::String
793
+ attr_accessor resource_types: ::Array[::String]
794
+ attr_accessor version: ::String
795
+ attr_accessor metadata: ::String
796
+ attr_accessor declared_transforms: ::Array[::String]
797
+ attr_accessor resource_identifier_summaries: ::Array[Types::ResourceIdentifierSummary]
798
+ attr_accessor warnings: Types::Warnings
799
+ SENSITIVE: []
800
+ end
801
+
802
+ class HookResultNotFoundException < Aws::EmptyStructure
803
+ end
804
+
805
+ class HookResultSummary
806
+ attr_accessor invocation_point: ("PRE_PROVISION")
807
+ attr_accessor failure_mode: ("FAIL" | "WARN")
808
+ attr_accessor type_name: ::String
809
+ attr_accessor type_version_id: ::String
810
+ attr_accessor type_configuration_version_id: ::String
811
+ attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
812
+ attr_accessor hook_status_reason: ::String
813
+ SENSITIVE: []
814
+ end
815
+
816
+ class ImportStacksToStackSetInput
817
+ attr_accessor stack_set_name: ::String
818
+ attr_accessor stack_ids: ::Array[::String]
819
+ attr_accessor stack_ids_url: ::String
820
+ attr_accessor organizational_unit_ids: ::Array[::String]
821
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
822
+ attr_accessor operation_id: ::String
823
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
824
+ SENSITIVE: []
825
+ end
826
+
827
+ class ImportStacksToStackSetOutput
828
+ attr_accessor operation_id: ::String
829
+ SENSITIVE: []
830
+ end
831
+
832
+ class InsufficientCapabilitiesException < Aws::EmptyStructure
833
+ end
834
+
835
+ class InvalidChangeSetStatusException < Aws::EmptyStructure
836
+ end
837
+
838
+ class InvalidOperationException < Aws::EmptyStructure
839
+ end
840
+
841
+ class InvalidStateTransitionException < Aws::EmptyStructure
842
+ end
843
+
844
+ class LimitExceededException < Aws::EmptyStructure
845
+ end
846
+
847
+ class ListChangeSetsInput
848
+ attr_accessor stack_name: ::String
849
+ attr_accessor next_token: ::String
850
+ SENSITIVE: []
851
+ end
852
+
853
+ class ListChangeSetsOutput
854
+ attr_accessor summaries: ::Array[Types::ChangeSetSummary]
855
+ attr_accessor next_token: ::String
856
+ SENSITIVE: []
857
+ end
858
+
859
+ class ListExportsInput
860
+ attr_accessor next_token: ::String
861
+ SENSITIVE: []
862
+ end
863
+
864
+ class ListExportsOutput
865
+ attr_accessor exports: ::Array[Types::Export]
866
+ attr_accessor next_token: ::String
867
+ SENSITIVE: []
868
+ end
869
+
870
+ class ListGeneratedTemplatesInput
871
+ attr_accessor next_token: ::String
872
+ attr_accessor max_results: ::Integer
873
+ SENSITIVE: []
874
+ end
875
+
876
+ class ListGeneratedTemplatesOutput
877
+ attr_accessor summaries: ::Array[Types::TemplateSummary]
878
+ attr_accessor next_token: ::String
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class ListHookResultsInput
883
+ attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
884
+ attr_accessor target_id: ::String
885
+ attr_accessor next_token: ::String
886
+ SENSITIVE: []
887
+ end
888
+
889
+ class ListHookResultsOutput
890
+ attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
891
+ attr_accessor target_id: ::String
892
+ attr_accessor hook_results: ::Array[Types::HookResultSummary]
893
+ attr_accessor next_token: ::String
894
+ SENSITIVE: []
895
+ end
896
+
897
+ class ListImportsInput
898
+ attr_accessor export_name: ::String
899
+ attr_accessor next_token: ::String
900
+ SENSITIVE: []
901
+ end
902
+
903
+ class ListImportsOutput
904
+ attr_accessor imports: ::Array[::String]
905
+ attr_accessor next_token: ::String
906
+ SENSITIVE: []
907
+ end
908
+
909
+ class ListResourceScanRelatedResourcesInput
910
+ attr_accessor resource_scan_id: ::String
911
+ attr_accessor resources: ::Array[Types::ScannedResourceIdentifier]
912
+ attr_accessor next_token: ::String
913
+ attr_accessor max_results: ::Integer
914
+ SENSITIVE: []
915
+ end
916
+
917
+ class ListResourceScanRelatedResourcesOutput
918
+ attr_accessor related_resources: ::Array[Types::ScannedResource]
919
+ attr_accessor next_token: ::String
920
+ SENSITIVE: []
921
+ end
922
+
923
+ class ListResourceScanResourcesInput
924
+ attr_accessor resource_scan_id: ::String
925
+ attr_accessor resource_identifier: ::String
926
+ attr_accessor resource_type_prefix: ::String
927
+ attr_accessor tag_key: ::String
928
+ attr_accessor tag_value: ::String
929
+ attr_accessor next_token: ::String
930
+ attr_accessor max_results: ::Integer
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class ListResourceScanResourcesOutput
935
+ attr_accessor resources: ::Array[Types::ScannedResource]
936
+ attr_accessor next_token: ::String
937
+ SENSITIVE: []
938
+ end
939
+
940
+ class ListResourceScansInput
941
+ attr_accessor next_token: ::String
942
+ attr_accessor max_results: ::Integer
943
+ attr_accessor scan_type_filter: ("FULL" | "PARTIAL")
944
+ SENSITIVE: []
945
+ end
946
+
947
+ class ListResourceScansOutput
948
+ attr_accessor resource_scan_summaries: ::Array[Types::ResourceScanSummary]
949
+ attr_accessor next_token: ::String
950
+ SENSITIVE: []
951
+ end
952
+
953
+ class ListStackInstanceResourceDriftsInput
954
+ attr_accessor stack_set_name: ::String
955
+ attr_accessor next_token: ::String
956
+ attr_accessor max_results: ::Integer
957
+ attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")]
958
+ attr_accessor stack_instance_account: ::String
959
+ attr_accessor stack_instance_region: ::String
960
+ attr_accessor operation_id: ::String
961
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
962
+ SENSITIVE: []
963
+ end
964
+
965
+ class ListStackInstanceResourceDriftsOutput
966
+ attr_accessor summaries: ::Array[Types::StackInstanceResourceDriftsSummary]
967
+ attr_accessor next_token: ::String
968
+ SENSITIVE: []
969
+ end
970
+
971
+ class ListStackInstancesInput
972
+ attr_accessor stack_set_name: ::String
973
+ attr_accessor next_token: ::String
974
+ attr_accessor max_results: ::Integer
975
+ attr_accessor filters: ::Array[Types::StackInstanceFilter]
976
+ attr_accessor stack_instance_account: ::String
977
+ attr_accessor stack_instance_region: ::String
978
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
979
+ SENSITIVE: []
980
+ end
981
+
982
+ class ListStackInstancesOutput
983
+ attr_accessor summaries: ::Array[Types::StackInstanceSummary]
984
+ attr_accessor next_token: ::String
985
+ SENSITIVE: []
986
+ end
987
+
988
+ class ListStackRefactorActionsInput
989
+ attr_accessor stack_refactor_id: ::String
990
+ attr_accessor next_token: ::String
991
+ attr_accessor max_results: ::Integer
992
+ SENSITIVE: []
993
+ end
994
+
995
+ class ListStackRefactorActionsOutput
996
+ attr_accessor stack_refactor_actions: ::Array[Types::StackRefactorAction]
997
+ attr_accessor next_token: ::String
998
+ SENSITIVE: []
999
+ end
1000
+
1001
+ class ListStackRefactorsInput
1002
+ attr_accessor execution_status_filter: ::Array[("UNAVAILABLE" | "AVAILABLE" | "OBSOLETE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")]
1003
+ attr_accessor next_token: ::String
1004
+ attr_accessor max_results: ::Integer
1005
+ SENSITIVE: []
1006
+ end
1007
+
1008
+ class ListStackRefactorsOutput
1009
+ attr_accessor stack_refactor_summaries: ::Array[Types::StackRefactorSummary]
1010
+ attr_accessor next_token: ::String
1011
+ SENSITIVE: []
1012
+ end
1013
+
1014
+ class ListStackResourcesInput
1015
+ attr_accessor stack_name: ::String
1016
+ attr_accessor next_token: ::String
1017
+ SENSITIVE: []
1018
+ end
1019
+
1020
+ class ListStackResourcesOutput
1021
+ attr_accessor stack_resource_summaries: ::Array[Types::StackResourceSummary]
1022
+ attr_accessor next_token: ::String
1023
+ SENSITIVE: []
1024
+ end
1025
+
1026
+ class ListStackSetAutoDeploymentTargetsInput
1027
+ attr_accessor stack_set_name: ::String
1028
+ attr_accessor next_token: ::String
1029
+ attr_accessor max_results: ::Integer
1030
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
1031
+ SENSITIVE: []
1032
+ end
1033
+
1034
+ class ListStackSetAutoDeploymentTargetsOutput
1035
+ attr_accessor summaries: ::Array[Types::StackSetAutoDeploymentTargetSummary]
1036
+ attr_accessor next_token: ::String
1037
+ SENSITIVE: []
1038
+ end
1039
+
1040
+ class ListStackSetOperationResultsInput
1041
+ attr_accessor stack_set_name: ::String
1042
+ attr_accessor operation_id: ::String
1043
+ attr_accessor next_token: ::String
1044
+ attr_accessor max_results: ::Integer
1045
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
1046
+ attr_accessor filters: ::Array[Types::OperationResultFilter]
1047
+ SENSITIVE: []
1048
+ end
1049
+
1050
+ class ListStackSetOperationResultsOutput
1051
+ attr_accessor summaries: ::Array[Types::StackSetOperationResultSummary]
1052
+ attr_accessor next_token: ::String
1053
+ SENSITIVE: []
1054
+ end
1055
+
1056
+ class ListStackSetOperationsInput
1057
+ attr_accessor stack_set_name: ::String
1058
+ attr_accessor next_token: ::String
1059
+ attr_accessor max_results: ::Integer
1060
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
1061
+ SENSITIVE: []
1062
+ end
1063
+
1064
+ class ListStackSetOperationsOutput
1065
+ attr_accessor summaries: ::Array[Types::StackSetOperationSummary]
1066
+ attr_accessor next_token: ::String
1067
+ SENSITIVE: []
1068
+ end
1069
+
1070
+ class ListStackSetsInput
1071
+ attr_accessor next_token: ::String
1072
+ attr_accessor max_results: ::Integer
1073
+ attr_accessor status: ("ACTIVE" | "DELETED")
1074
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
1075
+ SENSITIVE: []
1076
+ end
1077
+
1078
+ class ListStackSetsOutput
1079
+ attr_accessor summaries: ::Array[Types::StackSetSummary]
1080
+ attr_accessor next_token: ::String
1081
+ SENSITIVE: []
1082
+ end
1083
+
1084
+ class ListStacksInput
1085
+ attr_accessor next_token: ::String
1086
+ attr_accessor stack_status_filter: ::Array[("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_FAILED" | "ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "REVIEW_IN_PROGRESS" | "IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE")]
1087
+ SENSITIVE: []
1088
+ end
1089
+
1090
+ class ListStacksOutput
1091
+ attr_accessor stack_summaries: ::Array[Types::StackSummary]
1092
+ attr_accessor next_token: ::String
1093
+ SENSITIVE: []
1094
+ end
1095
+
1096
+ class ListTypeRegistrationsInput
1097
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1098
+ attr_accessor type_name: ::String
1099
+ attr_accessor type_arn: ::String
1100
+ attr_accessor registration_status_filter: ("COMPLETE" | "IN_PROGRESS" | "FAILED")
1101
+ attr_accessor max_results: ::Integer
1102
+ attr_accessor next_token: ::String
1103
+ SENSITIVE: []
1104
+ end
1105
+
1106
+ class ListTypeRegistrationsOutput
1107
+ attr_accessor registration_token_list: ::Array[::String]
1108
+ attr_accessor next_token: ::String
1109
+ SENSITIVE: []
1110
+ end
1111
+
1112
+ class ListTypeVersionsInput
1113
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1114
+ attr_accessor type_name: ::String
1115
+ attr_accessor arn: ::String
1116
+ attr_accessor max_results: ::Integer
1117
+ attr_accessor next_token: ::String
1118
+ attr_accessor deprecated_status: ("LIVE" | "DEPRECATED")
1119
+ attr_accessor publisher_id: ::String
1120
+ SENSITIVE: []
1121
+ end
1122
+
1123
+ class ListTypeVersionsOutput
1124
+ attr_accessor type_version_summaries: ::Array[Types::TypeVersionSummary]
1125
+ attr_accessor next_token: ::String
1126
+ SENSITIVE: []
1127
+ end
1128
+
1129
+ class ListTypesInput
1130
+ attr_accessor visibility: ("PUBLIC" | "PRIVATE")
1131
+ attr_accessor provisioning_type: ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE")
1132
+ attr_accessor deprecated_status: ("LIVE" | "DEPRECATED")
1133
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1134
+ attr_accessor filters: Types::TypeFilters
1135
+ attr_accessor max_results: ::Integer
1136
+ attr_accessor next_token: ::String
1137
+ SENSITIVE: []
1138
+ end
1139
+
1140
+ class ListTypesOutput
1141
+ attr_accessor type_summaries: ::Array[Types::TypeSummary]
1142
+ attr_accessor next_token: ::String
1143
+ SENSITIVE: []
1144
+ end
1145
+
1146
+ class LoggingConfig
1147
+ attr_accessor log_role_arn: ::String
1148
+ attr_accessor log_group_name: ::String
1149
+ SENSITIVE: []
1150
+ end
1151
+
1152
+ class ManagedExecution
1153
+ attr_accessor active: bool
1154
+ SENSITIVE: []
1155
+ end
1156
+
1157
+ class ModuleInfo
1158
+ attr_accessor type_hierarchy: ::String
1159
+ attr_accessor logical_id_hierarchy: ::String
1160
+ SENSITIVE: []
1161
+ end
1162
+
1163
+ class NameAlreadyExistsException < Aws::EmptyStructure
1164
+ end
1165
+
1166
+ class OperationIdAlreadyExistsException < Aws::EmptyStructure
1167
+ end
1168
+
1169
+ class OperationInProgressException < Aws::EmptyStructure
1170
+ end
1171
+
1172
+ class OperationNotFoundException < Aws::EmptyStructure
1173
+ end
1174
+
1175
+ class OperationResultFilter
1176
+ attr_accessor name: ("OPERATION_RESULT_STATUS")
1177
+ attr_accessor values: ::String
1178
+ SENSITIVE: []
1179
+ end
1180
+
1181
+ class OperationStatusCheckFailedException < Aws::EmptyStructure
1182
+ end
1183
+
1184
+ class Output
1185
+ attr_accessor output_key: ::String
1186
+ attr_accessor output_value: ::String
1187
+ attr_accessor description: ::String
1188
+ attr_accessor export_name: ::String
1189
+ SENSITIVE: []
1190
+ end
1191
+
1192
+ class Parameter
1193
+ attr_accessor parameter_key: ::String
1194
+ attr_accessor parameter_value: ::String
1195
+ attr_accessor use_previous_value: bool
1196
+ attr_accessor resolved_value: ::String
1197
+ SENSITIVE: []
1198
+ end
1199
+
1200
+ class ParameterConstraints
1201
+ attr_accessor allowed_values: ::Array[::String]
1202
+ SENSITIVE: []
1203
+ end
1204
+
1205
+ class ParameterDeclaration
1206
+ attr_accessor parameter_key: ::String
1207
+ attr_accessor default_value: ::String
1208
+ attr_accessor parameter_type: ::String
1209
+ attr_accessor no_echo: bool
1210
+ attr_accessor description: ::String
1211
+ attr_accessor parameter_constraints: Types::ParameterConstraints
1212
+ SENSITIVE: []
1213
+ end
1214
+
1215
+ class PhysicalResourceIdContextKeyValuePair
1216
+ attr_accessor key: ::String
1217
+ attr_accessor value: ::String
1218
+ SENSITIVE: []
1219
+ end
1220
+
1221
+ class PropertyDifference
1222
+ attr_accessor property_path: ::String
1223
+ attr_accessor expected_value: ::String
1224
+ attr_accessor actual_value: ::String
1225
+ attr_accessor difference_type: ("ADD" | "REMOVE" | "NOT_EQUAL")
1226
+ SENSITIVE: []
1227
+ end
1228
+
1229
+ class PublishTypeInput
1230
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1231
+ attr_accessor arn: ::String
1232
+ attr_accessor type_name: ::String
1233
+ attr_accessor public_version_number: ::String
1234
+ SENSITIVE: []
1235
+ end
1236
+
1237
+ class PublishTypeOutput
1238
+ attr_accessor public_type_arn: ::String
1239
+ SENSITIVE: []
1240
+ end
1241
+
1242
+ class RecordHandlerProgressInput
1243
+ attr_accessor bearer_token: ::String
1244
+ attr_accessor operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED")
1245
+ attr_accessor current_operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED")
1246
+ attr_accessor status_message: ::String
1247
+ attr_accessor error_code: ("NotUpdatable" | "InvalidRequest" | "AccessDenied" | "InvalidCredentials" | "AlreadyExists" | "NotFound" | "ResourceConflict" | "Throttling" | "ServiceLimitExceeded" | "NotStabilized" | "GeneralServiceException" | "ServiceInternalError" | "NetworkFailure" | "InternalFailure" | "InvalidTypeConfiguration" | "HandlerInternalFailure" | "NonCompliant" | "Unknown" | "UnsupportedTarget")
1248
+ attr_accessor resource_model: ::String
1249
+ attr_accessor client_request_token: ::String
1250
+ SENSITIVE: []
1251
+ end
1252
+
1253
+ class RecordHandlerProgressOutput < Aws::EmptyStructure
1254
+ end
1255
+
1256
+ class RegisterPublisherInput
1257
+ attr_accessor accept_terms_and_conditions: bool
1258
+ attr_accessor connection_arn: ::String
1259
+ SENSITIVE: []
1260
+ end
1261
+
1262
+ class RegisterPublisherOutput
1263
+ attr_accessor publisher_id: ::String
1264
+ SENSITIVE: []
1265
+ end
1266
+
1267
+ class RegisterTypeInput
1268
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1269
+ attr_accessor type_name: ::String
1270
+ attr_accessor schema_handler_package: ::String
1271
+ attr_accessor logging_config: Types::LoggingConfig
1272
+ attr_accessor execution_role_arn: ::String
1273
+ attr_accessor client_request_token: ::String
1274
+ SENSITIVE: []
1275
+ end
1276
+
1277
+ class RegisterTypeOutput
1278
+ attr_accessor registration_token: ::String
1279
+ SENSITIVE: []
1280
+ end
1281
+
1282
+ class RequiredActivatedType
1283
+ attr_accessor type_name_alias: ::String
1284
+ attr_accessor original_type_name: ::String
1285
+ attr_accessor publisher_id: ::String
1286
+ attr_accessor supported_major_versions: ::Array[::Integer]
1287
+ SENSITIVE: []
1288
+ end
1289
+
1290
+ class ResourceChange
1291
+ attr_accessor policy_action: ("Delete" | "Retain" | "Snapshot" | "ReplaceAndDelete" | "ReplaceAndRetain" | "ReplaceAndSnapshot")
1292
+ attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
1293
+ attr_accessor logical_resource_id: ::String
1294
+ attr_accessor physical_resource_id: ::String
1295
+ attr_accessor resource_type: ::String
1296
+ attr_accessor replacement: ("True" | "False" | "Conditional")
1297
+ attr_accessor scope: ::Array[("Properties" | "Metadata" | "CreationPolicy" | "UpdatePolicy" | "DeletionPolicy" | "UpdateReplacePolicy" | "Tags")]
1298
+ attr_accessor details: ::Array[Types::ResourceChangeDetail]
1299
+ attr_accessor change_set_id: ::String
1300
+ attr_accessor module_info: Types::ModuleInfo
1301
+ attr_accessor before_context: ::String
1302
+ attr_accessor after_context: ::String
1303
+ SENSITIVE: []
1304
+ end
1305
+
1306
+ class ResourceChangeDetail
1307
+ attr_accessor target: Types::ResourceTargetDefinition
1308
+ attr_accessor evaluation: ("Static" | "Dynamic")
1309
+ attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic")
1310
+ attr_accessor causing_entity: ::String
1311
+ SENSITIVE: []
1312
+ end
1313
+
1314
+ class ResourceDefinition
1315
+ attr_accessor resource_type: ::String
1316
+ attr_accessor logical_resource_id: ::String
1317
+ attr_accessor resource_identifier: ::Hash[::String, ::String]
1318
+ SENSITIVE: []
1319
+ end
1320
+
1321
+ class ResourceDetail
1322
+ attr_accessor resource_type: ::String
1323
+ attr_accessor logical_resource_id: ::String
1324
+ attr_accessor resource_identifier: ::Hash[::String, ::String]
1325
+ attr_accessor resource_status: ("PENDING" | "IN_PROGRESS" | "FAILED" | "COMPLETE")
1326
+ attr_accessor resource_status_reason: ::String
1327
+ attr_accessor warnings: ::Array[Types::WarningDetail]
1328
+ SENSITIVE: []
1329
+ end
1330
+
1331
+ class ResourceIdentifierSummary
1332
+ attr_accessor resource_type: ::String
1333
+ attr_accessor logical_resource_ids: ::Array[::String]
1334
+ attr_accessor resource_identifiers: ::Array[::String]
1335
+ SENSITIVE: []
1336
+ end
1337
+
1338
+ class ResourceLocation
1339
+ attr_accessor stack_name: ::String
1340
+ attr_accessor logical_resource_id: ::String
1341
+ SENSITIVE: []
1342
+ end
1343
+
1344
+ class ResourceMapping
1345
+ attr_accessor source: Types::ResourceLocation
1346
+ attr_accessor destination: Types::ResourceLocation
1347
+ SENSITIVE: []
1348
+ end
1349
+
1350
+ class ResourceScanInProgressException < Aws::EmptyStructure
1351
+ end
1352
+
1353
+ class ResourceScanLimitExceededException < Aws::EmptyStructure
1354
+ end
1355
+
1356
+ class ResourceScanNotFoundException < Aws::EmptyStructure
1357
+ end
1358
+
1359
+ class ResourceScanSummary
1360
+ attr_accessor resource_scan_id: ::String
1361
+ attr_accessor status: ("IN_PROGRESS" | "FAILED" | "COMPLETE" | "EXPIRED")
1362
+ attr_accessor status_reason: ::String
1363
+ attr_accessor start_time: ::Time
1364
+ attr_accessor end_time: ::Time
1365
+ attr_accessor percentage_completed: ::Float
1366
+ attr_accessor scan_type: ("FULL" | "PARTIAL")
1367
+ SENSITIVE: []
1368
+ end
1369
+
1370
+ class ResourceTargetDefinition
1371
+ attr_accessor attribute: ("Properties" | "Metadata" | "CreationPolicy" | "UpdatePolicy" | "DeletionPolicy" | "UpdateReplacePolicy" | "Tags")
1372
+ attr_accessor name: ::String
1373
+ attr_accessor requires_recreation: ("Never" | "Conditionally" | "Always")
1374
+ attr_accessor path: ::String
1375
+ attr_accessor before_value: ::String
1376
+ attr_accessor after_value: ::String
1377
+ attr_accessor attribute_change_type: ("Add" | "Remove" | "Modify")
1378
+ SENSITIVE: []
1379
+ end
1380
+
1381
+ class ResourceToImport
1382
+ attr_accessor resource_type: ::String
1383
+ attr_accessor logical_resource_id: ::String
1384
+ attr_accessor resource_identifier: ::Hash[::String, ::String]
1385
+ SENSITIVE: []
1386
+ end
1387
+
1388
+ class RollbackConfiguration
1389
+ attr_accessor rollback_triggers: ::Array[Types::RollbackTrigger]
1390
+ attr_accessor monitoring_time_in_minutes: ::Integer
1391
+ SENSITIVE: []
1392
+ end
1393
+
1394
+ class RollbackStackInput
1395
+ attr_accessor stack_name: ::String
1396
+ attr_accessor role_arn: ::String
1397
+ attr_accessor client_request_token: ::String
1398
+ attr_accessor retain_except_on_create: bool
1399
+ SENSITIVE: []
1400
+ end
1401
+
1402
+ class RollbackStackOutput
1403
+ attr_accessor stack_id: ::String
1404
+ SENSITIVE: []
1405
+ end
1406
+
1407
+ class RollbackTrigger
1408
+ attr_accessor arn: ::String
1409
+ attr_accessor type: ::String
1410
+ SENSITIVE: []
1411
+ end
1412
+
1413
+ class ScanFilter
1414
+ attr_accessor types: ::Array[::String]
1415
+ SENSITIVE: []
1416
+ end
1417
+
1418
+ class ScannedResource
1419
+ attr_accessor resource_type: ::String
1420
+ attr_accessor resource_identifier: ::Hash[::String, ::String]
1421
+ attr_accessor managed_by_stack: bool
1422
+ SENSITIVE: []
1423
+ end
1424
+
1425
+ class ScannedResourceIdentifier
1426
+ attr_accessor resource_type: ::String
1427
+ attr_accessor resource_identifier: ::Hash[::String, ::String]
1428
+ SENSITIVE: []
1429
+ end
1430
+
1431
+ class SetStackPolicyInput
1432
+ attr_accessor stack_name: ::String
1433
+ attr_accessor stack_policy_body: ::String
1434
+ attr_accessor stack_policy_url: ::String
1435
+ SENSITIVE: []
1436
+ end
1437
+
1438
+ class SetTypeConfigurationInput
1439
+ attr_accessor type_arn: ::String
1440
+ attr_accessor configuration: ::String
1441
+ attr_accessor configuration_alias: ::String
1442
+ attr_accessor type_name: ::String
1443
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1444
+ SENSITIVE: []
1445
+ end
1446
+
1447
+ class SetTypeConfigurationOutput
1448
+ attr_accessor configuration_arn: ::String
1449
+ SENSITIVE: []
1450
+ end
1451
+
1452
+ class SetTypeDefaultVersionInput
1453
+ attr_accessor arn: ::String
1454
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1455
+ attr_accessor type_name: ::String
1456
+ attr_accessor version_id: ::String
1457
+ SENSITIVE: []
1458
+ end
1459
+
1460
+ class SetTypeDefaultVersionOutput < Aws::EmptyStructure
1461
+ end
1462
+
1463
+ class SignalResourceInput
1464
+ attr_accessor stack_name: ::String
1465
+ attr_accessor logical_resource_id: ::String
1466
+ attr_accessor unique_id: ::String
1467
+ attr_accessor status: ("SUCCESS" | "FAILURE")
1468
+ SENSITIVE: []
1469
+ end
1470
+
1471
+ class Stack
1472
+ attr_accessor stack_id: ::String
1473
+ attr_accessor stack_name: ::String
1474
+ attr_accessor change_set_id: ::String
1475
+ attr_accessor description: ::String
1476
+ attr_accessor parameters: ::Array[Types::Parameter]
1477
+ attr_accessor creation_time: ::Time
1478
+ attr_accessor deletion_time: ::Time
1479
+ attr_accessor last_updated_time: ::Time
1480
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
1481
+ attr_accessor stack_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_FAILED" | "ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "REVIEW_IN_PROGRESS" | "IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE")
1482
+ attr_accessor stack_status_reason: ::String
1483
+ attr_accessor disable_rollback: bool
1484
+ attr_accessor notification_arns: ::Array[::String]
1485
+ attr_accessor timeout_in_minutes: ::Integer
1486
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
1487
+ attr_accessor outputs: ::Array[Types::Output]
1488
+ attr_accessor role_arn: ::String
1489
+ attr_accessor tags: ::Array[Types::Tag]
1490
+ attr_accessor enable_termination_protection: bool
1491
+ attr_accessor parent_id: ::String
1492
+ attr_accessor root_id: ::String
1493
+ attr_accessor drift_information: Types::StackDriftInformation
1494
+ attr_accessor retain_except_on_create: bool
1495
+ attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
1496
+ attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
1497
+ SENSITIVE: []
1498
+ end
1499
+
1500
+ class StackDefinition
1501
+ attr_accessor stack_name: ::String
1502
+ attr_accessor template_body: ::String
1503
+ attr_accessor template_url: ::String
1504
+ SENSITIVE: []
1505
+ end
1506
+
1507
+ class StackDriftInformation
1508
+ attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
1509
+ attr_accessor last_check_timestamp: ::Time
1510
+ SENSITIVE: []
1511
+ end
1512
+
1513
+ class StackDriftInformationSummary
1514
+ attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
1515
+ attr_accessor last_check_timestamp: ::Time
1516
+ SENSITIVE: []
1517
+ end
1518
+
1519
+ class StackEvent
1520
+ attr_accessor stack_id: ::String
1521
+ attr_accessor event_id: ::String
1522
+ attr_accessor stack_name: ::String
1523
+ attr_accessor logical_resource_id: ::String
1524
+ attr_accessor physical_resource_id: ::String
1525
+ attr_accessor resource_type: ::String
1526
+ attr_accessor timestamp: ::Time
1527
+ attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1528
+ attr_accessor resource_status_reason: ::String
1529
+ attr_accessor resource_properties: ::String
1530
+ attr_accessor client_request_token: ::String
1531
+ attr_accessor hook_type: ::String
1532
+ attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
1533
+ attr_accessor hook_status_reason: ::String
1534
+ attr_accessor hook_invocation_point: ("PRE_PROVISION")
1535
+ attr_accessor hook_failure_mode: ("FAIL" | "WARN")
1536
+ attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
1537
+ SENSITIVE: []
1538
+ end
1539
+
1540
+ class StackInstance
1541
+ attr_accessor stack_set_id: ::String
1542
+ attr_accessor region: ::String
1543
+ attr_accessor account: ::String
1544
+ attr_accessor stack_id: ::String
1545
+ attr_accessor parameter_overrides: ::Array[Types::Parameter]
1546
+ attr_accessor status: ("CURRENT" | "OUTDATED" | "INOPERABLE")
1547
+ attr_accessor stack_instance_status: Types::StackInstanceComprehensiveStatus
1548
+ attr_accessor status_reason: ::String
1549
+ attr_accessor organizational_unit_id: ::String
1550
+ attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
1551
+ attr_accessor last_drift_check_timestamp: ::Time
1552
+ attr_accessor last_operation_id: ::String
1553
+ SENSITIVE: []
1554
+ end
1555
+
1556
+ class StackInstanceComprehensiveStatus
1557
+ attr_accessor detailed_status: ("PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED" | "INOPERABLE" | "SKIPPED_SUSPENDED_ACCOUNT" | "FAILED_IMPORT")
1558
+ SENSITIVE: []
1559
+ end
1560
+
1561
+ class StackInstanceFilter
1562
+ attr_accessor name: ("DETAILED_STATUS" | "LAST_OPERATION_ID" | "DRIFT_STATUS")
1563
+ attr_accessor values: ::String
1564
+ SENSITIVE: []
1565
+ end
1566
+
1567
+ class StackInstanceNotFoundException < Aws::EmptyStructure
1568
+ end
1569
+
1570
+ class StackInstanceResourceDriftsSummary
1571
+ attr_accessor stack_id: ::String
1572
+ attr_accessor logical_resource_id: ::String
1573
+ attr_accessor physical_resource_id: ::String
1574
+ attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
1575
+ attr_accessor resource_type: ::String
1576
+ attr_accessor property_differences: ::Array[Types::PropertyDifference]
1577
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
1578
+ attr_accessor timestamp: ::Time
1579
+ SENSITIVE: []
1580
+ end
1581
+
1582
+ class StackInstanceSummary
1583
+ attr_accessor stack_set_id: ::String
1584
+ attr_accessor region: ::String
1585
+ attr_accessor account: ::String
1586
+ attr_accessor stack_id: ::String
1587
+ attr_accessor status: ("CURRENT" | "OUTDATED" | "INOPERABLE")
1588
+ attr_accessor status_reason: ::String
1589
+ attr_accessor stack_instance_status: Types::StackInstanceComprehensiveStatus
1590
+ attr_accessor organizational_unit_id: ::String
1591
+ attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
1592
+ attr_accessor last_drift_check_timestamp: ::Time
1593
+ attr_accessor last_operation_id: ::String
1594
+ SENSITIVE: []
1595
+ end
1596
+
1597
+ class StackNotFoundException < Aws::EmptyStructure
1598
+ end
1599
+
1600
+ class StackRefactorAction
1601
+ attr_accessor action: ("MOVE" | "CREATE")
1602
+ attr_accessor entity: ("RESOURCE" | "STACK")
1603
+ attr_accessor physical_resource_id: ::String
1604
+ attr_accessor resource_identifier: ::String
1605
+ attr_accessor description: ::String
1606
+ attr_accessor detection: ("AUTO" | "MANUAL")
1607
+ attr_accessor detection_reason: ::String
1608
+ attr_accessor tag_resources: ::Array[Types::Tag]
1609
+ attr_accessor untag_resources: ::Array[::String]
1610
+ attr_accessor resource_mapping: Types::ResourceMapping
1611
+ SENSITIVE: []
1612
+ end
1613
+
1614
+ class StackRefactorNotFoundException < Aws::EmptyStructure
1615
+ end
1616
+
1617
+ class StackRefactorSummary
1618
+ attr_accessor stack_refactor_id: ::String
1619
+ attr_accessor description: ::String
1620
+ attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "OBSOLETE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1621
+ attr_accessor execution_status_reason: ::String
1622
+ attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
1623
+ attr_accessor status_reason: ::String
1624
+ SENSITIVE: []
1625
+ end
1626
+
1627
+ class StackResource
1628
+ attr_accessor stack_name: ::String
1629
+ attr_accessor stack_id: ::String
1630
+ attr_accessor logical_resource_id: ::String
1631
+ attr_accessor physical_resource_id: ::String
1632
+ attr_accessor resource_type: ::String
1633
+ attr_accessor timestamp: ::Time
1634
+ attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1635
+ attr_accessor resource_status_reason: ::String
1636
+ attr_accessor description: ::String
1637
+ attr_accessor drift_information: Types::StackResourceDriftInformation
1638
+ attr_accessor module_info: Types::ModuleInfo
1639
+ SENSITIVE: []
1640
+ end
1641
+
1642
+ class StackResourceDetail
1643
+ attr_accessor stack_name: ::String
1644
+ attr_accessor stack_id: ::String
1645
+ attr_accessor logical_resource_id: ::String
1646
+ attr_accessor physical_resource_id: ::String
1647
+ attr_accessor resource_type: ::String
1648
+ attr_accessor last_updated_timestamp: ::Time
1649
+ attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1650
+ attr_accessor resource_status_reason: ::String
1651
+ attr_accessor description: ::String
1652
+ attr_accessor metadata: ::String
1653
+ attr_accessor drift_information: Types::StackResourceDriftInformation
1654
+ attr_accessor module_info: Types::ModuleInfo
1655
+ SENSITIVE: []
1656
+ end
1657
+
1658
+ class StackResourceDrift
1659
+ attr_accessor stack_id: ::String
1660
+ attr_accessor logical_resource_id: ::String
1661
+ attr_accessor physical_resource_id: ::String
1662
+ attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
1663
+ attr_accessor resource_type: ::String
1664
+ attr_accessor expected_properties: ::String
1665
+ attr_accessor actual_properties: ::String
1666
+ attr_accessor property_differences: ::Array[Types::PropertyDifference]
1667
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
1668
+ attr_accessor timestamp: ::Time
1669
+ attr_accessor module_info: Types::ModuleInfo
1670
+ SENSITIVE: []
1671
+ end
1672
+
1673
+ class StackResourceDriftInformation
1674
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
1675
+ attr_accessor last_check_timestamp: ::Time
1676
+ SENSITIVE: []
1677
+ end
1678
+
1679
+ class StackResourceDriftInformationSummary
1680
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
1681
+ attr_accessor last_check_timestamp: ::Time
1682
+ SENSITIVE: []
1683
+ end
1684
+
1685
+ class StackResourceSummary
1686
+ attr_accessor logical_resource_id: ::String
1687
+ attr_accessor physical_resource_id: ::String
1688
+ attr_accessor resource_type: ::String
1689
+ attr_accessor last_updated_timestamp: ::Time
1690
+ attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1691
+ attr_accessor resource_status_reason: ::String
1692
+ attr_accessor drift_information: Types::StackResourceDriftInformationSummary
1693
+ attr_accessor module_info: Types::ModuleInfo
1694
+ SENSITIVE: []
1695
+ end
1696
+
1697
+ class StackSet
1698
+ attr_accessor stack_set_name: ::String
1699
+ attr_accessor stack_set_id: ::String
1700
+ attr_accessor description: ::String
1701
+ attr_accessor status: ("ACTIVE" | "DELETED")
1702
+ attr_accessor template_body: ::String
1703
+ attr_accessor parameters: ::Array[Types::Parameter]
1704
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
1705
+ attr_accessor tags: ::Array[Types::Tag]
1706
+ attr_accessor stack_set_arn: ::String
1707
+ attr_accessor administration_role_arn: ::String
1708
+ attr_accessor execution_role_name: ::String
1709
+ attr_accessor stack_set_drift_detection_details: Types::StackSetDriftDetectionDetails
1710
+ attr_accessor auto_deployment: Types::AutoDeployment
1711
+ attr_accessor permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED")
1712
+ attr_accessor organizational_unit_ids: ::Array[::String]
1713
+ attr_accessor managed_execution: Types::ManagedExecution
1714
+ attr_accessor regions: ::Array[::String]
1715
+ SENSITIVE: []
1716
+ end
1717
+
1718
+ class StackSetAutoDeploymentTargetSummary
1719
+ attr_accessor organizational_unit_id: ::String
1720
+ attr_accessor regions: ::Array[::String]
1721
+ SENSITIVE: []
1722
+ end
1723
+
1724
+ class StackSetDriftDetectionDetails
1725
+ attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKED")
1726
+ attr_accessor drift_detection_status: ("COMPLETED" | "FAILED" | "PARTIAL_SUCCESS" | "IN_PROGRESS" | "STOPPED")
1727
+ attr_accessor last_drift_check_timestamp: ::Time
1728
+ attr_accessor total_stack_instances_count: ::Integer
1729
+ attr_accessor drifted_stack_instances_count: ::Integer
1730
+ attr_accessor in_sync_stack_instances_count: ::Integer
1731
+ attr_accessor in_progress_stack_instances_count: ::Integer
1732
+ attr_accessor failed_stack_instances_count: ::Integer
1733
+ SENSITIVE: []
1734
+ end
1735
+
1736
+ class StackSetNotEmptyException < Aws::EmptyStructure
1737
+ end
1738
+
1739
+ class StackSetNotFoundException < Aws::EmptyStructure
1740
+ end
1741
+
1742
+ class StackSetOperation
1743
+ attr_accessor operation_id: ::String
1744
+ attr_accessor stack_set_id: ::String
1745
+ attr_accessor action: ("CREATE" | "UPDATE" | "DELETE" | "DETECT_DRIFT")
1746
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "STOPPING" | "STOPPED" | "QUEUED")
1747
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
1748
+ attr_accessor retain_stacks: bool
1749
+ attr_accessor administration_role_arn: ::String
1750
+ attr_accessor execution_role_name: ::String
1751
+ attr_accessor creation_timestamp: ::Time
1752
+ attr_accessor end_timestamp: ::Time
1753
+ attr_accessor deployment_targets: Types::DeploymentTargets
1754
+ attr_accessor stack_set_drift_detection_details: Types::StackSetDriftDetectionDetails
1755
+ attr_accessor status_reason: ::String
1756
+ attr_accessor status_details: Types::StackSetOperationStatusDetails
1757
+ SENSITIVE: []
1758
+ end
1759
+
1760
+ class StackSetOperationPreferences
1761
+ attr_accessor region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")
1762
+ attr_accessor region_order: ::Array[::String]
1763
+ attr_accessor failure_tolerance_count: ::Integer
1764
+ attr_accessor failure_tolerance_percentage: ::Integer
1765
+ attr_accessor max_concurrent_count: ::Integer
1766
+ attr_accessor max_concurrent_percentage: ::Integer
1767
+ attr_accessor concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")
1768
+ SENSITIVE: []
1769
+ end
1770
+
1771
+ class StackSetOperationResultSummary
1772
+ attr_accessor account: ::String
1773
+ attr_accessor region: ::String
1774
+ attr_accessor status: ("PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED")
1775
+ attr_accessor status_reason: ::String
1776
+ attr_accessor account_gate_result: Types::AccountGateResult
1777
+ attr_accessor organizational_unit_id: ::String
1778
+ SENSITIVE: []
1779
+ end
1780
+
1781
+ class StackSetOperationStatusDetails
1782
+ attr_accessor failed_stack_instances_count: ::Integer
1783
+ SENSITIVE: []
1784
+ end
1785
+
1786
+ class StackSetOperationSummary
1787
+ attr_accessor operation_id: ::String
1788
+ attr_accessor action: ("CREATE" | "UPDATE" | "DELETE" | "DETECT_DRIFT")
1789
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "STOPPING" | "STOPPED" | "QUEUED")
1790
+ attr_accessor creation_timestamp: ::Time
1791
+ attr_accessor end_timestamp: ::Time
1792
+ attr_accessor status_reason: ::String
1793
+ attr_accessor status_details: Types::StackSetOperationStatusDetails
1794
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
1795
+ SENSITIVE: []
1796
+ end
1797
+
1798
+ class StackSetSummary
1799
+ attr_accessor stack_set_name: ::String
1800
+ attr_accessor stack_set_id: ::String
1801
+ attr_accessor description: ::String
1802
+ attr_accessor status: ("ACTIVE" | "DELETED")
1803
+ attr_accessor auto_deployment: Types::AutoDeployment
1804
+ attr_accessor permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED")
1805
+ attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
1806
+ attr_accessor last_drift_check_timestamp: ::Time
1807
+ attr_accessor managed_execution: Types::ManagedExecution
1808
+ SENSITIVE: []
1809
+ end
1810
+
1811
+ class StackSummary
1812
+ attr_accessor stack_id: ::String
1813
+ attr_accessor stack_name: ::String
1814
+ attr_accessor template_description: ::String
1815
+ attr_accessor creation_time: ::Time
1816
+ attr_accessor last_updated_time: ::Time
1817
+ attr_accessor deletion_time: ::Time
1818
+ attr_accessor stack_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_FAILED" | "ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "REVIEW_IN_PROGRESS" | "IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE")
1819
+ attr_accessor stack_status_reason: ::String
1820
+ attr_accessor parent_id: ::String
1821
+ attr_accessor root_id: ::String
1822
+ attr_accessor drift_information: Types::StackDriftInformationSummary
1823
+ SENSITIVE: []
1824
+ end
1825
+
1826
+ class StaleRequestException < Aws::EmptyStructure
1827
+ end
1828
+
1829
+ class StartResourceScanInput
1830
+ attr_accessor client_request_token: ::String
1831
+ attr_accessor scan_filters: ::Array[Types::ScanFilter]
1832
+ SENSITIVE: []
1833
+ end
1834
+
1835
+ class StartResourceScanOutput
1836
+ attr_accessor resource_scan_id: ::String
1837
+ SENSITIVE: []
1838
+ end
1839
+
1840
+ class StopStackSetOperationInput
1841
+ attr_accessor stack_set_name: ::String
1842
+ attr_accessor operation_id: ::String
1843
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
1844
+ SENSITIVE: []
1845
+ end
1846
+
1847
+ class StopStackSetOperationOutput < Aws::EmptyStructure
1848
+ end
1849
+
1850
+ class Tag
1851
+ attr_accessor key: ::String
1852
+ attr_accessor value: ::String
1853
+ SENSITIVE: []
1854
+ end
1855
+
1856
+ class TemplateConfiguration
1857
+ attr_accessor deletion_policy: ("DELETE" | "RETAIN")
1858
+ attr_accessor update_replace_policy: ("DELETE" | "RETAIN")
1859
+ SENSITIVE: []
1860
+ end
1861
+
1862
+ class TemplateParameter
1863
+ attr_accessor parameter_key: ::String
1864
+ attr_accessor default_value: ::String
1865
+ attr_accessor no_echo: bool
1866
+ attr_accessor description: ::String
1867
+ SENSITIVE: []
1868
+ end
1869
+
1870
+ class TemplateProgress
1871
+ attr_accessor resources_succeeded: ::Integer
1872
+ attr_accessor resources_failed: ::Integer
1873
+ attr_accessor resources_processing: ::Integer
1874
+ attr_accessor resources_pending: ::Integer
1875
+ SENSITIVE: []
1876
+ end
1877
+
1878
+ class TemplateSummary
1879
+ attr_accessor generated_template_id: ::String
1880
+ attr_accessor generated_template_name: ::String
1881
+ attr_accessor status: ("CREATE_PENDING" | "UPDATE_PENDING" | "DELETE_PENDING" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "COMPLETE")
1882
+ attr_accessor status_reason: ::String
1883
+ attr_accessor creation_time: ::Time
1884
+ attr_accessor last_updated_time: ::Time
1885
+ attr_accessor number_of_resources: ::Integer
1886
+ SENSITIVE: []
1887
+ end
1888
+
1889
+ class TemplateSummaryConfig
1890
+ attr_accessor treat_unrecognized_resource_types_as_warnings: bool
1891
+ SENSITIVE: []
1892
+ end
1893
+
1894
+ class TestTypeInput
1895
+ attr_accessor arn: ::String
1896
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1897
+ attr_accessor type_name: ::String
1898
+ attr_accessor version_id: ::String
1899
+ attr_accessor log_delivery_bucket: ::String
1900
+ SENSITIVE: []
1901
+ end
1902
+
1903
+ class TestTypeOutput
1904
+ attr_accessor type_version_arn: ::String
1905
+ SENSITIVE: []
1906
+ end
1907
+
1908
+ class TokenAlreadyExistsException < Aws::EmptyStructure
1909
+ end
1910
+
1911
+ class TypeConfigurationDetails
1912
+ attr_accessor arn: ::String
1913
+ attr_accessor alias: ::String
1914
+ attr_accessor configuration: ::String
1915
+ attr_accessor last_updated: ::Time
1916
+ attr_accessor type_arn: ::String
1917
+ attr_accessor type_name: ::String
1918
+ attr_accessor is_default_configuration: bool
1919
+ SENSITIVE: []
1920
+ end
1921
+
1922
+ class TypeConfigurationIdentifier
1923
+ attr_accessor type_arn: ::String
1924
+ attr_accessor type_configuration_alias: ::String
1925
+ attr_accessor type_configuration_arn: ::String
1926
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1927
+ attr_accessor type_name: ::String
1928
+ SENSITIVE: []
1929
+ end
1930
+
1931
+ class TypeConfigurationNotFoundException < Aws::EmptyStructure
1932
+ end
1933
+
1934
+ class TypeFilters
1935
+ attr_accessor category: ("REGISTERED" | "ACTIVATED" | "THIRD_PARTY" | "AWS_TYPES")
1936
+ attr_accessor publisher_id: ::String
1937
+ attr_accessor type_name_prefix: ::String
1938
+ SENSITIVE: []
1939
+ end
1940
+
1941
+ class TypeNotFoundException < Aws::EmptyStructure
1942
+ end
1943
+
1944
+ class TypeSummary
1945
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1946
+ attr_accessor type_name: ::String
1947
+ attr_accessor default_version_id: ::String
1948
+ attr_accessor type_arn: ::String
1949
+ attr_accessor last_updated: ::Time
1950
+ attr_accessor description: ::String
1951
+ attr_accessor publisher_id: ::String
1952
+ attr_accessor original_type_name: ::String
1953
+ attr_accessor public_version_number: ::String
1954
+ attr_accessor latest_public_version: ::String
1955
+ attr_accessor publisher_identity: ("AWS_Marketplace" | "GitHub" | "Bitbucket")
1956
+ attr_accessor publisher_name: ::String
1957
+ attr_accessor is_activated: bool
1958
+ SENSITIVE: []
1959
+ end
1960
+
1961
+ class TypeVersionSummary
1962
+ attr_accessor type: ("RESOURCE" | "MODULE" | "HOOK")
1963
+ attr_accessor type_name: ::String
1964
+ attr_accessor version_id: ::String
1965
+ attr_accessor is_default_version: bool
1966
+ attr_accessor arn: ::String
1967
+ attr_accessor time_created: ::Time
1968
+ attr_accessor description: ::String
1969
+ attr_accessor public_version_number: ::String
1970
+ SENSITIVE: []
1971
+ end
1972
+
1973
+ class UpdateGeneratedTemplateInput
1974
+ attr_accessor generated_template_name: ::String
1975
+ attr_accessor new_generated_template_name: ::String
1976
+ attr_accessor add_resources: ::Array[Types::ResourceDefinition]
1977
+ attr_accessor remove_resources: ::Array[::String]
1978
+ attr_accessor refresh_all_resources: bool
1979
+ attr_accessor template_configuration: Types::TemplateConfiguration
1980
+ SENSITIVE: []
1981
+ end
1982
+
1983
+ class UpdateGeneratedTemplateOutput
1984
+ attr_accessor generated_template_id: ::String
1985
+ SENSITIVE: []
1986
+ end
1987
+
1988
+ class UpdateStackInput
1989
+ attr_accessor stack_name: ::String
1990
+ attr_accessor template_body: ::String
1991
+ attr_accessor template_url: ::String
1992
+ attr_accessor use_previous_template: bool
1993
+ attr_accessor stack_policy_during_update_body: ::String
1994
+ attr_accessor stack_policy_during_update_url: ::String
1995
+ attr_accessor parameters: ::Array[Types::Parameter]
1996
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
1997
+ attr_accessor resource_types: ::Array[::String]
1998
+ attr_accessor role_arn: ::String
1999
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
2000
+ attr_accessor stack_policy_body: ::String
2001
+ attr_accessor stack_policy_url: ::String
2002
+ attr_accessor notification_arns: ::Array[::String]
2003
+ attr_accessor tags: ::Array[Types::Tag]
2004
+ attr_accessor disable_rollback: bool
2005
+ attr_accessor client_request_token: ::String
2006
+ attr_accessor retain_except_on_create: bool
2007
+ SENSITIVE: []
2008
+ end
2009
+
2010
+ class UpdateStackInstancesInput
2011
+ attr_accessor stack_set_name: ::String
2012
+ attr_accessor accounts: ::Array[::String]
2013
+ attr_accessor deployment_targets: Types::DeploymentTargets
2014
+ attr_accessor regions: ::Array[::String]
2015
+ attr_accessor parameter_overrides: ::Array[Types::Parameter]
2016
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
2017
+ attr_accessor operation_id: ::String
2018
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
2019
+ SENSITIVE: []
2020
+ end
2021
+
2022
+ class UpdateStackInstancesOutput
2023
+ attr_accessor operation_id: ::String
2024
+ SENSITIVE: []
2025
+ end
2026
+
2027
+ class UpdateStackOutput
2028
+ attr_accessor stack_id: ::String
2029
+ SENSITIVE: []
2030
+ end
2031
+
2032
+ class UpdateStackSetInput
2033
+ attr_accessor stack_set_name: ::String
2034
+ attr_accessor description: ::String
2035
+ attr_accessor template_body: ::String
2036
+ attr_accessor template_url: ::String
2037
+ attr_accessor use_previous_template: bool
2038
+ attr_accessor parameters: ::Array[Types::Parameter]
2039
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
2040
+ attr_accessor tags: ::Array[Types::Tag]
2041
+ attr_accessor operation_preferences: Types::StackSetOperationPreferences
2042
+ attr_accessor administration_role_arn: ::String
2043
+ attr_accessor execution_role_name: ::String
2044
+ attr_accessor deployment_targets: Types::DeploymentTargets
2045
+ attr_accessor permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED")
2046
+ attr_accessor auto_deployment: Types::AutoDeployment
2047
+ attr_accessor operation_id: ::String
2048
+ attr_accessor accounts: ::Array[::String]
2049
+ attr_accessor regions: ::Array[::String]
2050
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
2051
+ attr_accessor managed_execution: Types::ManagedExecution
2052
+ SENSITIVE: []
2053
+ end
2054
+
2055
+ class UpdateStackSetOutput
2056
+ attr_accessor operation_id: ::String
2057
+ SENSITIVE: []
2058
+ end
2059
+
2060
+ class UpdateTerminationProtectionInput
2061
+ attr_accessor enable_termination_protection: bool
2062
+ attr_accessor stack_name: ::String
2063
+ SENSITIVE: []
2064
+ end
2065
+
2066
+ class UpdateTerminationProtectionOutput
2067
+ attr_accessor stack_id: ::String
2068
+ SENSITIVE: []
2069
+ end
2070
+
2071
+ class ValidateTemplateInput
2072
+ attr_accessor template_body: ::String
2073
+ attr_accessor template_url: ::String
2074
+ SENSITIVE: []
2075
+ end
2076
+
2077
+ class ValidateTemplateOutput
2078
+ attr_accessor parameters: ::Array[Types::TemplateParameter]
2079
+ attr_accessor description: ::String
2080
+ attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
2081
+ attr_accessor capabilities_reason: ::String
2082
+ attr_accessor declared_transforms: ::Array[::String]
2083
+ SENSITIVE: []
2084
+ end
2085
+
2086
+ class WarningDetail
2087
+ attr_accessor type: ("MUTUALLY_EXCLUSIVE_PROPERTIES" | "UNSUPPORTED_PROPERTIES" | "MUTUALLY_EXCLUSIVE_TYPES")
2088
+ attr_accessor properties: ::Array[Types::WarningProperty]
2089
+ SENSITIVE: []
2090
+ end
2091
+
2092
+ class WarningProperty
2093
+ attr_accessor property_path: ::String
2094
+ attr_accessor required: bool
2095
+ attr_accessor description: ::String
2096
+ SENSITIVE: []
2097
+ end
2098
+
2099
+ class Warnings
2100
+ attr_accessor unrecognized_resource_types: ::Array[::String]
2101
+ SENSITIVE: []
2102
+ end
2103
+ end
2104
+ end