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