aws-sdk-cloudformation 1.97.0 → 1.99.0

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