aws-sdk-cloudformation 1.97.0 → 1.98.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,1366 @@
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 _CreateStackResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
201
+ def stack_id: () -> ::String
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
204
+ def create_stack: (
205
+ stack_name: ::String,
206
+ ?template_body: ::String,
207
+ ?template_url: ::String,
208
+ ?parameters: Array[
209
+ {
210
+ parameter_key: ::String?,
211
+ parameter_value: ::String?,
212
+ use_previous_value: bool?,
213
+ resolved_value: ::String?
214
+ },
215
+ ],
216
+ ?disable_rollback: bool,
217
+ ?rollback_configuration: {
218
+ rollback_triggers: Array[
219
+ {
220
+ arn: ::String,
221
+ type: ::String
222
+ },
223
+ ]?,
224
+ monitoring_time_in_minutes: ::Integer?
225
+ },
226
+ ?timeout_in_minutes: ::Integer,
227
+ ?notification_arns: Array[::String],
228
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
229
+ ?resource_types: Array[::String],
230
+ ?role_arn: ::String,
231
+ ?on_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
232
+ ?stack_policy_body: ::String,
233
+ ?stack_policy_url: ::String,
234
+ ?tags: Array[
235
+ {
236
+ key: ::String,
237
+ value: ::String
238
+ },
239
+ ],
240
+ ?client_request_token: ::String,
241
+ ?enable_termination_protection: bool,
242
+ ?retain_except_on_create: bool
243
+ ) -> _CreateStackResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
245
+
246
+ interface _CreateStackInstancesResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackInstancesOutput]
248
+ def operation_id: () -> ::String
249
+ end
250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack_instances-instance_method
251
+ def create_stack_instances: (
252
+ stack_set_name: ::String,
253
+ ?accounts: Array[::String],
254
+ ?deployment_targets: {
255
+ accounts: Array[::String]?,
256
+ accounts_url: ::String?,
257
+ organizational_unit_ids: Array[::String]?,
258
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
259
+ },
260
+ regions: Array[::String],
261
+ ?parameter_overrides: Array[
262
+ {
263
+ parameter_key: ::String?,
264
+ parameter_value: ::String?,
265
+ use_previous_value: bool?,
266
+ resolved_value: ::String?
267
+ },
268
+ ],
269
+ ?operation_preferences: {
270
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
271
+ region_order: Array[::String]?,
272
+ failure_tolerance_count: ::Integer?,
273
+ failure_tolerance_percentage: ::Integer?,
274
+ max_concurrent_count: ::Integer?,
275
+ max_concurrent_percentage: ::Integer?,
276
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
277
+ },
278
+ ?operation_id: ::String,
279
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
280
+ ) -> _CreateStackInstancesResponseSuccess
281
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackInstancesResponseSuccess
282
+
283
+ interface _CreateStackSetResponseSuccess
284
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackSetOutput]
285
+ def stack_set_id: () -> ::String
286
+ end
287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack_set-instance_method
288
+ def create_stack_set: (
289
+ stack_set_name: ::String,
290
+ ?description: ::String,
291
+ ?template_body: ::String,
292
+ ?template_url: ::String,
293
+ ?stack_id: ::String,
294
+ ?parameters: Array[
295
+ {
296
+ parameter_key: ::String?,
297
+ parameter_value: ::String?,
298
+ use_previous_value: bool?,
299
+ resolved_value: ::String?
300
+ },
301
+ ],
302
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
303
+ ?tags: Array[
304
+ {
305
+ key: ::String,
306
+ value: ::String
307
+ },
308
+ ],
309
+ ?administration_role_arn: ::String,
310
+ ?execution_role_name: ::String,
311
+ ?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
312
+ ?auto_deployment: {
313
+ enabled: bool?,
314
+ retain_stacks_on_account_removal: bool?
315
+ },
316
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
317
+ ?client_request_token: ::String,
318
+ ?managed_execution: {
319
+ active: bool?
320
+ }
321
+ ) -> _CreateStackSetResponseSuccess
322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackSetResponseSuccess
323
+
324
+ interface _DeactivateOrganizationsAccessResponseSuccess
325
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateOrganizationsAccessOutput]
326
+ end
327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deactivate_organizations_access-instance_method
328
+ def deactivate_organizations_access: (
329
+ ) -> _DeactivateOrganizationsAccessResponseSuccess
330
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeactivateOrganizationsAccessResponseSuccess
331
+
332
+ interface _DeactivateTypeResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateTypeOutput]
334
+ end
335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deactivate_type-instance_method
336
+ def deactivate_type: (
337
+ ?type_name: ::String,
338
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
339
+ ?arn: ::String
340
+ ) -> _DeactivateTypeResponseSuccess
341
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeactivateTypeResponseSuccess
342
+
343
+ interface _DeleteChangeSetResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChangeSetOutput]
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_change_set-instance_method
347
+ def delete_change_set: (
348
+ change_set_name: ::String,
349
+ ?stack_name: ::String
350
+ ) -> _DeleteChangeSetResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChangeSetResponseSuccess
352
+
353
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack-instance_method
354
+ def delete_stack: (
355
+ stack_name: ::String,
356
+ ?retain_resources: Array[::String],
357
+ ?role_arn: ::String,
358
+ ?client_request_token: ::String
359
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
361
+
362
+ interface _DeleteStackInstancesResponseSuccess
363
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStackInstancesOutput]
364
+ def operation_id: () -> ::String
365
+ end
366
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack_instances-instance_method
367
+ def delete_stack_instances: (
368
+ stack_set_name: ::String,
369
+ ?accounts: Array[::String],
370
+ ?deployment_targets: {
371
+ accounts: Array[::String]?,
372
+ accounts_url: ::String?,
373
+ organizational_unit_ids: Array[::String]?,
374
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
375
+ },
376
+ regions: Array[::String],
377
+ ?operation_preferences: {
378
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
379
+ region_order: Array[::String]?,
380
+ failure_tolerance_count: ::Integer?,
381
+ failure_tolerance_percentage: ::Integer?,
382
+ max_concurrent_count: ::Integer?,
383
+ max_concurrent_percentage: ::Integer?,
384
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
385
+ },
386
+ retain_stacks: bool,
387
+ ?operation_id: ::String,
388
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
389
+ ) -> _DeleteStackInstancesResponseSuccess
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackInstancesResponseSuccess
391
+
392
+ interface _DeleteStackSetResponseSuccess
393
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStackSetOutput]
394
+ end
395
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#delete_stack_set-instance_method
396
+ def delete_stack_set: (
397
+ stack_set_name: ::String,
398
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
399
+ ) -> _DeleteStackSetResponseSuccess
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackSetResponseSuccess
401
+
402
+ interface _DeregisterTypeResponseSuccess
403
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterTypeOutput]
404
+ end
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#deregister_type-instance_method
406
+ def deregister_type: (
407
+ ?arn: ::String,
408
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
409
+ ?type_name: ::String,
410
+ ?version_id: ::String
411
+ ) -> _DeregisterTypeResponseSuccess
412
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterTypeResponseSuccess
413
+
414
+ interface _DescribeAccountLimitsResponseSuccess
415
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountLimitsOutput]
416
+ def account_limits: () -> ::Array[Types::AccountLimit]
417
+ def next_token: () -> ::String
418
+ end
419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_account_limits-instance_method
420
+ def describe_account_limits: (
421
+ ?next_token: ::String
422
+ ) -> _DescribeAccountLimitsResponseSuccess
423
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountLimitsResponseSuccess
424
+
425
+ interface _DescribeChangeSetResponseSuccess
426
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetOutput]
427
+ def change_set_name: () -> ::String
428
+ def change_set_id: () -> ::String
429
+ def stack_id: () -> ::String
430
+ def stack_name: () -> ::String
431
+ def description: () -> ::String
432
+ def parameters: () -> ::Array[Types::Parameter]
433
+ def creation_time: () -> ::Time
434
+ def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
435
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
436
+ def status_reason: () -> ::String
437
+ def notification_arns: () -> ::Array[::String]
438
+ def rollback_configuration: () -> Types::RollbackConfiguration
439
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
440
+ def tags: () -> ::Array[Types::Tag]
441
+ def changes: () -> ::Array[Types::Change]
442
+ def next_token: () -> ::String
443
+ def include_nested_stacks: () -> bool
444
+ def parent_change_set_id: () -> ::String
445
+ def root_change_set_id: () -> ::String
446
+ def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
447
+ def import_existing_resources: () -> bool
448
+ end
449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
450
+ def describe_change_set: (
451
+ change_set_name: ::String,
452
+ ?stack_name: ::String,
453
+ ?next_token: ::String
454
+ ) -> _DescribeChangeSetResponseSuccess
455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetResponseSuccess
456
+
457
+ interface _DescribeChangeSetHooksResponseSuccess
458
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetHooksOutput]
459
+ def change_set_id: () -> ::String
460
+ def change_set_name: () -> ::String
461
+ def hooks: () -> ::Array[Types::ChangeSetHook]
462
+ def status: () -> ("PLANNING" | "PLANNED" | "UNAVAILABLE")
463
+ def next_token: () -> ::String
464
+ def stack_id: () -> ::String
465
+ def stack_name: () -> ::String
466
+ end
467
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set_hooks-instance_method
468
+ def describe_change_set_hooks: (
469
+ change_set_name: ::String,
470
+ ?stack_name: ::String,
471
+ ?next_token: ::String,
472
+ ?logical_resource_id: ::String
473
+ ) -> _DescribeChangeSetHooksResponseSuccess
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
475
+
476
+ interface _DescribeOrganizationsAccessResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOrganizationsAccessOutput]
478
+ def status: () -> ("ENABLED" | "DISABLED" | "DISABLED_PERMANENTLY")
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_organizations_access-instance_method
481
+ def describe_organizations_access: (
482
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
483
+ ) -> _DescribeOrganizationsAccessResponseSuccess
484
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOrganizationsAccessResponseSuccess
485
+
486
+ interface _DescribePublisherResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePublisherOutput]
488
+ def publisher_id: () -> ::String
489
+ def publisher_status: () -> ("VERIFIED" | "UNVERIFIED")
490
+ def identity_provider: () -> ("AWS_Marketplace" | "GitHub" | "Bitbucket")
491
+ def publisher_profile: () -> ::String
492
+ end
493
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_publisher-instance_method
494
+ def describe_publisher: (
495
+ ?publisher_id: ::String
496
+ ) -> _DescribePublisherResponseSuccess
497
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePublisherResponseSuccess
498
+
499
+ interface _DescribeStackDriftDetectionStatusResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackDriftDetectionStatusOutput]
501
+ def stack_id: () -> ::String
502
+ def stack_drift_detection_id: () -> ::String
503
+ def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
504
+ def detection_status: () -> ("DETECTION_IN_PROGRESS" | "DETECTION_FAILED" | "DETECTION_COMPLETE")
505
+ def detection_status_reason: () -> ::String
506
+ def drifted_stack_resource_count: () -> ::Integer
507
+ def timestamp: () -> ::Time
508
+ end
509
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_drift_detection_status-instance_method
510
+ def describe_stack_drift_detection_status: (
511
+ stack_drift_detection_id: ::String
512
+ ) -> _DescribeStackDriftDetectionStatusResponseSuccess
513
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackDriftDetectionStatusResponseSuccess
514
+
515
+ interface _DescribeStackEventsResponseSuccess
516
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackEventsOutput]
517
+ def stack_events: () -> ::Array[Types::StackEvent]
518
+ def next_token: () -> ::String
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
521
+ def describe_stack_events: (
522
+ ?stack_name: ::String,
523
+ ?next_token: ::String
524
+ ) -> _DescribeStackEventsResponseSuccess
525
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
526
+
527
+ interface _DescribeStackInstanceResponseSuccess
528
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
529
+ def stack_instance: () -> Types::StackInstance
530
+ end
531
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_instance-instance_method
532
+ def describe_stack_instance: (
533
+ stack_set_name: ::String,
534
+ stack_instance_account: ::String,
535
+ stack_instance_region: ::String,
536
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
537
+ ) -> _DescribeStackInstanceResponseSuccess
538
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackInstanceResponseSuccess
539
+
540
+ interface _DescribeStackResourceResponseSuccess
541
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourceOutput]
542
+ def stack_resource_detail: () -> Types::StackResourceDetail
543
+ end
544
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource-instance_method
545
+ def describe_stack_resource: (
546
+ stack_name: ::String,
547
+ logical_resource_id: ::String
548
+ ) -> _DescribeStackResourceResponseSuccess
549
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourceResponseSuccess
550
+
551
+ interface _DescribeStackResourceDriftsResponseSuccess
552
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourceDriftsOutput]
553
+ def stack_resource_drifts: () -> ::Array[Types::StackResourceDrift]
554
+ def next_token: () -> ::String
555
+ end
556
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
557
+ def describe_stack_resource_drifts: (
558
+ stack_name: ::String,
559
+ ?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
560
+ ?next_token: ::String,
561
+ ?max_results: ::Integer
562
+ ) -> _DescribeStackResourceDriftsResponseSuccess
563
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourceDriftsResponseSuccess
564
+
565
+ interface _DescribeStackResourcesResponseSuccess
566
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackResourcesOutput]
567
+ def stack_resources: () -> ::Array[Types::StackResource]
568
+ end
569
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resources-instance_method
570
+ def describe_stack_resources: (
571
+ ?stack_name: ::String,
572
+ ?logical_resource_id: ::String,
573
+ ?physical_resource_id: ::String
574
+ ) -> _DescribeStackResourcesResponseSuccess
575
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackResourcesResponseSuccess
576
+
577
+ interface _DescribeStackSetResponseSuccess
578
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackSetOutput]
579
+ def stack_set: () -> Types::StackSet
580
+ end
581
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_set-instance_method
582
+ def describe_stack_set: (
583
+ stack_set_name: ::String,
584
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
585
+ ) -> _DescribeStackSetResponseSuccess
586
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackSetResponseSuccess
587
+
588
+ interface _DescribeStackSetOperationResponseSuccess
589
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackSetOperationOutput]
590
+ def stack_set_operation: () -> Types::StackSetOperation
591
+ end
592
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_set_operation-instance_method
593
+ def describe_stack_set_operation: (
594
+ stack_set_name: ::String,
595
+ operation_id: ::String,
596
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
597
+ ) -> _DescribeStackSetOperationResponseSuccess
598
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackSetOperationResponseSuccess
599
+
600
+ interface _DescribeStacksResponseSuccess
601
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStacksOutput]
602
+ def stacks: () -> ::Array[Types::Stack]
603
+ def next_token: () -> ::String
604
+ end
605
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stacks-instance_method
606
+ def describe_stacks: (
607
+ ?stack_name: ::String,
608
+ ?next_token: ::String
609
+ ) -> _DescribeStacksResponseSuccess
610
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
611
+
612
+ interface _DescribeTypeResponseSuccess
613
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTypeOutput]
614
+ def arn: () -> ::String
615
+ def type: () -> ("RESOURCE" | "MODULE" | "HOOK")
616
+ def type_name: () -> ::String
617
+ def default_version_id: () -> ::String
618
+ def is_default_version: () -> bool
619
+ def type_tests_status: () -> ("PASSED" | "FAILED" | "IN_PROGRESS" | "NOT_TESTED")
620
+ def type_tests_status_description: () -> ::String
621
+ def description: () -> ::String
622
+ def schema: () -> ::String
623
+ def provisioning_type: () -> ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE")
624
+ def deprecated_status: () -> ("LIVE" | "DEPRECATED")
625
+ def logging_config: () -> Types::LoggingConfig
626
+ def required_activated_types: () -> ::Array[Types::RequiredActivatedType]
627
+ def execution_role_arn: () -> ::String
628
+ def visibility: () -> ("PUBLIC" | "PRIVATE")
629
+ def source_url: () -> ::String
630
+ def documentation_url: () -> ::String
631
+ def last_updated: () -> ::Time
632
+ def time_created: () -> ::Time
633
+ def configuration_schema: () -> ::String
634
+ def publisher_id: () -> ::String
635
+ def original_type_name: () -> ::String
636
+ def original_type_arn: () -> ::String
637
+ def public_version_number: () -> ::String
638
+ def latest_public_version: () -> ::String
639
+ def is_activated: () -> bool
640
+ def auto_update: () -> bool
641
+ end
642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_type-instance_method
643
+ def describe_type: (
644
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
645
+ ?type_name: ::String,
646
+ ?arn: ::String,
647
+ ?version_id: ::String,
648
+ ?publisher_id: ::String,
649
+ ?public_version_number: ::String
650
+ ) -> _DescribeTypeResponseSuccess
651
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTypeResponseSuccess
652
+
653
+ interface _DescribeTypeRegistrationResponseSuccess
654
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTypeRegistrationOutput]
655
+ def progress_status: () -> ("COMPLETE" | "IN_PROGRESS" | "FAILED")
656
+ def description: () -> ::String
657
+ def type_arn: () -> ::String
658
+ def type_version_arn: () -> ::String
659
+ end
660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_type_registration-instance_method
661
+ def describe_type_registration: (
662
+ registration_token: ::String
663
+ ) -> _DescribeTypeRegistrationResponseSuccess
664
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTypeRegistrationResponseSuccess
665
+
666
+ interface _DetectStackDriftResponseSuccess
667
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackDriftOutput]
668
+ def stack_drift_detection_id: () -> ::String
669
+ end
670
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_drift-instance_method
671
+ def detect_stack_drift: (
672
+ stack_name: ::String,
673
+ ?logical_resource_ids: Array[::String]
674
+ ) -> _DetectStackDriftResponseSuccess
675
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackDriftResponseSuccess
676
+
677
+ interface _DetectStackResourceDriftResponseSuccess
678
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackResourceDriftOutput]
679
+ def stack_resource_drift: () -> Types::StackResourceDrift
680
+ end
681
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_resource_drift-instance_method
682
+ def detect_stack_resource_drift: (
683
+ stack_name: ::String,
684
+ logical_resource_id: ::String
685
+ ) -> _DetectStackResourceDriftResponseSuccess
686
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackResourceDriftResponseSuccess
687
+
688
+ interface _DetectStackSetDriftResponseSuccess
689
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetectStackSetDriftOutput]
690
+ def operation_id: () -> ::String
691
+ end
692
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_set_drift-instance_method
693
+ def detect_stack_set_drift: (
694
+ stack_set_name: ::String,
695
+ ?operation_preferences: {
696
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
697
+ region_order: Array[::String]?,
698
+ failure_tolerance_count: ::Integer?,
699
+ failure_tolerance_percentage: ::Integer?,
700
+ max_concurrent_count: ::Integer?,
701
+ max_concurrent_percentage: ::Integer?,
702
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
703
+ },
704
+ ?operation_id: ::String,
705
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
706
+ ) -> _DetectStackSetDriftResponseSuccess
707
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectStackSetDriftResponseSuccess
708
+
709
+ interface _EstimateTemplateCostResponseSuccess
710
+ include ::Seahorse::Client::_ResponseSuccess[Types::EstimateTemplateCostOutput]
711
+ def url: () -> ::String
712
+ end
713
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#estimate_template_cost-instance_method
714
+ def estimate_template_cost: (
715
+ ?template_body: ::String,
716
+ ?template_url: ::String,
717
+ ?parameters: Array[
718
+ {
719
+ parameter_key: ::String?,
720
+ parameter_value: ::String?,
721
+ use_previous_value: bool?,
722
+ resolved_value: ::String?
723
+ },
724
+ ]
725
+ ) -> _EstimateTemplateCostResponseSuccess
726
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EstimateTemplateCostResponseSuccess
727
+
728
+ interface _ExecuteChangeSetResponseSuccess
729
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExecuteChangeSetOutput]
730
+ end
731
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#execute_change_set-instance_method
732
+ def execute_change_set: (
733
+ change_set_name: ::String,
734
+ ?stack_name: ::String,
735
+ ?client_request_token: ::String,
736
+ ?disable_rollback: bool,
737
+ ?retain_except_on_create: bool
738
+ ) -> _ExecuteChangeSetResponseSuccess
739
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExecuteChangeSetResponseSuccess
740
+
741
+ interface _GetStackPolicyResponseSuccess
742
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
743
+ def stack_policy_body: () -> ::String
744
+ end
745
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_stack_policy-instance_method
746
+ def get_stack_policy: (
747
+ stack_name: ::String
748
+ ) -> _GetStackPolicyResponseSuccess
749
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStackPolicyResponseSuccess
750
+
751
+ interface _GetTemplateResponseSuccess
752
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateOutput]
753
+ def template_body: () -> ::String
754
+ def stages_available: () -> ::Array[("Original" | "Processed")]
755
+ end
756
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_template-instance_method
757
+ def get_template: (
758
+ ?stack_name: ::String,
759
+ ?change_set_name: ::String,
760
+ ?template_stage: ("Original" | "Processed")
761
+ ) -> _GetTemplateResponseSuccess
762
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateResponseSuccess
763
+
764
+ interface _GetTemplateSummaryResponseSuccess
765
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateSummaryOutput]
766
+ def parameters: () -> ::Array[Types::ParameterDeclaration]
767
+ def description: () -> ::String
768
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
769
+ def capabilities_reason: () -> ::String
770
+ def resource_types: () -> ::Array[::String]
771
+ def version: () -> ::String
772
+ def metadata: () -> ::String
773
+ def declared_transforms: () -> ::Array[::String]
774
+ def resource_identifier_summaries: () -> ::Array[Types::ResourceIdentifierSummary]
775
+ def warnings: () -> Types::Warnings
776
+ end
777
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_template_summary-instance_method
778
+ def get_template_summary: (
779
+ ?template_body: ::String,
780
+ ?template_url: ::String,
781
+ ?stack_name: ::String,
782
+ ?stack_set_name: ::String,
783
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
784
+ ?template_summary_config: {
785
+ treat_unrecognized_resource_types_as_warnings: bool?
786
+ }
787
+ ) -> _GetTemplateSummaryResponseSuccess
788
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateSummaryResponseSuccess
789
+
790
+ interface _ImportStacksToStackSetResponseSuccess
791
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportStacksToStackSetOutput]
792
+ def operation_id: () -> ::String
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#import_stacks_to_stack_set-instance_method
795
+ def import_stacks_to_stack_set: (
796
+ stack_set_name: ::String,
797
+ ?stack_ids: Array[::String],
798
+ ?stack_ids_url: ::String,
799
+ ?organizational_unit_ids: Array[::String],
800
+ ?operation_preferences: {
801
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
802
+ region_order: Array[::String]?,
803
+ failure_tolerance_count: ::Integer?,
804
+ failure_tolerance_percentage: ::Integer?,
805
+ max_concurrent_count: ::Integer?,
806
+ max_concurrent_percentage: ::Integer?,
807
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
808
+ },
809
+ ?operation_id: ::String,
810
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
811
+ ) -> _ImportStacksToStackSetResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportStacksToStackSetResponseSuccess
813
+
814
+ interface _ListChangeSetsResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChangeSetsOutput]
816
+ def summaries: () -> ::Array[Types::ChangeSetSummary]
817
+ def next_token: () -> ::String
818
+ end
819
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_change_sets-instance_method
820
+ def list_change_sets: (
821
+ stack_name: ::String,
822
+ ?next_token: ::String
823
+ ) -> _ListChangeSetsResponseSuccess
824
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChangeSetsResponseSuccess
825
+
826
+ interface _ListExportsResponseSuccess
827
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExportsOutput]
828
+ def exports: () -> ::Array[Types::Export]
829
+ def next_token: () -> ::String
830
+ end
831
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_exports-instance_method
832
+ def list_exports: (
833
+ ?next_token: ::String
834
+ ) -> _ListExportsResponseSuccess
835
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportsResponseSuccess
836
+
837
+ interface _ListImportsResponseSuccess
838
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
839
+ def imports: () -> ::Array[::String]
840
+ def next_token: () -> ::String
841
+ end
842
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_imports-instance_method
843
+ def list_imports: (
844
+ export_name: ::String,
845
+ ?next_token: ::String
846
+ ) -> _ListImportsResponseSuccess
847
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportsResponseSuccess
848
+
849
+ interface _ListStackInstanceResourceDriftsResponseSuccess
850
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackInstanceResourceDriftsOutput]
851
+ def summaries: () -> ::Array[Types::StackInstanceResourceDriftsSummary]
852
+ def next_token: () -> ::String
853
+ end
854
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_instance_resource_drifts-instance_method
855
+ def list_stack_instance_resource_drifts: (
856
+ stack_set_name: ::String,
857
+ ?next_token: ::String,
858
+ ?max_results: ::Integer,
859
+ ?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
860
+ stack_instance_account: ::String,
861
+ stack_instance_region: ::String,
862
+ operation_id: ::String,
863
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
864
+ ) -> _ListStackInstanceResourceDriftsResponseSuccess
865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackInstanceResourceDriftsResponseSuccess
866
+
867
+ interface _ListStackInstancesResponseSuccess
868
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackInstancesOutput]
869
+ def summaries: () -> ::Array[Types::StackInstanceSummary]
870
+ def next_token: () -> ::String
871
+ end
872
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_instances-instance_method
873
+ def list_stack_instances: (
874
+ stack_set_name: ::String,
875
+ ?next_token: ::String,
876
+ ?max_results: ::Integer,
877
+ ?filters: Array[
878
+ {
879
+ name: ("DETAILED_STATUS" | "LAST_OPERATION_ID" | "DRIFT_STATUS")?,
880
+ values: ::String?
881
+ },
882
+ ],
883
+ ?stack_instance_account: ::String,
884
+ ?stack_instance_region: ::String,
885
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
886
+ ) -> _ListStackInstancesResponseSuccess
887
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackInstancesResponseSuccess
888
+
889
+ interface _ListStackResourcesResponseSuccess
890
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackResourcesOutput]
891
+ def stack_resource_summaries: () -> ::Array[Types::StackResourceSummary]
892
+ def next_token: () -> ::String
893
+ end
894
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_resources-instance_method
895
+ def list_stack_resources: (
896
+ stack_name: ::String,
897
+ ?next_token: ::String
898
+ ) -> _ListStackResourcesResponseSuccess
899
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackResourcesResponseSuccess
900
+
901
+ interface _ListStackSetOperationResultsResponseSuccess
902
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationResultsOutput]
903
+ def summaries: () -> ::Array[Types::StackSetOperationResultSummary]
904
+ def next_token: () -> ::String
905
+ end
906
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_operation_results-instance_method
907
+ def list_stack_set_operation_results: (
908
+ stack_set_name: ::String,
909
+ operation_id: ::String,
910
+ ?next_token: ::String,
911
+ ?max_results: ::Integer,
912
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
913
+ ?filters: Array[
914
+ {
915
+ name: ("OPERATION_RESULT_STATUS")?,
916
+ values: ::String?
917
+ },
918
+ ]
919
+ ) -> _ListStackSetOperationResultsResponseSuccess
920
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetOperationResultsResponseSuccess
921
+
922
+ interface _ListStackSetOperationsResponseSuccess
923
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationsOutput]
924
+ def summaries: () -> ::Array[Types::StackSetOperationSummary]
925
+ def next_token: () -> ::String
926
+ end
927
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_operations-instance_method
928
+ def list_stack_set_operations: (
929
+ stack_set_name: ::String,
930
+ ?next_token: ::String,
931
+ ?max_results: ::Integer,
932
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
933
+ ) -> _ListStackSetOperationsResponseSuccess
934
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetOperationsResponseSuccess
935
+
936
+ interface _ListStackSetsResponseSuccess
937
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetsOutput]
938
+ def summaries: () -> ::Array[Types::StackSetSummary]
939
+ def next_token: () -> ::String
940
+ end
941
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_sets-instance_method
942
+ def list_stack_sets: (
943
+ ?next_token: ::String,
944
+ ?max_results: ::Integer,
945
+ ?status: ("ACTIVE" | "DELETED"),
946
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
947
+ ) -> _ListStackSetsResponseSuccess
948
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetsResponseSuccess
949
+
950
+ interface _ListStacksResponseSuccess
951
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStacksOutput]
952
+ def stack_summaries: () -> ::Array[Types::StackSummary]
953
+ def next_token: () -> ::String
954
+ end
955
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stacks-instance_method
956
+ def list_stacks: (
957
+ ?next_token: ::String,
958
+ ?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")]
959
+ ) -> _ListStacksResponseSuccess
960
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStacksResponseSuccess
961
+
962
+ interface _ListTypeRegistrationsResponseSuccess
963
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypeRegistrationsOutput]
964
+ def registration_token_list: () -> ::Array[::String]
965
+ def next_token: () -> ::String
966
+ end
967
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_type_registrations-instance_method
968
+ def list_type_registrations: (
969
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
970
+ ?type_name: ::String,
971
+ ?type_arn: ::String,
972
+ ?registration_status_filter: ("COMPLETE" | "IN_PROGRESS" | "FAILED"),
973
+ ?max_results: ::Integer,
974
+ ?next_token: ::String
975
+ ) -> _ListTypeRegistrationsResponseSuccess
976
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypeRegistrationsResponseSuccess
977
+
978
+ interface _ListTypeVersionsResponseSuccess
979
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypeVersionsOutput]
980
+ def type_version_summaries: () -> ::Array[Types::TypeVersionSummary]
981
+ def next_token: () -> ::String
982
+ end
983
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_type_versions-instance_method
984
+ def list_type_versions: (
985
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
986
+ ?type_name: ::String,
987
+ ?arn: ::String,
988
+ ?max_results: ::Integer,
989
+ ?next_token: ::String,
990
+ ?deprecated_status: ("LIVE" | "DEPRECATED"),
991
+ ?publisher_id: ::String
992
+ ) -> _ListTypeVersionsResponseSuccess
993
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypeVersionsResponseSuccess
994
+
995
+ interface _ListTypesResponseSuccess
996
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypesOutput]
997
+ def type_summaries: () -> ::Array[Types::TypeSummary]
998
+ def next_token: () -> ::String
999
+ end
1000
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_types-instance_method
1001
+ def list_types: (
1002
+ ?visibility: ("PUBLIC" | "PRIVATE"),
1003
+ ?provisioning_type: ("NON_PROVISIONABLE" | "IMMUTABLE" | "FULLY_MUTABLE"),
1004
+ ?deprecated_status: ("LIVE" | "DEPRECATED"),
1005
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1006
+ ?filters: {
1007
+ category: ("REGISTERED" | "ACTIVATED" | "THIRD_PARTY" | "AWS_TYPES")?,
1008
+ publisher_id: ::String?,
1009
+ type_name_prefix: ::String?
1010
+ },
1011
+ ?max_results: ::Integer,
1012
+ ?next_token: ::String
1013
+ ) -> _ListTypesResponseSuccess
1014
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypesResponseSuccess
1015
+
1016
+ interface _PublishTypeResponseSuccess
1017
+ include ::Seahorse::Client::_ResponseSuccess[Types::PublishTypeOutput]
1018
+ def public_type_arn: () -> ::String
1019
+ end
1020
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#publish_type-instance_method
1021
+ def publish_type: (
1022
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1023
+ ?arn: ::String,
1024
+ ?type_name: ::String,
1025
+ ?public_version_number: ::String
1026
+ ) -> _PublishTypeResponseSuccess
1027
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishTypeResponseSuccess
1028
+
1029
+ interface _RecordHandlerProgressResponseSuccess
1030
+ include ::Seahorse::Client::_ResponseSuccess[Types::RecordHandlerProgressOutput]
1031
+ end
1032
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#record_handler_progress-instance_method
1033
+ def record_handler_progress: (
1034
+ bearer_token: ::String,
1035
+ operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED"),
1036
+ ?current_operation_status: ("PENDING" | "IN_PROGRESS" | "SUCCESS" | "FAILED"),
1037
+ ?status_message: ::String,
1038
+ ?error_code: ("NotUpdatable" | "InvalidRequest" | "AccessDenied" | "InvalidCredentials" | "AlreadyExists" | "NotFound" | "ResourceConflict" | "Throttling" | "ServiceLimitExceeded" | "NotStabilized" | "GeneralServiceException" | "ServiceInternalError" | "NetworkFailure" | "InternalFailure" | "InvalidTypeConfiguration" | "HandlerInternalFailure" | "NonCompliant" | "Unknown" | "UnsupportedTarget"),
1039
+ ?resource_model: ::String,
1040
+ ?client_request_token: ::String
1041
+ ) -> _RecordHandlerProgressResponseSuccess
1042
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RecordHandlerProgressResponseSuccess
1043
+
1044
+ interface _RegisterPublisherResponseSuccess
1045
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterPublisherOutput]
1046
+ def publisher_id: () -> ::String
1047
+ end
1048
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#register_publisher-instance_method
1049
+ def register_publisher: (
1050
+ ?accept_terms_and_conditions: bool,
1051
+ ?connection_arn: ::String
1052
+ ) -> _RegisterPublisherResponseSuccess
1053
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterPublisherResponseSuccess
1054
+
1055
+ interface _RegisterTypeResponseSuccess
1056
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterTypeOutput]
1057
+ def registration_token: () -> ::String
1058
+ end
1059
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#register_type-instance_method
1060
+ def register_type: (
1061
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1062
+ type_name: ::String,
1063
+ schema_handler_package: ::String,
1064
+ ?logging_config: {
1065
+ log_role_arn: ::String,
1066
+ log_group_name: ::String
1067
+ },
1068
+ ?execution_role_arn: ::String,
1069
+ ?client_request_token: ::String
1070
+ ) -> _RegisterTypeResponseSuccess
1071
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTypeResponseSuccess
1072
+
1073
+ interface _RollbackStackResponseSuccess
1074
+ include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
1075
+ def stack_id: () -> ::String
1076
+ end
1077
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
1078
+ def rollback_stack: (
1079
+ stack_name: ::String,
1080
+ ?role_arn: ::String,
1081
+ ?client_request_token: ::String,
1082
+ ?retain_except_on_create: bool
1083
+ ) -> _RollbackStackResponseSuccess
1084
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RollbackStackResponseSuccess
1085
+
1086
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_stack_policy-instance_method
1087
+ def set_stack_policy: (
1088
+ stack_name: ::String,
1089
+ ?stack_policy_body: ::String,
1090
+ ?stack_policy_url: ::String
1091
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1092
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1093
+
1094
+ interface _SetTypeConfigurationResponseSuccess
1095
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetTypeConfigurationOutput]
1096
+ def configuration_arn: () -> ::String
1097
+ end
1098
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_type_configuration-instance_method
1099
+ def set_type_configuration: (
1100
+ ?type_arn: ::String,
1101
+ configuration: ::String,
1102
+ ?configuration_alias: ::String,
1103
+ ?type_name: ::String,
1104
+ ?type: ("RESOURCE" | "MODULE" | "HOOK")
1105
+ ) -> _SetTypeConfigurationResponseSuccess
1106
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTypeConfigurationResponseSuccess
1107
+
1108
+ interface _SetTypeDefaultVersionResponseSuccess
1109
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetTypeDefaultVersionOutput]
1110
+ end
1111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#set_type_default_version-instance_method
1112
+ def set_type_default_version: (
1113
+ ?arn: ::String,
1114
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1115
+ ?type_name: ::String,
1116
+ ?version_id: ::String
1117
+ ) -> _SetTypeDefaultVersionResponseSuccess
1118
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTypeDefaultVersionResponseSuccess
1119
+
1120
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#signal_resource-instance_method
1121
+ def signal_resource: (
1122
+ stack_name: ::String,
1123
+ logical_resource_id: ::String,
1124
+ unique_id: ::String,
1125
+ status: ("SUCCESS" | "FAILURE")
1126
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1128
+
1129
+ interface _StopStackSetOperationResponseSuccess
1130
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopStackSetOperationOutput]
1131
+ end
1132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#stop_stack_set_operation-instance_method
1133
+ def stop_stack_set_operation: (
1134
+ stack_set_name: ::String,
1135
+ operation_id: ::String,
1136
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1137
+ ) -> _StopStackSetOperationResponseSuccess
1138
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopStackSetOperationResponseSuccess
1139
+
1140
+ interface _TestTypeResponseSuccess
1141
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestTypeOutput]
1142
+ def type_version_arn: () -> ::String
1143
+ end
1144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#test_type-instance_method
1145
+ def test_type: (
1146
+ ?arn: ::String,
1147
+ ?type: ("RESOURCE" | "MODULE" | "HOOK"),
1148
+ ?type_name: ::String,
1149
+ ?version_id: ::String,
1150
+ ?log_delivery_bucket: ::String
1151
+ ) -> _TestTypeResponseSuccess
1152
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestTypeResponseSuccess
1153
+
1154
+ interface _UpdateStackResponseSuccess
1155
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
1156
+ def stack_id: () -> ::String
1157
+ end
1158
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
1159
+ def update_stack: (
1160
+ stack_name: ::String,
1161
+ ?template_body: ::String,
1162
+ ?template_url: ::String,
1163
+ ?use_previous_template: bool,
1164
+ ?stack_policy_during_update_body: ::String,
1165
+ ?stack_policy_during_update_url: ::String,
1166
+ ?parameters: Array[
1167
+ {
1168
+ parameter_key: ::String?,
1169
+ parameter_value: ::String?,
1170
+ use_previous_value: bool?,
1171
+ resolved_value: ::String?
1172
+ },
1173
+ ],
1174
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
1175
+ ?resource_types: Array[::String],
1176
+ ?role_arn: ::String,
1177
+ ?rollback_configuration: {
1178
+ rollback_triggers: Array[
1179
+ {
1180
+ arn: ::String,
1181
+ type: ::String
1182
+ },
1183
+ ]?,
1184
+ monitoring_time_in_minutes: ::Integer?
1185
+ },
1186
+ ?stack_policy_body: ::String,
1187
+ ?stack_policy_url: ::String,
1188
+ ?notification_arns: Array[::String],
1189
+ ?tags: Array[
1190
+ {
1191
+ key: ::String,
1192
+ value: ::String
1193
+ },
1194
+ ],
1195
+ ?disable_rollback: bool,
1196
+ ?client_request_token: ::String,
1197
+ ?retain_except_on_create: bool
1198
+ ) -> _UpdateStackResponseSuccess
1199
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
1200
+
1201
+ interface _UpdateStackInstancesResponseSuccess
1202
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackInstancesOutput]
1203
+ def operation_id: () -> ::String
1204
+ end
1205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack_instances-instance_method
1206
+ def update_stack_instances: (
1207
+ stack_set_name: ::String,
1208
+ ?accounts: Array[::String],
1209
+ ?deployment_targets: {
1210
+ accounts: Array[::String]?,
1211
+ accounts_url: ::String?,
1212
+ organizational_unit_ids: Array[::String]?,
1213
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
1214
+ },
1215
+ regions: Array[::String],
1216
+ ?parameter_overrides: Array[
1217
+ {
1218
+ parameter_key: ::String?,
1219
+ parameter_value: ::String?,
1220
+ use_previous_value: bool?,
1221
+ resolved_value: ::String?
1222
+ },
1223
+ ],
1224
+ ?operation_preferences: {
1225
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
1226
+ region_order: Array[::String]?,
1227
+ failure_tolerance_count: ::Integer?,
1228
+ failure_tolerance_percentage: ::Integer?,
1229
+ max_concurrent_count: ::Integer?,
1230
+ max_concurrent_percentage: ::Integer?,
1231
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
1232
+ },
1233
+ ?operation_id: ::String,
1234
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1235
+ ) -> _UpdateStackInstancesResponseSuccess
1236
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackInstancesResponseSuccess
1237
+
1238
+ interface _UpdateStackSetResponseSuccess
1239
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackSetOutput]
1240
+ def operation_id: () -> ::String
1241
+ end
1242
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack_set-instance_method
1243
+ def update_stack_set: (
1244
+ stack_set_name: ::String,
1245
+ ?description: ::String,
1246
+ ?template_body: ::String,
1247
+ ?template_url: ::String,
1248
+ ?use_previous_template: bool,
1249
+ ?parameters: Array[
1250
+ {
1251
+ parameter_key: ::String?,
1252
+ parameter_value: ::String?,
1253
+ use_previous_value: bool?,
1254
+ resolved_value: ::String?
1255
+ },
1256
+ ],
1257
+ ?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
1258
+ ?tags: Array[
1259
+ {
1260
+ key: ::String,
1261
+ value: ::String
1262
+ },
1263
+ ],
1264
+ ?operation_preferences: {
1265
+ region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
1266
+ region_order: Array[::String]?,
1267
+ failure_tolerance_count: ::Integer?,
1268
+ failure_tolerance_percentage: ::Integer?,
1269
+ max_concurrent_count: ::Integer?,
1270
+ max_concurrent_percentage: ::Integer?,
1271
+ concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
1272
+ },
1273
+ ?administration_role_arn: ::String,
1274
+ ?execution_role_name: ::String,
1275
+ ?deployment_targets: {
1276
+ accounts: Array[::String]?,
1277
+ accounts_url: ::String?,
1278
+ organizational_unit_ids: Array[::String]?,
1279
+ account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
1280
+ },
1281
+ ?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
1282
+ ?auto_deployment: {
1283
+ enabled: bool?,
1284
+ retain_stacks_on_account_removal: bool?
1285
+ },
1286
+ ?operation_id: ::String,
1287
+ ?accounts: Array[::String],
1288
+ ?regions: Array[::String],
1289
+ ?call_as: ("SELF" | "DELEGATED_ADMIN"),
1290
+ ?managed_execution: {
1291
+ active: bool?
1292
+ }
1293
+ ) -> _UpdateStackSetResponseSuccess
1294
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackSetResponseSuccess
1295
+
1296
+ interface _UpdateTerminationProtectionResponseSuccess
1297
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTerminationProtectionOutput]
1298
+ def stack_id: () -> ::String
1299
+ end
1300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_termination_protection-instance_method
1301
+ def update_termination_protection: (
1302
+ enable_termination_protection: bool,
1303
+ stack_name: ::String
1304
+ ) -> _UpdateTerminationProtectionResponseSuccess
1305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTerminationProtectionResponseSuccess
1306
+
1307
+ interface _ValidateTemplateResponseSuccess
1308
+ include ::Seahorse::Client::_ResponseSuccess[Types::ValidateTemplateOutput]
1309
+ def parameters: () -> ::Array[Types::TemplateParameter]
1310
+ def description: () -> ::String
1311
+ def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
1312
+ def capabilities_reason: () -> ::String
1313
+ def declared_transforms: () -> ::Array[::String]
1314
+ end
1315
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#validate_template-instance_method
1316
+ def validate_template: (
1317
+ ?template_body: ::String,
1318
+ ?template_url: ::String
1319
+ ) -> _ValidateTemplateResponseSuccess
1320
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateTemplateResponseSuccess
1321
+
1322
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#wait_until-instance_method
1323
+ def wait_until: (:change_set_create_complete waiter_name,
1324
+ change_set_name: ::String,
1325
+ ?stack_name: ::String,
1326
+ ?next_token: ::String
1327
+ ) -> Client::_DescribeChangeSetResponseSuccess
1328
+ | (:change_set_create_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChangeSetResponseSuccess
1329
+ | (:stack_create_complete waiter_name,
1330
+ ?stack_name: ::String,
1331
+ ?next_token: ::String
1332
+ ) -> Client::_DescribeStacksResponseSuccess
1333
+ | (:stack_create_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1334
+ | (:stack_delete_complete waiter_name,
1335
+ ?stack_name: ::String,
1336
+ ?next_token: ::String
1337
+ ) -> Client::_DescribeStacksResponseSuccess
1338
+ | (:stack_delete_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1339
+ | (:stack_exists waiter_name,
1340
+ ?stack_name: ::String,
1341
+ ?next_token: ::String
1342
+ ) -> Client::_DescribeStacksResponseSuccess
1343
+ | (:stack_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1344
+ | (:stack_import_complete waiter_name,
1345
+ ?stack_name: ::String,
1346
+ ?next_token: ::String
1347
+ ) -> Client::_DescribeStacksResponseSuccess
1348
+ | (:stack_import_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1349
+ | (:stack_rollback_complete waiter_name,
1350
+ ?stack_name: ::String,
1351
+ ?next_token: ::String
1352
+ ) -> Client::_DescribeStacksResponseSuccess
1353
+ | (:stack_rollback_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1354
+ | (:stack_update_complete waiter_name,
1355
+ ?stack_name: ::String,
1356
+ ?next_token: ::String
1357
+ ) -> Client::_DescribeStacksResponseSuccess
1358
+ | (:stack_update_complete waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStacksResponseSuccess
1359
+ | (:type_registration_complete waiter_name,
1360
+ registration_token: ::String
1361
+ ) -> Client::_DescribeTypeRegistrationResponseSuccess
1362
+ | (:type_registration_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeTypeRegistrationResponseSuccess
1363
+ end
1364
+ end
1365
+ end
1366
+