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/client.rbs ADDED
@@ -0,0 +1,1668 @@
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
9
+ module CloudFormation
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?stub_responses: untyped,
56
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
+ ?token_provider: untyped,
58
+ ?use_dualstack_endpoint: bool,
59
+ ?use_fips_endpoint: bool,
60
+ ?validate_params: bool,
61
+ ?endpoint_provider: untyped,
62
+ ?http_proxy: String,
63
+ ?http_open_timeout: (Float | Integer),
64
+ ?http_read_timeout: (Float | Integer),
65
+ ?http_idle_timeout: (Float | Integer),
66
+ ?http_continue_timeout: (Float | Integer),
67
+ ?ssl_timeout: (Float | Integer | nil),
68
+ ?http_wire_trace: bool,
69
+ ?ssl_verify_peer: bool,
70
+ ?ssl_ca_bundle: String,
71
+ ?ssl_ca_directory: String,
72
+ ?ssl_ca_store: String,
73
+ ?on_chunk_received: Proc,
74
+ ?on_chunk_sent: Proc,
75
+ ?raise_response_errors: bool
76
+ ) -> instance
77
+ | (?Hash[Symbol, untyped]) -> instance
78
+
79
+
80
+ interface _ActivateOrganizationsAccessResponseSuccess
81
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivateOrganizationsAccessOutput]
82
+ end
83
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#activate_organizations_access-instance_method
84
+ def activate_organizations_access: (
85
+ ) -> _ActivateOrganizationsAccessResponseSuccess
86
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ActivateOrganizationsAccessResponseSuccess
87
+
88
+ interface _ActivateTypeResponseSuccess
89
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivateTypeOutput]
90
+ def arn: () -> ::String
91
+ end
92
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#activate_type-instance_method
93
+ def activate_type: (
94
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
95
+ ?public_type_arn: ::String,
96
+ ?publisher_id: ::String,
97
+ ?type_name: ::String,
98
+ ?type_name_alias: ::String,
99
+ ?auto_update: bool,
100
+ ?logging_config: {
101
+ log_role_arn: ::String,
102
+ log_group_name: ::String
103
+ },
104
+ ?execution_role_arn: ::String,
105
+ ?version_bump: ("MAJOR" | "MINOR"),
106
+ ?major_version: ::Integer
107
+ ) -> _ActivateTypeResponseSuccess
108
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ActivateTypeResponseSuccess
109
+
110
+ interface _BatchDescribeTypeConfigurationsResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDescribeTypeConfigurationsOutput]
112
+ def errors: () -> ::Array[Types::BatchDescribeTypeConfigurationsError]
113
+ def unprocessed_type_configurations: () -> ::Array[Types::TypeConfigurationIdentifier]
114
+ def type_configurations: () -> ::Array[Types::TypeConfigurationDetails]
115
+ end
116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#batch_describe_type_configurations-instance_method
117
+ def batch_describe_type_configurations: (
118
+ type_configuration_identifiers: Array[
119
+ {
120
+ type_arn: ::String?,
121
+ type_configuration_alias: ::String?,
122
+ type_configuration_arn: ::String?,
123
+ type: ("RESOURCE" | "MODULE" | "HOOK")?,
124
+ type_name: ::String?
125
+ },
126
+ ]
127
+ ) -> _BatchDescribeTypeConfigurationsResponseSuccess
128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeTypeConfigurationsResponseSuccess
129
+
130
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#cancel_update_stack-instance_method
131
+ def cancel_update_stack: (
132
+ stack_name: ::String,
133
+ ?client_request_token: ::String
134
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
136
+
137
+ interface _ContinueUpdateRollbackResponseSuccess
138
+ include ::Seahorse::Client::_ResponseSuccess[Types::ContinueUpdateRollbackOutput]
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#continue_update_rollback-instance_method
141
+ def continue_update_rollback: (
142
+ stack_name: ::String,
143
+ ?role_arn: ::String,
144
+ ?resources_to_skip: Array[::String],
145
+ ?client_request_token: ::String
146
+ ) -> _ContinueUpdateRollbackResponseSuccess
147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ContinueUpdateRollbackResponseSuccess
148
+
149
+ interface _CreateChangeSetResponseSuccess
150
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChangeSetOutput]
151
+ def id: () -> ::String
152
+ def stack_id: () -> ::String
153
+ end
154
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_change_set-instance_method
155
+ def create_change_set: (
156
+ stack_name: ::String,
157
+ ?template_body: ::String,
158
+ ?template_url: ::String,
159
+ ?use_previous_template: bool,
160
+ ?parameters: Array[
161
+ {
162
+ parameter_key: ::String?,
163
+ parameter_value: ::String?,
164
+ use_previous_value: bool?,
165
+ resolved_value: ::String?
166
+ },
167
+ ],
168
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
169
+ ?resource_types: Array[::String],
170
+ ?role_arn: ::String,
171
+ ?rollback_configuration: {
172
+ rollback_triggers: Array[
173
+ {
174
+ arn: ::String,
175
+ type: ::String
176
+ },
177
+ ]?,
178
+ monitoring_time_in_minutes: ::Integer?
179
+ },
180
+ ?notification_arns: Array[::String],
181
+ ?tags: Array[
182
+ {
183
+ key: ::String,
184
+ value: ::String
185
+ },
186
+ ],
187
+ change_set_name: ::String,
188
+ ?client_token: ::String,
189
+ ?description: ::String,
190
+ ?change_set_type: ("CREATE" | "UPDATE" | "IMPORT"),
191
+ ?resources_to_import: Array[
192
+ {
193
+ resource_type: ::String,
194
+ logical_resource_id: ::String,
195
+ resource_identifier: Hash[::String, ::String]
196
+ },
197
+ ],
198
+ ?include_nested_stacks: bool,
199
+ ?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
200
+ ?import_existing_resources: bool
201
+ ) -> _CreateChangeSetResponseSuccess
202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
203
+
204
+ interface _CreateGeneratedTemplateResponseSuccess
205
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGeneratedTemplateOutput]
206
+ def generated_template_id: () -> ::String
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_generated_template-instance_method
209
+ def create_generated_template: (
210
+ ?resources: Array[
211
+ {
212
+ resource_type: ::String,
213
+ logical_resource_id: ::String?,
214
+ resource_identifier: Hash[::String, ::String]
215
+ },
216
+ ],
217
+ generated_template_name: ::String,
218
+ ?stack_name: ::String,
219
+ ?template_configuration: {
220
+ deletion_policy: ("DELETE" | "RETAIN")?,
221
+ update_replace_policy: ("DELETE" | "RETAIN")?
222
+ }
223
+ ) -> _CreateGeneratedTemplateResponseSuccess
224
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGeneratedTemplateResponseSuccess
225
+
226
+ interface _CreateStackResponseSuccess
227
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
228
+ def stack_id: () -> ::String
229
+ end
230
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
231
+ def create_stack: (
232
+ stack_name: ::String,
233
+ ?template_body: ::String,
234
+ ?template_url: ::String,
235
+ ?parameters: Array[
236
+ {
237
+ parameter_key: ::String?,
238
+ parameter_value: ::String?,
239
+ use_previous_value: bool?,
240
+ resolved_value: ::String?
241
+ },
242
+ ],
243
+ ?disable_rollback: bool,
244
+ ?rollback_configuration: {
245
+ rollback_triggers: Array[
246
+ {
247
+ arn: ::String,
248
+ type: ::String
249
+ },
250
+ ]?,
251
+ monitoring_time_in_minutes: ::Integer?
252
+ },
253
+ ?timeout_in_minutes: ::Integer,
254
+ ?notification_arns: Array[::String],
255
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
256
+ ?resource_types: Array[::String],
257
+ ?role_arn: ::String,
258
+ ?on_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
259
+ ?stack_policy_body: ::String,
260
+ ?stack_policy_url: ::String,
261
+ ?tags: Array[
262
+ {
263
+ key: ::String,
264
+ value: ::String
265
+ },
266
+ ],
267
+ ?client_request_token: ::String,
268
+ ?enable_termination_protection: bool,
269
+ ?retain_except_on_create: bool
270
+ ) -> _CreateStackResponseSuccess
271
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
272
+
273
+ interface _CreateStackInstancesResponseSuccess
274
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackInstancesOutput]
275
+ def operation_id: () -> ::String
276
+ end
277
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack_instances-instance_method
278
+ def create_stack_instances: (
279
+ stack_set_name: ::String,
280
+ ?accounts: Array[::String],
281
+ ?deployment_targets: {
282
+ accounts: Array[::String]?,
283
+ accounts_url: ::String?,
284
+ organizational_unit_ids: Array[::String]?,
285
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
286
+ },
287
+ regions: Array[::String],
288
+ ?parameter_overrides: Array[
289
+ {
290
+ parameter_key: ::String?,
291
+ parameter_value: ::String?,
292
+ use_previous_value: bool?,
293
+ resolved_value: ::String?
294
+ },
295
+ ],
296
+ ?operation_preferences: {
297
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
298
+ region_order: Array[::String]?,
299
+ failure_tolerance_count: ::Integer?,
300
+ failure_tolerance_percentage: ::Integer?,
301
+ max_concurrent_count: ::Integer?,
302
+ max_concurrent_percentage: ::Integer?,
303
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
304
+ },
305
+ ?operation_id: ::String,
306
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
307
+ ) -> _CreateStackInstancesResponseSuccess
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackInstancesResponseSuccess
309
+
310
+ interface _CreateStackRefactorResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackRefactorOutput]
312
+ def stack_refactor_id: () -> ::String
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack_refactor-instance_method
315
+ def create_stack_refactor: (
316
+ ?description: ::String,
317
+ ?enable_stack_creation: bool,
318
+ ?resource_mappings: Array[
319
+ {
320
+ source: {
321
+ stack_name: ::String,
322
+ logical_resource_id: ::String
323
+ },
324
+ destination: {
325
+ stack_name: ::String,
326
+ logical_resource_id: ::String
327
+ }
328
+ },
329
+ ],
330
+ stack_definitions: Array[
331
+ {
332
+ stack_name: ::String?,
333
+ template_body: ::String?,
334
+ template_url: ::String?
335
+ },
336
+ ]
337
+ ) -> _CreateStackRefactorResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackRefactorResponseSuccess
339
+
340
+ interface _CreateStackSetResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackSetOutput]
342
+ def stack_set_id: () -> ::String
343
+ end
344
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack_set-instance_method
345
+ def create_stack_set: (
346
+ stack_set_name: ::String,
347
+ ?description: ::String,
348
+ ?template_body: ::String,
349
+ ?template_url: ::String,
350
+ ?stack_id: ::String,
351
+ ?parameters: Array[
352
+ {
353
+ parameter_key: ::String?,
354
+ parameter_value: ::String?,
355
+ use_previous_value: bool?,
356
+ resolved_value: ::String?
357
+ },
358
+ ],
359
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
360
+ ?tags: Array[
361
+ {
362
+ key: ::String,
363
+ value: ::String
364
+ },
365
+ ],
366
+ ?administration_role_arn: ::String,
367
+ ?execution_role_name: ::String,
368
+ ?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
369
+ ?auto_deployment: {
370
+ enabled: bool?,
371
+ retain_stacks_on_account_removal: bool?
372
+ },
373
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
374
+ ?client_request_token: ::String,
375
+ ?managed_execution: {
376
+ active: bool?
377
+ }
378
+ ) -> _CreateStackSetResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackSetResponseSuccess
380
+
381
+ interface _DeactivateOrganizationsAccessResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateOrganizationsAccessOutput]
383
+ end
384
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deactivate_organizations_access-instance_method
385
+ def deactivate_organizations_access: (
386
+ ) -> _DeactivateOrganizationsAccessResponseSuccess
387
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeactivateOrganizationsAccessResponseSuccess
388
+
389
+ interface _DeactivateTypeResponseSuccess
390
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateTypeOutput]
391
+ end
392
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deactivate_type-instance_method
393
+ def deactivate_type: (
394
+ ?type_name: ::String,
395
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
396
+ ?arn: ::String
397
+ ) -> _DeactivateTypeResponseSuccess
398
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeactivateTypeResponseSuccess
399
+
400
+ interface _DeleteChangeSetResponseSuccess
401
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChangeSetOutput]
402
+ end
403
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_change_set-instance_method
404
+ def delete_change_set: (
405
+ change_set_name: ::String,
406
+ ?stack_name: ::String
407
+ ) -> _DeleteChangeSetResponseSuccess
408
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChangeSetResponseSuccess
409
+
410
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_generated_template-instance_method
411
+ def delete_generated_template: (
412
+ generated_template_name: ::String
413
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
414
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
415
+
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack-instance_method
417
+ def delete_stack: (
418
+ stack_name: ::String,
419
+ ?retain_resources: Array[::String],
420
+ ?role_arn: ::String,
421
+ ?client_request_token: ::String,
422
+ ?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
423
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
424
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
425
+
426
+ interface _DeleteStackInstancesResponseSuccess
427
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStackInstancesOutput]
428
+ def operation_id: () -> ::String
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack_instances-instance_method
431
+ def delete_stack_instances: (
432
+ stack_set_name: ::String,
433
+ ?accounts: Array[::String],
434
+ ?deployment_targets: {
435
+ accounts: Array[::String]?,
436
+ accounts_url: ::String?,
437
+ organizational_unit_ids: Array[::String]?,
438
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
439
+ },
440
+ regions: Array[::String],
441
+ ?operation_preferences: {
442
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
443
+ region_order: Array[::String]?,
444
+ failure_tolerance_count: ::Integer?,
445
+ failure_tolerance_percentage: ::Integer?,
446
+ max_concurrent_count: ::Integer?,
447
+ max_concurrent_percentage: ::Integer?,
448
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
449
+ },
450
+ retain_stacks: bool,
451
+ ?operation_id: ::String,
452
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
453
+ ) -> _DeleteStackInstancesResponseSuccess
454
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackInstancesResponseSuccess
455
+
456
+ interface _DeleteStackSetResponseSuccess
457
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStackSetOutput]
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack_set-instance_method
460
+ def delete_stack_set: (
461
+ stack_set_name: ::String,
462
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
463
+ ) -> _DeleteStackSetResponseSuccess
464
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackSetResponseSuccess
465
+
466
+ interface _DeregisterTypeResponseSuccess
467
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterTypeOutput]
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deregister_type-instance_method
470
+ def deregister_type: (
471
+ ?arn: ::String,
472
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
473
+ ?type_name: ::String,
474
+ ?version_id: ::String
475
+ ) -> _DeregisterTypeResponseSuccess
476
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterTypeResponseSuccess
477
+
478
+ interface _DescribeAccountLimitsResponseSuccess
479
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountLimitsOutput]
480
+ def account_limits: () -> ::Array[Types::AccountLimit]
481
+ def next_token: () -> ::String
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_account_limits-instance_method
484
+ def describe_account_limits: (
485
+ ?next_token: ::String
486
+ ) -> _DescribeAccountLimitsResponseSuccess
487
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountLimitsResponseSuccess
488
+
489
+ interface _DescribeChangeSetResponseSuccess
490
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetOutput]
491
+ def change_set_name: () -> ::String
492
+ def change_set_id: () -> ::String
493
+ def stack_id: () -> ::String
494
+ def stack_name: () -> ::String
495
+ def description: () -> ::String
496
+ def parameters: () -> ::Array[Types::Parameter]
497
+ def creation_time: () -> ::Time
498
+ def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
499
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
500
+ def status_reason: () -> ::String
501
+ def notification_arns: () -> ::Array[::String]
502
+ def rollback_configuration: () -> Types::RollbackConfiguration
503
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
504
+ def tags: () -> ::Array[Types::Tag]
505
+ def changes: () -> ::Array[Types::Change]
506
+ def next_token: () -> ::String
507
+ def include_nested_stacks: () -> bool
508
+ def parent_change_set_id: () -> ::String
509
+ def root_change_set_id: () -> ::String
510
+ def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
511
+ def import_existing_resources: () -> bool
512
+ end
513
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
514
+ def describe_change_set: (
515
+ change_set_name: ::String,
516
+ ?stack_name: ::String,
517
+ ?next_token: ::String,
518
+ ?include_property_values: bool
519
+ ) -> _DescribeChangeSetResponseSuccess
520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetResponseSuccess
521
+
522
+ interface _DescribeChangeSetHooksResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetHooksOutput]
524
+ def change_set_id: () -> ::String
525
+ def change_set_name: () -> ::String
526
+ def hooks: () -> ::Array[Types::ChangeSetHook]
527
+ def status: () -> ("PLANNING" | "PLANNED" | "UNAVAILABLE")
528
+ def next_token: () -> ::String
529
+ def stack_id: () -> ::String
530
+ def stack_name: () -> ::String
531
+ end
532
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set_hooks-instance_method
533
+ def describe_change_set_hooks: (
534
+ change_set_name: ::String,
535
+ ?stack_name: ::String,
536
+ ?next_token: ::String,
537
+ ?logical_resource_id: ::String
538
+ ) -> _DescribeChangeSetHooksResponseSuccess
539
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
540
+
541
+ interface _DescribeGeneratedTemplateResponseSuccess
542
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGeneratedTemplateOutput]
543
+ def generated_template_id: () -> ::String
544
+ def generated_template_name: () -> ::String
545
+ def resources: () -> ::Array[Types::ResourceDetail]
546
+ def status: () -> ("CREATE_PENDING" | "UPDATE_PENDING" | "DELETE_PENDING" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "COMPLETE")
547
+ def status_reason: () -> ::String
548
+ def creation_time: () -> ::Time
549
+ def last_updated_time: () -> ::Time
550
+ def progress: () -> Types::TemplateProgress
551
+ def stack_id: () -> ::String
552
+ def template_configuration: () -> Types::TemplateConfiguration
553
+ def total_warnings: () -> ::Integer
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_generated_template-instance_method
556
+ def describe_generated_template: (
557
+ generated_template_name: ::String
558
+ ) -> _DescribeGeneratedTemplateResponseSuccess
559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGeneratedTemplateResponseSuccess
560
+
561
+ interface _DescribeOrganizationsAccessResponseSuccess
562
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOrganizationsAccessOutput]
563
+ def status: () -> ("ENABLED" | "DISABLED" | "DISABLED_PERMANENTLY")
564
+ end
565
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_organizations_access-instance_method
566
+ def describe_organizations_access: (
567
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
568
+ ) -> _DescribeOrganizationsAccessResponseSuccess
569
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOrganizationsAccessResponseSuccess
570
+
571
+ interface _DescribePublisherResponseSuccess
572
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePublisherOutput]
573
+ def publisher_id: () -> ::String
574
+ def publisher_status: () -> ("VERIFIED" | "UNVERIFIED")
575
+ def identity_provider: () -> ("AWS_Marketplace" | "GitHub" | "Bitbucket")
576
+ def publisher_profile: () -> ::String
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_publisher-instance_method
579
+ def describe_publisher: (
580
+ ?publisher_id: ::String
581
+ ) -> _DescribePublisherResponseSuccess
582
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePublisherResponseSuccess
583
+
584
+ interface _DescribeResourceScanResponseSuccess
585
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeResourceScanOutput]
586
+ def resource_scan_id: () -> ::String
587
+ def status: () -> ("IN_PROGRESS" | "FAILED" | "COMPLETE" | "EXPIRED")
588
+ def status_reason: () -> ::String
589
+ def start_time: () -> ::Time
590
+ def end_time: () -> ::Time
591
+ def percentage_completed: () -> ::Float
592
+ def resource_types: () -> ::Array[::String]
593
+ def resources_scanned: () -> ::Integer
594
+ def resources_read: () -> ::Integer
595
+ def scan_filters: () -> ::Array[Types::ScanFilter]
596
+ end
597
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_resource_scan-instance_method
598
+ def describe_resource_scan: (
599
+ resource_scan_id: ::String
600
+ ) -> _DescribeResourceScanResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeResourceScanResponseSuccess
602
+
603
+ interface _DescribeStackDriftDetectionStatusResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackDriftDetectionStatusOutput]
605
+ def stack_id: () -> ::String
606
+ def stack_drift_detection_id: () -> ::String
607
+ def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
608
+ def detection_status: () -> ("DETECTION_IN_PROGRESS" | "DETECTION_FAILED" | "DETECTION_COMPLETE")
609
+ def detection_status_reason: () -> ::String
610
+ def drifted_stack_resource_count: () -> ::Integer
611
+ def timestamp: () -> ::Time
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_drift_detection_status-instance_method
614
+ def describe_stack_drift_detection_status: (
615
+ stack_drift_detection_id: ::String
616
+ ) -> _DescribeStackDriftDetectionStatusResponseSuccess
617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackDriftDetectionStatusResponseSuccess
618
+
619
+ interface _DescribeStackEventsResponseSuccess
620
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackEventsOutput]
621
+ def stack_events: () -> ::Array[Types::StackEvent]
622
+ def next_token: () -> ::String
623
+ end
624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
625
+ def describe_stack_events: (
626
+ ?stack_name: ::String,
627
+ ?next_token: ::String
628
+ ) -> _DescribeStackEventsResponseSuccess
629
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
630
+
631
+ interface _DescribeStackInstanceResponseSuccess
632
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
633
+ def stack_instance: () -> Types::StackInstance
634
+ end
635
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_instance-instance_method
636
+ def describe_stack_instance: (
637
+ stack_set_name: ::String,
638
+ stack_instance_account: ::String,
639
+ stack_instance_region: ::String,
640
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
641
+ ) -> _DescribeStackInstanceResponseSuccess
642
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackInstanceResponseSuccess
643
+
644
+ interface _DescribeStackRefactorResponseSuccess
645
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackRefactorOutput]
646
+ def description: () -> ::String
647
+ def stack_refactor_id: () -> ::String
648
+ def stack_ids: () -> ::Array[::String]
649
+ def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "OBSOLETE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
650
+ def execution_status_reason: () -> ::String
651
+ def status: () -> ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
652
+ def status_reason: () -> ::String
653
+ end
654
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_refactor-instance_method
655
+ def describe_stack_refactor: (
656
+ stack_refactor_id: ::String
657
+ ) -> _DescribeStackRefactorResponseSuccess
658
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackRefactorResponseSuccess
659
+
660
+ interface _DescribeStackResourceResponseSuccess
661
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourceOutput]
662
+ def stack_resource_detail: () -> Types::StackResourceDetail
663
+ end
664
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource-instance_method
665
+ def describe_stack_resource: (
666
+ stack_name: ::String,
667
+ logical_resource_id: ::String
668
+ ) -> _DescribeStackResourceResponseSuccess
669
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourceResponseSuccess
670
+
671
+ interface _DescribeStackResourceDriftsResponseSuccess
672
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourceDriftsOutput]
673
+ def stack_resource_drifts: () -> ::Array[Types::StackResourceDrift]
674
+ def next_token: () -> ::String
675
+ end
676
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
677
+ def describe_stack_resource_drifts: (
678
+ stack_name: ::String,
679
+ ?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
680
+ ?next_token: ::String,
681
+ ?max_results: ::Integer
682
+ ) -> _DescribeStackResourceDriftsResponseSuccess
683
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourceDriftsResponseSuccess
684
+
685
+ interface _DescribeStackResourcesResponseSuccess
686
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourcesOutput]
687
+ def stack_resources: () -> ::Array[Types::StackResource]
688
+ end
689
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resources-instance_method
690
+ def describe_stack_resources: (
691
+ ?stack_name: ::String,
692
+ ?logical_resource_id: ::String,
693
+ ?physical_resource_id: ::String
694
+ ) -> _DescribeStackResourcesResponseSuccess
695
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourcesResponseSuccess
696
+
697
+ interface _DescribeStackSetResponseSuccess
698
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackSetOutput]
699
+ def stack_set: () -> Types::StackSet
700
+ end
701
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_set-instance_method
702
+ def describe_stack_set: (
703
+ stack_set_name: ::String,
704
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
705
+ ) -> _DescribeStackSetResponseSuccess
706
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackSetResponseSuccess
707
+
708
+ interface _DescribeStackSetOperationResponseSuccess
709
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackSetOperationOutput]
710
+ def stack_set_operation: () -> Types::StackSetOperation
711
+ end
712
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_set_operation-instance_method
713
+ def describe_stack_set_operation: (
714
+ stack_set_name: ::String,
715
+ operation_id: ::String,
716
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
717
+ ) -> _DescribeStackSetOperationResponseSuccess
718
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackSetOperationResponseSuccess
719
+
720
+ interface _DescribeStacksResponseSuccess
721
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStacksOutput]
722
+ def stacks: () -> ::Array[Types::Stack]
723
+ def next_token: () -> ::String
724
+ end
725
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stacks-instance_method
726
+ def describe_stacks: (
727
+ ?stack_name: ::String,
728
+ ?next_token: ::String
729
+ ) -> _DescribeStacksResponseSuccess
730
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
731
+
732
+ interface _DescribeTypeResponseSuccess
733
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTypeOutput]
734
+ def arn: () -> ::String
735
+ def type: () -> ("RESOURCE" | "MODULE" | "HOOK")
736
+ def type_name: () -> ::String
737
+ def default_version_id: () -> ::String
738
+ def is_default_version: () -> bool
739
+ def type_tests_status: () -> ("PASSED" | "FAILED" | "IN_PROGRESS" | "NOT_TESTED")
740
+ def type_tests_status_description: () -> ::String
741
+ def description: () -> ::String
742
+ def schema: () -> ::String
743
+ def provisioning_type: () -> ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE")
744
+ def deprecated_status: () -> ("LIVE" | "DEPRECATED")
745
+ def logging_config: () -> Types::LoggingConfig
746
+ def required_activated_types: () -> ::Array[Types::RequiredActivatedType]
747
+ def execution_role_arn: () -> ::String
748
+ def visibility: () -> ("PUBLIC" | "PRIVATE")
749
+ def source_url: () -> ::String
750
+ def documentation_url: () -> ::String
751
+ def last_updated: () -> ::Time
752
+ def time_created: () -> ::Time
753
+ def configuration_schema: () -> ::String
754
+ def publisher_id: () -> ::String
755
+ def original_type_name: () -> ::String
756
+ def original_type_arn: () -> ::String
757
+ def public_version_number: () -> ::String
758
+ def latest_public_version: () -> ::String
759
+ def is_activated: () -> bool
760
+ def auto_update: () -> bool
761
+ end
762
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_type-instance_method
763
+ def describe_type: (
764
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
765
+ ?type_name: ::String,
766
+ ?arn: ::String,
767
+ ?version_id: ::String,
768
+ ?publisher_id: ::String,
769
+ ?public_version_number: ::String
770
+ ) -> _DescribeTypeResponseSuccess
771
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTypeResponseSuccess
772
+
773
+ interface _DescribeTypeRegistrationResponseSuccess
774
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTypeRegistrationOutput]
775
+ def progress_status: () -> ("COMPLETE" | "IN_PROGRESS" | "FAILED")
776
+ def description: () -> ::String
777
+ def type_arn: () -> ::String
778
+ def type_version_arn: () -> ::String
779
+ end
780
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_type_registration-instance_method
781
+ def describe_type_registration: (
782
+ registration_token: ::String
783
+ ) -> _DescribeTypeRegistrationResponseSuccess
784
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTypeRegistrationResponseSuccess
785
+
786
+ interface _DetectStackDriftResponseSuccess
787
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackDriftOutput]
788
+ def stack_drift_detection_id: () -> ::String
789
+ end
790
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_drift-instance_method
791
+ def detect_stack_drift: (
792
+ stack_name: ::String,
793
+ ?logical_resource_ids: Array[::String]
794
+ ) -> _DetectStackDriftResponseSuccess
795
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackDriftResponseSuccess
796
+
797
+ interface _DetectStackResourceDriftResponseSuccess
798
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackResourceDriftOutput]
799
+ def stack_resource_drift: () -> Types::StackResourceDrift
800
+ end
801
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_resource_drift-instance_method
802
+ def detect_stack_resource_drift: (
803
+ stack_name: ::String,
804
+ logical_resource_id: ::String
805
+ ) -> _DetectStackResourceDriftResponseSuccess
806
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackResourceDriftResponseSuccess
807
+
808
+ interface _DetectStackSetDriftResponseSuccess
809
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackSetDriftOutput]
810
+ def operation_id: () -> ::String
811
+ end
812
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_set_drift-instance_method
813
+ def detect_stack_set_drift: (
814
+ stack_set_name: ::String,
815
+ ?operation_preferences: {
816
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
817
+ region_order: Array[::String]?,
818
+ failure_tolerance_count: ::Integer?,
819
+ failure_tolerance_percentage: ::Integer?,
820
+ max_concurrent_count: ::Integer?,
821
+ max_concurrent_percentage: ::Integer?,
822
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
823
+ },
824
+ ?operation_id: ::String,
825
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
826
+ ) -> _DetectStackSetDriftResponseSuccess
827
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackSetDriftResponseSuccess
828
+
829
+ interface _EstimateTemplateCostResponseSuccess
830
+ include ::Seahorse::Client::_ResponseSuccess[Types::EstimateTemplateCostOutput]
831
+ def url: () -> ::String
832
+ end
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#estimate_template_cost-instance_method
834
+ def estimate_template_cost: (
835
+ ?template_body: ::String,
836
+ ?template_url: ::String,
837
+ ?parameters: Array[
838
+ {
839
+ parameter_key: ::String?,
840
+ parameter_value: ::String?,
841
+ use_previous_value: bool?,
842
+ resolved_value: ::String?
843
+ },
844
+ ]
845
+ ) -> _EstimateTemplateCostResponseSuccess
846
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EstimateTemplateCostResponseSuccess
847
+
848
+ interface _ExecuteChangeSetResponseSuccess
849
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExecuteChangeSetOutput]
850
+ end
851
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#execute_change_set-instance_method
852
+ def execute_change_set: (
853
+ change_set_name: ::String,
854
+ ?stack_name: ::String,
855
+ ?client_request_token: ::String,
856
+ ?disable_rollback: bool,
857
+ ?retain_except_on_create: bool
858
+ ) -> _ExecuteChangeSetResponseSuccess
859
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExecuteChangeSetResponseSuccess
860
+
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#execute_stack_refactor-instance_method
862
+ def execute_stack_refactor: (
863
+ stack_refactor_id: ::String
864
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
866
+
867
+ interface _GetGeneratedTemplateResponseSuccess
868
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGeneratedTemplateOutput]
869
+ def status: () -> ("CREATE_PENDING" | "UPDATE_PENDING" | "DELETE_PENDING" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "COMPLETE")
870
+ def template_body: () -> ::String
871
+ end
872
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_generated_template-instance_method
873
+ def get_generated_template: (
874
+ ?format: ("JSON" | "YAML"),
875
+ generated_template_name: ::String
876
+ ) -> _GetGeneratedTemplateResponseSuccess
877
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGeneratedTemplateResponseSuccess
878
+
879
+ interface _GetStackPolicyResponseSuccess
880
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
881
+ def stack_policy_body: () -> ::String
882
+ end
883
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_stack_policy-instance_method
884
+ def get_stack_policy: (
885
+ stack_name: ::String
886
+ ) -> _GetStackPolicyResponseSuccess
887
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStackPolicyResponseSuccess
888
+
889
+ interface _GetTemplateResponseSuccess
890
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateOutput]
891
+ def template_body: () -> ::String
892
+ def stages_available: () -> ::Array[("Original" | "Processed")]
893
+ end
894
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_template-instance_method
895
+ def get_template: (
896
+ ?stack_name: ::String,
897
+ ?change_set_name: ::String,
898
+ ?template_stage: ("Original" | "Processed")
899
+ ) -> _GetTemplateResponseSuccess
900
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateResponseSuccess
901
+
902
+ interface _GetTemplateSummaryResponseSuccess
903
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateSummaryOutput]
904
+ def parameters: () -> ::Array[Types::ParameterDeclaration]
905
+ def description: () -> ::String
906
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
907
+ def capabilities_reason: () -> ::String
908
+ def resource_types: () -> ::Array[::String]
909
+ def version: () -> ::String
910
+ def metadata: () -> ::String
911
+ def declared_transforms: () -> ::Array[::String]
912
+ def resource_identifier_summaries: () -> ::Array[Types::ResourceIdentifierSummary]
913
+ def warnings: () -> Types::Warnings
914
+ end
915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_template_summary-instance_method
916
+ def get_template_summary: (
917
+ ?template_body: ::String,
918
+ ?template_url: ::String,
919
+ ?stack_name: ::String,
920
+ ?stack_set_name: ::String,
921
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
922
+ ?template_summary_config: {
923
+ treat_unrecognized_resource_types_as_warnings: bool?
924
+ }
925
+ ) -> _GetTemplateSummaryResponseSuccess
926
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateSummaryResponseSuccess
927
+
928
+ interface _ImportStacksToStackSetResponseSuccess
929
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportStacksToStackSetOutput]
930
+ def operation_id: () -> ::String
931
+ end
932
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#import_stacks_to_stack_set-instance_method
933
+ def import_stacks_to_stack_set: (
934
+ stack_set_name: ::String,
935
+ ?stack_ids: Array[::String],
936
+ ?stack_ids_url: ::String,
937
+ ?organizational_unit_ids: Array[::String],
938
+ ?operation_preferences: {
939
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
940
+ region_order: Array[::String]?,
941
+ failure_tolerance_count: ::Integer?,
942
+ failure_tolerance_percentage: ::Integer?,
943
+ max_concurrent_count: ::Integer?,
944
+ max_concurrent_percentage: ::Integer?,
945
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
946
+ },
947
+ ?operation_id: ::String,
948
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
949
+ ) -> _ImportStacksToStackSetResponseSuccess
950
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportStacksToStackSetResponseSuccess
951
+
952
+ interface _ListChangeSetsResponseSuccess
953
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChangeSetsOutput]
954
+ def summaries: () -> ::Array[Types::ChangeSetSummary]
955
+ def next_token: () -> ::String
956
+ end
957
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_change_sets-instance_method
958
+ def list_change_sets: (
959
+ stack_name: ::String,
960
+ ?next_token: ::String
961
+ ) -> _ListChangeSetsResponseSuccess
962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChangeSetsResponseSuccess
963
+
964
+ interface _ListExportsResponseSuccess
965
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExportsOutput]
966
+ def exports: () -> ::Array[Types::Export]
967
+ def next_token: () -> ::String
968
+ end
969
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_exports-instance_method
970
+ def list_exports: (
971
+ ?next_token: ::String
972
+ ) -> _ListExportsResponseSuccess
973
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportsResponseSuccess
974
+
975
+ interface _ListGeneratedTemplatesResponseSuccess
976
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGeneratedTemplatesOutput]
977
+ def summaries: () -> ::Array[Types::TemplateSummary]
978
+ def next_token: () -> ::String
979
+ end
980
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_generated_templates-instance_method
981
+ def list_generated_templates: (
982
+ ?next_token: ::String,
983
+ ?max_results: ::Integer
984
+ ) -> _ListGeneratedTemplatesResponseSuccess
985
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGeneratedTemplatesResponseSuccess
986
+
987
+ interface _ListHookResultsResponseSuccess
988
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHookResultsOutput]
989
+ def target_type: () -> ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
990
+ def target_id: () -> ::String
991
+ def hook_results: () -> ::Array[Types::HookResultSummary]
992
+ def next_token: () -> ::String
993
+ end
994
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_hook_results-instance_method
995
+ def list_hook_results: (
996
+ target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
997
+ target_id: ::String,
998
+ ?next_token: ::String
999
+ ) -> _ListHookResultsResponseSuccess
1000
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
1001
+
1002
+ interface _ListImportsResponseSuccess
1003
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
1004
+ def imports: () -> ::Array[::String]
1005
+ def next_token: () -> ::String
1006
+ end
1007
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_imports-instance_method
1008
+ def list_imports: (
1009
+ export_name: ::String,
1010
+ ?next_token: ::String
1011
+ ) -> _ListImportsResponseSuccess
1012
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportsResponseSuccess
1013
+
1014
+ interface _ListResourceScanRelatedResourcesResponseSuccess
1015
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceScanRelatedResourcesOutput]
1016
+ def related_resources: () -> ::Array[Types::ScannedResource]
1017
+ def next_token: () -> ::String
1018
+ end
1019
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_resource_scan_related_resources-instance_method
1020
+ def list_resource_scan_related_resources: (
1021
+ resource_scan_id: ::String,
1022
+ resources: Array[
1023
+ {
1024
+ resource_type: ::String,
1025
+ resource_identifier: Hash[::String, ::String]
1026
+ },
1027
+ ],
1028
+ ?next_token: ::String,
1029
+ ?max_results: ::Integer
1030
+ ) -> _ListResourceScanRelatedResourcesResponseSuccess
1031
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceScanRelatedResourcesResponseSuccess
1032
+
1033
+ interface _ListResourceScanResourcesResponseSuccess
1034
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceScanResourcesOutput]
1035
+ def resources: () -> ::Array[Types::ScannedResource]
1036
+ def next_token: () -> ::String
1037
+ end
1038
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_resource_scan_resources-instance_method
1039
+ def list_resource_scan_resources: (
1040
+ resource_scan_id: ::String,
1041
+ ?resource_identifier: ::String,
1042
+ ?resource_type_prefix: ::String,
1043
+ ?tag_key: ::String,
1044
+ ?tag_value: ::String,
1045
+ ?next_token: ::String,
1046
+ ?max_results: ::Integer
1047
+ ) -> _ListResourceScanResourcesResponseSuccess
1048
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceScanResourcesResponseSuccess
1049
+
1050
+ interface _ListResourceScansResponseSuccess
1051
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceScansOutput]
1052
+ def resource_scan_summaries: () -> ::Array[Types::ResourceScanSummary]
1053
+ def next_token: () -> ::String
1054
+ end
1055
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_resource_scans-instance_method
1056
+ def list_resource_scans: (
1057
+ ?next_token: ::String,
1058
+ ?max_results: ::Integer,
1059
+ ?scan_type_filter: ("FULL" | "PARTIAL")
1060
+ ) -> _ListResourceScansResponseSuccess
1061
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceScansResponseSuccess
1062
+
1063
+ interface _ListStackInstanceResourceDriftsResponseSuccess
1064
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackInstanceResourceDriftsOutput]
1065
+ def summaries: () -> ::Array[Types::StackInstanceResourceDriftsSummary]
1066
+ def next_token: () -> ::String
1067
+ end
1068
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_instance_resource_drifts-instance_method
1069
+ def list_stack_instance_resource_drifts: (
1070
+ stack_set_name: ::String,
1071
+ ?next_token: ::String,
1072
+ ?max_results: ::Integer,
1073
+ ?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
1074
+ stack_instance_account: ::String,
1075
+ stack_instance_region: ::String,
1076
+ operation_id: ::String,
1077
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1078
+ ) -> _ListStackInstanceResourceDriftsResponseSuccess
1079
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackInstanceResourceDriftsResponseSuccess
1080
+
1081
+ interface _ListStackInstancesResponseSuccess
1082
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackInstancesOutput]
1083
+ def summaries: () -> ::Array[Types::StackInstanceSummary]
1084
+ def next_token: () -> ::String
1085
+ end
1086
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_instances-instance_method
1087
+ def list_stack_instances: (
1088
+ stack_set_name: ::String,
1089
+ ?next_token: ::String,
1090
+ ?max_results: ::Integer,
1091
+ ?filters: Array[
1092
+ {
1093
+ name: ("DETAILED_STATUS" | "LAST_OPERATION_ID" | "DRIFT_STATUS")?,
1094
+ values: ::String?
1095
+ },
1096
+ ],
1097
+ ?stack_instance_account: ::String,
1098
+ ?stack_instance_region: ::String,
1099
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1100
+ ) -> _ListStackInstancesResponseSuccess
1101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackInstancesResponseSuccess
1102
+
1103
+ interface _ListStackRefactorActionsResponseSuccess
1104
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackRefactorActionsOutput]
1105
+ def stack_refactor_actions: () -> ::Array[Types::StackRefactorAction]
1106
+ def next_token: () -> ::String
1107
+ end
1108
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_refactor_actions-instance_method
1109
+ def list_stack_refactor_actions: (
1110
+ stack_refactor_id: ::String,
1111
+ ?next_token: ::String,
1112
+ ?max_results: ::Integer
1113
+ ) -> _ListStackRefactorActionsResponseSuccess
1114
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackRefactorActionsResponseSuccess
1115
+
1116
+ interface _ListStackRefactorsResponseSuccess
1117
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackRefactorsOutput]
1118
+ def stack_refactor_summaries: () -> ::Array[Types::StackRefactorSummary]
1119
+ def next_token: () -> ::String
1120
+ end
1121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_refactors-instance_method
1122
+ def list_stack_refactors: (
1123
+ ?execution_status_filter: Array[("UNAVAILABLE" | "AVAILABLE" | "OBSOLETE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")],
1124
+ ?next_token: ::String,
1125
+ ?max_results: ::Integer
1126
+ ) -> _ListStackRefactorsResponseSuccess
1127
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackRefactorsResponseSuccess
1128
+
1129
+ interface _ListStackResourcesResponseSuccess
1130
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackResourcesOutput]
1131
+ def stack_resource_summaries: () -> ::Array[Types::StackResourceSummary]
1132
+ def next_token: () -> ::String
1133
+ end
1134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_resources-instance_method
1135
+ def list_stack_resources: (
1136
+ stack_name: ::String,
1137
+ ?next_token: ::String
1138
+ ) -> _ListStackResourcesResponseSuccess
1139
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackResourcesResponseSuccess
1140
+
1141
+ interface _ListStackSetAutoDeploymentTargetsResponseSuccess
1142
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetAutoDeploymentTargetsOutput]
1143
+ def summaries: () -> ::Array[Types::StackSetAutoDeploymentTargetSummary]
1144
+ def next_token: () -> ::String
1145
+ end
1146
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_auto_deployment_targets-instance_method
1147
+ def list_stack_set_auto_deployment_targets: (
1148
+ stack_set_name: ::String,
1149
+ ?next_token: ::String,
1150
+ ?max_results: ::Integer,
1151
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1152
+ ) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
1153
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
1154
+
1155
+ interface _ListStackSetOperationResultsResponseSuccess
1156
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationResultsOutput]
1157
+ def summaries: () -> ::Array[Types::StackSetOperationResultSummary]
1158
+ def next_token: () -> ::String
1159
+ end
1160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_operation_results-instance_method
1161
+ def list_stack_set_operation_results: (
1162
+ stack_set_name: ::String,
1163
+ operation_id: ::String,
1164
+ ?next_token: ::String,
1165
+ ?max_results: ::Integer,
1166
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
1167
+ ?filters: Array[
1168
+ {
1169
+ name: ("OPERATION_RESULT_STATUS")?,
1170
+ values: ::String?
1171
+ },
1172
+ ]
1173
+ ) -> _ListStackSetOperationResultsResponseSuccess
1174
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetOperationResultsResponseSuccess
1175
+
1176
+ interface _ListStackSetOperationsResponseSuccess
1177
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationsOutput]
1178
+ def summaries: () -> ::Array[Types::StackSetOperationSummary]
1179
+ def next_token: () -> ::String
1180
+ end
1181
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_operations-instance_method
1182
+ def list_stack_set_operations: (
1183
+ stack_set_name: ::String,
1184
+ ?next_token: ::String,
1185
+ ?max_results: ::Integer,
1186
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1187
+ ) -> _ListStackSetOperationsResponseSuccess
1188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetOperationsResponseSuccess
1189
+
1190
+ interface _ListStackSetsResponseSuccess
1191
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetsOutput]
1192
+ def summaries: () -> ::Array[Types::StackSetSummary]
1193
+ def next_token: () -> ::String
1194
+ end
1195
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_sets-instance_method
1196
+ def list_stack_sets: (
1197
+ ?next_token: ::String,
1198
+ ?max_results: ::Integer,
1199
+ ?status: ("ACTIVE" | "DELETED"),
1200
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1201
+ ) -> _ListStackSetsResponseSuccess
1202
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetsResponseSuccess
1203
+
1204
+ interface _ListStacksResponseSuccess
1205
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStacksOutput]
1206
+ def stack_summaries: () -> ::Array[Types::StackSummary]
1207
+ def next_token: () -> ::String
1208
+ end
1209
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stacks-instance_method
1210
+ def list_stacks: (
1211
+ ?next_token: ::String,
1212
+ ?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")]
1213
+ ) -> _ListStacksResponseSuccess
1214
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStacksResponseSuccess
1215
+
1216
+ interface _ListTypeRegistrationsResponseSuccess
1217
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypeRegistrationsOutput]
1218
+ def registration_token_list: () -> ::Array[::String]
1219
+ def next_token: () -> ::String
1220
+ end
1221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_type_registrations-instance_method
1222
+ def list_type_registrations: (
1223
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1224
+ ?type_name: ::String,
1225
+ ?type_arn: ::String,
1226
+ ?registration_status_filter: ("COMPLETE" | "IN_PROGRESS" | "FAILED"),
1227
+ ?max_results: ::Integer,
1228
+ ?next_token: ::String
1229
+ ) -> _ListTypeRegistrationsResponseSuccess
1230
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypeRegistrationsResponseSuccess
1231
+
1232
+ interface _ListTypeVersionsResponseSuccess
1233
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypeVersionsOutput]
1234
+ def type_version_summaries: () -> ::Array[Types::TypeVersionSummary]
1235
+ def next_token: () -> ::String
1236
+ end
1237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_type_versions-instance_method
1238
+ def list_type_versions: (
1239
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1240
+ ?type_name: ::String,
1241
+ ?arn: ::String,
1242
+ ?max_results: ::Integer,
1243
+ ?next_token: ::String,
1244
+ ?deprecated_status: ("LIVE" | "DEPRECATED"),
1245
+ ?publisher_id: ::String
1246
+ ) -> _ListTypeVersionsResponseSuccess
1247
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypeVersionsResponseSuccess
1248
+
1249
+ interface _ListTypesResponseSuccess
1250
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypesOutput]
1251
+ def type_summaries: () -> ::Array[Types::TypeSummary]
1252
+ def next_token: () -> ::String
1253
+ end
1254
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_types-instance_method
1255
+ def list_types: (
1256
+ ?visibility: ("PUBLIC" | "PRIVATE"),
1257
+ ?provisioning_type: ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE"),
1258
+ ?deprecated_status: ("LIVE" | "DEPRECATED"),
1259
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1260
+ ?filters: {
1261
+ category: ("REGISTERED" | "ACTIVATED" | "THIRD_PARTY" | "AWS_TYPES")?,
1262
+ publisher_id: ::String?,
1263
+ type_name_prefix: ::String?
1264
+ },
1265
+ ?max_results: ::Integer,
1266
+ ?next_token: ::String
1267
+ ) -> _ListTypesResponseSuccess
1268
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypesResponseSuccess
1269
+
1270
+ interface _PublishTypeResponseSuccess
1271
+ include ::Seahorse::Client::_ResponseSuccess[Types::PublishTypeOutput]
1272
+ def public_type_arn: () -> ::String
1273
+ end
1274
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#publish_type-instance_method
1275
+ def publish_type: (
1276
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1277
+ ?arn: ::String,
1278
+ ?type_name: ::String,
1279
+ ?public_version_number: ::String
1280
+ ) -> _PublishTypeResponseSuccess
1281
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishTypeResponseSuccess
1282
+
1283
+ interface _RecordHandlerProgressResponseSuccess
1284
+ include ::Seahorse::Client::_ResponseSuccess[Types::RecordHandlerProgressOutput]
1285
+ end
1286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#record_handler_progress-instance_method
1287
+ def record_handler_progress: (
1288
+ bearer_token: ::String,
1289
+ operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED"),
1290
+ ?current_operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED"),
1291
+ ?status_message: ::String,
1292
+ ?error_code: ("NotUpdatable" | "InvalidRequest" | "AccessDenied" | "InvalidCredentials" | "AlreadyExists" | "NotFound" | "ResourceConflict" | "Throttling" | "ServiceLimitExceeded" | "NotStabilized" | "GeneralServiceException" | "ServiceInternalError" | "NetworkFailure" | "InternalFailure" | "InvalidTypeConfiguration" | "HandlerInternalFailure" | "NonCompliant" | "Unknown" | "UnsupportedTarget"),
1293
+ ?resource_model: ::String,
1294
+ ?client_request_token: ::String
1295
+ ) -> _RecordHandlerProgressResponseSuccess
1296
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RecordHandlerProgressResponseSuccess
1297
+
1298
+ interface _RegisterPublisherResponseSuccess
1299
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterPublisherOutput]
1300
+ def publisher_id: () -> ::String
1301
+ end
1302
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#register_publisher-instance_method
1303
+ def register_publisher: (
1304
+ ?accept_terms_and_conditions: bool,
1305
+ ?connection_arn: ::String
1306
+ ) -> _RegisterPublisherResponseSuccess
1307
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterPublisherResponseSuccess
1308
+
1309
+ interface _RegisterTypeResponseSuccess
1310
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterTypeOutput]
1311
+ def registration_token: () -> ::String
1312
+ end
1313
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#register_type-instance_method
1314
+ def register_type: (
1315
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1316
+ type_name: ::String,
1317
+ schema_handler_package: ::String,
1318
+ ?logging_config: {
1319
+ log_role_arn: ::String,
1320
+ log_group_name: ::String
1321
+ },
1322
+ ?execution_role_arn: ::String,
1323
+ ?client_request_token: ::String
1324
+ ) -> _RegisterTypeResponseSuccess
1325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTypeResponseSuccess
1326
+
1327
+ interface _RollbackStackResponseSuccess
1328
+ include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
1329
+ def stack_id: () -> ::String
1330
+ end
1331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
1332
+ def rollback_stack: (
1333
+ stack_name: ::String,
1334
+ ?role_arn: ::String,
1335
+ ?client_request_token: ::String,
1336
+ ?retain_except_on_create: bool
1337
+ ) -> _RollbackStackResponseSuccess
1338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RollbackStackResponseSuccess
1339
+
1340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_stack_policy-instance_method
1341
+ def set_stack_policy: (
1342
+ stack_name: ::String,
1343
+ ?stack_policy_body: ::String,
1344
+ ?stack_policy_url: ::String
1345
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1347
+
1348
+ interface _SetTypeConfigurationResponseSuccess
1349
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetTypeConfigurationOutput]
1350
+ def configuration_arn: () -> ::String
1351
+ end
1352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_type_configuration-instance_method
1353
+ def set_type_configuration: (
1354
+ ?type_arn: ::String,
1355
+ configuration: ::String,
1356
+ ?configuration_alias: ::String,
1357
+ ?type_name: ::String,
1358
+ ?type: ("RESOURCE" | "MODULE" | "HOOK")
1359
+ ) -> _SetTypeConfigurationResponseSuccess
1360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTypeConfigurationResponseSuccess
1361
+
1362
+ interface _SetTypeDefaultVersionResponseSuccess
1363
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetTypeDefaultVersionOutput]
1364
+ end
1365
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_type_default_version-instance_method
1366
+ def set_type_default_version: (
1367
+ ?arn: ::String,
1368
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1369
+ ?type_name: ::String,
1370
+ ?version_id: ::String
1371
+ ) -> _SetTypeDefaultVersionResponseSuccess
1372
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTypeDefaultVersionResponseSuccess
1373
+
1374
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#signal_resource-instance_method
1375
+ def signal_resource: (
1376
+ stack_name: ::String,
1377
+ logical_resource_id: ::String,
1378
+ unique_id: ::String,
1379
+ status: ("SUCCESS" | "FAILURE")
1380
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1381
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1382
+
1383
+ interface _StartResourceScanResponseSuccess
1384
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartResourceScanOutput]
1385
+ def resource_scan_id: () -> ::String
1386
+ end
1387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#start_resource_scan-instance_method
1388
+ def start_resource_scan: (
1389
+ ?client_request_token: ::String,
1390
+ ?scan_filters: Array[
1391
+ {
1392
+ types: Array[::String]?
1393
+ },
1394
+ ]
1395
+ ) -> _StartResourceScanResponseSuccess
1396
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartResourceScanResponseSuccess
1397
+
1398
+ interface _StopStackSetOperationResponseSuccess
1399
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopStackSetOperationOutput]
1400
+ end
1401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#stop_stack_set_operation-instance_method
1402
+ def stop_stack_set_operation: (
1403
+ stack_set_name: ::String,
1404
+ operation_id: ::String,
1405
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1406
+ ) -> _StopStackSetOperationResponseSuccess
1407
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopStackSetOperationResponseSuccess
1408
+
1409
+ interface _TestTypeResponseSuccess
1410
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestTypeOutput]
1411
+ def type_version_arn: () -> ::String
1412
+ end
1413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#test_type-instance_method
1414
+ def test_type: (
1415
+ ?arn: ::String,
1416
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1417
+ ?type_name: ::String,
1418
+ ?version_id: ::String,
1419
+ ?log_delivery_bucket: ::String
1420
+ ) -> _TestTypeResponseSuccess
1421
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestTypeResponseSuccess
1422
+
1423
+ interface _UpdateGeneratedTemplateResponseSuccess
1424
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGeneratedTemplateOutput]
1425
+ def generated_template_id: () -> ::String
1426
+ end
1427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_generated_template-instance_method
1428
+ def update_generated_template: (
1429
+ generated_template_name: ::String,
1430
+ ?new_generated_template_name: ::String,
1431
+ ?add_resources: Array[
1432
+ {
1433
+ resource_type: ::String,
1434
+ logical_resource_id: ::String?,
1435
+ resource_identifier: Hash[::String, ::String]
1436
+ },
1437
+ ],
1438
+ ?remove_resources: Array[::String],
1439
+ ?refresh_all_resources: bool,
1440
+ ?template_configuration: {
1441
+ deletion_policy: ("DELETE" | "RETAIN")?,
1442
+ update_replace_policy: ("DELETE" | "RETAIN")?
1443
+ }
1444
+ ) -> _UpdateGeneratedTemplateResponseSuccess
1445
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGeneratedTemplateResponseSuccess
1446
+
1447
+ interface _UpdateStackResponseSuccess
1448
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
1449
+ def stack_id: () -> ::String
1450
+ end
1451
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
1452
+ def update_stack: (
1453
+ stack_name: ::String,
1454
+ ?template_body: ::String,
1455
+ ?template_url: ::String,
1456
+ ?use_previous_template: bool,
1457
+ ?stack_policy_during_update_body: ::String,
1458
+ ?stack_policy_during_update_url: ::String,
1459
+ ?parameters: Array[
1460
+ {
1461
+ parameter_key: ::String?,
1462
+ parameter_value: ::String?,
1463
+ use_previous_value: bool?,
1464
+ resolved_value: ::String?
1465
+ },
1466
+ ],
1467
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
1468
+ ?resource_types: Array[::String],
1469
+ ?role_arn: ::String,
1470
+ ?rollback_configuration: {
1471
+ rollback_triggers: Array[
1472
+ {
1473
+ arn: ::String,
1474
+ type: ::String
1475
+ },
1476
+ ]?,
1477
+ monitoring_time_in_minutes: ::Integer?
1478
+ },
1479
+ ?stack_policy_body: ::String,
1480
+ ?stack_policy_url: ::String,
1481
+ ?notification_arns: Array[::String],
1482
+ ?tags: Array[
1483
+ {
1484
+ key: ::String,
1485
+ value: ::String
1486
+ },
1487
+ ],
1488
+ ?disable_rollback: bool,
1489
+ ?client_request_token: ::String,
1490
+ ?retain_except_on_create: bool
1491
+ ) -> _UpdateStackResponseSuccess
1492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
1493
+
1494
+ interface _UpdateStackInstancesResponseSuccess
1495
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackInstancesOutput]
1496
+ def operation_id: () -> ::String
1497
+ end
1498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack_instances-instance_method
1499
+ def update_stack_instances: (
1500
+ stack_set_name: ::String,
1501
+ ?accounts: Array[::String],
1502
+ ?deployment_targets: {
1503
+ accounts: Array[::String]?,
1504
+ accounts_url: ::String?,
1505
+ organizational_unit_ids: Array[::String]?,
1506
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
1507
+ },
1508
+ regions: Array[::String],
1509
+ ?parameter_overrides: Array[
1510
+ {
1511
+ parameter_key: ::String?,
1512
+ parameter_value: ::String?,
1513
+ use_previous_value: bool?,
1514
+ resolved_value: ::String?
1515
+ },
1516
+ ],
1517
+ ?operation_preferences: {
1518
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
1519
+ region_order: Array[::String]?,
1520
+ failure_tolerance_count: ::Integer?,
1521
+ failure_tolerance_percentage: ::Integer?,
1522
+ max_concurrent_count: ::Integer?,
1523
+ max_concurrent_percentage: ::Integer?,
1524
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
1525
+ },
1526
+ ?operation_id: ::String,
1527
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1528
+ ) -> _UpdateStackInstancesResponseSuccess
1529
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackInstancesResponseSuccess
1530
+
1531
+ interface _UpdateStackSetResponseSuccess
1532
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackSetOutput]
1533
+ def operation_id: () -> ::String
1534
+ end
1535
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack_set-instance_method
1536
+ def update_stack_set: (
1537
+ stack_set_name: ::String,
1538
+ ?description: ::String,
1539
+ ?template_body: ::String,
1540
+ ?template_url: ::String,
1541
+ ?use_previous_template: bool,
1542
+ ?parameters: Array[
1543
+ {
1544
+ parameter_key: ::String?,
1545
+ parameter_value: ::String?,
1546
+ use_previous_value: bool?,
1547
+ resolved_value: ::String?
1548
+ },
1549
+ ],
1550
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
1551
+ ?tags: Array[
1552
+ {
1553
+ key: ::String,
1554
+ value: ::String
1555
+ },
1556
+ ],
1557
+ ?operation_preferences: {
1558
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
1559
+ region_order: Array[::String]?,
1560
+ failure_tolerance_count: ::Integer?,
1561
+ failure_tolerance_percentage: ::Integer?,
1562
+ max_concurrent_count: ::Integer?,
1563
+ max_concurrent_percentage: ::Integer?,
1564
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
1565
+ },
1566
+ ?administration_role_arn: ::String,
1567
+ ?execution_role_name: ::String,
1568
+ ?deployment_targets: {
1569
+ accounts: Array[::String]?,
1570
+ accounts_url: ::String?,
1571
+ organizational_unit_ids: Array[::String]?,
1572
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
1573
+ },
1574
+ ?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
1575
+ ?auto_deployment: {
1576
+ enabled: bool?,
1577
+ retain_stacks_on_account_removal: bool?
1578
+ },
1579
+ ?operation_id: ::String,
1580
+ ?accounts: Array[::String],
1581
+ ?regions: Array[::String],
1582
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
1583
+ ?managed_execution: {
1584
+ active: bool?
1585
+ }
1586
+ ) -> _UpdateStackSetResponseSuccess
1587
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackSetResponseSuccess
1588
+
1589
+ interface _UpdateTerminationProtectionResponseSuccess
1590
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTerminationProtectionOutput]
1591
+ def stack_id: () -> ::String
1592
+ end
1593
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_termination_protection-instance_method
1594
+ def update_termination_protection: (
1595
+ enable_termination_protection: bool,
1596
+ stack_name: ::String
1597
+ ) -> _UpdateTerminationProtectionResponseSuccess
1598
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTerminationProtectionResponseSuccess
1599
+
1600
+ interface _ValidateTemplateResponseSuccess
1601
+ include ::Seahorse::Client::_ResponseSuccess[Types::ValidateTemplateOutput]
1602
+ def parameters: () -> ::Array[Types::TemplateParameter]
1603
+ def description: () -> ::String
1604
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
1605
+ def capabilities_reason: () -> ::String
1606
+ def declared_transforms: () -> ::Array[::String]
1607
+ end
1608
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#validate_template-instance_method
1609
+ def validate_template: (
1610
+ ?template_body: ::String,
1611
+ ?template_url: ::String
1612
+ ) -> _ValidateTemplateResponseSuccess
1613
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateTemplateResponseSuccess
1614
+
1615
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#wait_until-instance_method
1616
+ def wait_until: (:change_set_create_complete waiter_name,
1617
+ change_set_name: ::String,
1618
+ ?stack_name: ::String,
1619
+ ?next_token: ::String,
1620
+ ?include_property_values: bool
1621
+ ) -> Client::_DescribeChangeSetResponseSuccess
1622
+ | (:change_set_create_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChangeSetResponseSuccess
1623
+ | (:stack_create_complete waiter_name,
1624
+ ?stack_name: ::String,
1625
+ ?next_token: ::String
1626
+ ) -> Client::_DescribeStacksResponseSuccess
1627
+ | (:stack_create_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1628
+ | (:stack_delete_complete waiter_name,
1629
+ ?stack_name: ::String,
1630
+ ?next_token: ::String
1631
+ ) -> Client::_DescribeStacksResponseSuccess
1632
+ | (:stack_delete_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1633
+ | (:stack_exists waiter_name,
1634
+ ?stack_name: ::String,
1635
+ ?next_token: ::String
1636
+ ) -> Client::_DescribeStacksResponseSuccess
1637
+ | (:stack_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1638
+ | (:stack_import_complete waiter_name,
1639
+ ?stack_name: ::String,
1640
+ ?next_token: ::String
1641
+ ) -> Client::_DescribeStacksResponseSuccess
1642
+ | (:stack_import_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1643
+ | (:stack_refactor_create_complete waiter_name,
1644
+ stack_refactor_id: ::String
1645
+ ) -> Client::_DescribeStackRefactorResponseSuccess
1646
+ | (:stack_refactor_create_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStackRefactorResponseSuccess
1647
+ | (:stack_refactor_execute_complete waiter_name,
1648
+ stack_refactor_id: ::String
1649
+ ) -> Client::_DescribeStackRefactorResponseSuccess
1650
+ | (:stack_refactor_execute_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStackRefactorResponseSuccess
1651
+ | (:stack_rollback_complete waiter_name,
1652
+ ?stack_name: ::String,
1653
+ ?next_token: ::String
1654
+ ) -> Client::_DescribeStacksResponseSuccess
1655
+ | (:stack_rollback_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1656
+ | (:stack_update_complete waiter_name,
1657
+ ?stack_name: ::String,
1658
+ ?next_token: ::String
1659
+ ) -> Client::_DescribeStacksResponseSuccess
1660
+ | (:stack_update_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1661
+ | (:type_registration_complete waiter_name,
1662
+ registration_token: ::String
1663
+ ) -> Client::_DescribeTypeRegistrationResponseSuccess
1664
+ | (:type_registration_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeTypeRegistrationResponseSuccess
1665
+ end
1666
+ end
1667
+ end
1668
+