aws-sdk-cloudformation 1.143.0 → 1.144.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +169 -119
- data/lib/aws-sdk-cloudformation/client_api.rb +57 -1
- data/lib/aws-sdk-cloudformation/resource.rb +4 -11
- data/lib/aws-sdk-cloudformation/stack.rb +18 -16
- data/lib/aws-sdk-cloudformation/types.rb +298 -134
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +24 -2
- data/sig/types.rbs +40 -0
- metadata +1 -1
|
@@ -237,6 +237,54 @@ module Aws::CloudFormation
|
|
|
237
237
|
#
|
|
238
238
|
class AlreadyExistsException < Aws::EmptyStructure; end
|
|
239
239
|
|
|
240
|
+
# The `Annotation` data type.
|
|
241
|
+
#
|
|
242
|
+
# A `GetHookResult` call returns detailed information and remediation
|
|
243
|
+
# guidance from Control Tower, Guard, Lambda, or custom Hooks for a Hook
|
|
244
|
+
# invocation result.
|
|
245
|
+
#
|
|
246
|
+
# @!attribute [rw] annotation_name
|
|
247
|
+
# An identifier for the evaluation logic that was used when invoking
|
|
248
|
+
# the Hook. For Control Tower, this is the control ID. For Guard, this
|
|
249
|
+
# is the rule ID. For Lambda and custom Hooks, this is a user-defined
|
|
250
|
+
# identifier.
|
|
251
|
+
# @return [String]
|
|
252
|
+
#
|
|
253
|
+
# @!attribute [rw] status
|
|
254
|
+
# The status of the Hook invocation from the downstream service.
|
|
255
|
+
# @return [String]
|
|
256
|
+
#
|
|
257
|
+
# @!attribute [rw] status_message
|
|
258
|
+
# The explanation for the specific status assigned to this Hook
|
|
259
|
+
# invocation. For example, "Bucket does not block public access".
|
|
260
|
+
# @return [String]
|
|
261
|
+
#
|
|
262
|
+
# @!attribute [rw] remediation_message
|
|
263
|
+
# Suggests what to change if your Hook returns a `FAILED` status. For
|
|
264
|
+
# example, "Block public access to the bucket".
|
|
265
|
+
# @return [String]
|
|
266
|
+
#
|
|
267
|
+
# @!attribute [rw] remediation_link
|
|
268
|
+
# A URL that you can access for additional remediation guidance.
|
|
269
|
+
# @return [String]
|
|
270
|
+
#
|
|
271
|
+
# @!attribute [rw] severity_level
|
|
272
|
+
# The relative risk associated with any violations of this type.
|
|
273
|
+
# @return [String]
|
|
274
|
+
#
|
|
275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Annotation AWS API Documentation
|
|
276
|
+
#
|
|
277
|
+
class Annotation < Struct.new(
|
|
278
|
+
:annotation_name,
|
|
279
|
+
:status,
|
|
280
|
+
:status_message,
|
|
281
|
+
:remediation_message,
|
|
282
|
+
:remediation_link,
|
|
283
|
+
:severity_level)
|
|
284
|
+
SENSITIVE = []
|
|
285
|
+
include Aws::Structure
|
|
286
|
+
end
|
|
287
|
+
|
|
240
288
|
# Describes whether StackSets automatically deploys to Organizations
|
|
241
289
|
# accounts that are added to a target organization or organizational
|
|
242
290
|
# unit (OU). For more information, see [Enable or disable automatic
|
|
@@ -508,7 +556,7 @@ module Aws::CloudFormation
|
|
|
508
556
|
# Specifies target details for an activated Hook.
|
|
509
557
|
#
|
|
510
558
|
# @!attribute [rw] target_type
|
|
511
|
-
# The
|
|
559
|
+
# The Hook target type.
|
|
512
560
|
# @return [String]
|
|
513
561
|
#
|
|
514
562
|
# @!attribute [rw] resource_target_details
|
|
@@ -738,7 +786,9 @@ module Aws::CloudFormation
|
|
|
738
786
|
# CloudFormation generates the change set by comparing this template
|
|
739
787
|
# with the template of the stack that you specified.
|
|
740
788
|
#
|
|
741
|
-
# Conditional: You must specify only
|
|
789
|
+
# Conditional: You must specify only one of the following parameters:
|
|
790
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
791
|
+
# `true`.
|
|
742
792
|
# @return [String]
|
|
743
793
|
#
|
|
744
794
|
# @!attribute [rw] template_url
|
|
@@ -749,12 +799,28 @@ module Aws::CloudFormation
|
|
|
749
799
|
# specified. The location for an Amazon S3 bucket must start with
|
|
750
800
|
# `https://`. URLs from S3 static websites are not supported.
|
|
751
801
|
#
|
|
752
|
-
# Conditional: You must specify only
|
|
802
|
+
# Conditional: You must specify only one of the following parameters:
|
|
803
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
804
|
+
# `true`.
|
|
753
805
|
# @return [String]
|
|
754
806
|
#
|
|
755
807
|
# @!attribute [rw] use_previous_template
|
|
756
808
|
# Whether to reuse the template that's associated with the stack to
|
|
757
809
|
# create the change set.
|
|
810
|
+
#
|
|
811
|
+
# When using templates with the `AWS::LanguageExtensions` transform,
|
|
812
|
+
# provide the template instead of using `UsePreviousTemplate` to
|
|
813
|
+
# ensure new parameter values and Systems Manager parameter updates
|
|
814
|
+
# are applied correctly. For more information, see
|
|
815
|
+
# [AWS::LanguageExtensions transform][1].
|
|
816
|
+
#
|
|
817
|
+
# Conditional: You must specify only one of the following parameters:
|
|
818
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
819
|
+
# `true`.
|
|
820
|
+
#
|
|
821
|
+
#
|
|
822
|
+
#
|
|
823
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
|
|
758
824
|
# @return [Boolean]
|
|
759
825
|
#
|
|
760
826
|
# @!attribute [rw] parameters
|
|
@@ -770,7 +836,7 @@ module Aws::CloudFormation
|
|
|
770
836
|
# * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
|
|
771
837
|
#
|
|
772
838
|
# Some stack templates might include resources that can affect
|
|
773
|
-
# permissions in your Amazon Web Services account
|
|
839
|
+
# permissions in your Amazon Web Services account, for example, by
|
|
774
840
|
# creating new IAM users. For those stacks, you must explicitly
|
|
775
841
|
# acknowledge this by specifying one of these capabilities.
|
|
776
842
|
#
|
|
@@ -856,16 +922,15 @@ module Aws::CloudFormation
|
|
|
856
922
|
# @return [Array<String>]
|
|
857
923
|
#
|
|
858
924
|
# @!attribute [rw] resource_types
|
|
859
|
-
#
|
|
860
|
-
#
|
|
861
|
-
# `AWS::EC2::*`, or `Custom::MyCustomInstance`.
|
|
925
|
+
# Specifies which resource types you can work with, such as
|
|
926
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
862
927
|
#
|
|
863
928
|
# If the list of resource types doesn't include a resource type that
|
|
864
929
|
# you're updating, the stack update fails. By default, CloudFormation
|
|
865
930
|
# grants permissions to all resource types. IAM uses this parameter
|
|
866
931
|
# for condition keys in IAM policies for CloudFormation. For more
|
|
867
|
-
# information, see [Control access with Identity and
|
|
868
|
-
# Management][1] in the *CloudFormation User Guide*.
|
|
932
|
+
# information, see [Control CloudFormation access with Identity and
|
|
933
|
+
# Access Management][1] in the *CloudFormation User Guide*.
|
|
869
934
|
#
|
|
870
935
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
871
936
|
# specified.
|
|
@@ -1260,22 +1325,15 @@ module Aws::CloudFormation
|
|
|
1260
1325
|
# @return [Array<String>]
|
|
1261
1326
|
#
|
|
1262
1327
|
# @!attribute [rw] resource_types
|
|
1263
|
-
#
|
|
1264
|
-
#
|
|
1265
|
-
# `AWS::EC2::*`, or `Custom::MyCustomInstance`. Use the following
|
|
1266
|
-
# syntax to describe template resource types: `AWS::*` (for all Amazon
|
|
1267
|
-
# Web Services resources), `Custom::*` (for all custom resources),
|
|
1268
|
-
# `Custom::logical_ID ` (for a specific custom resource),
|
|
1269
|
-
# `AWS::service_name::*` (for all resources of a particular Amazon Web
|
|
1270
|
-
# Services service), and `AWS::service_name::resource_logical_ID `
|
|
1271
|
-
# (for a specific Amazon Web Services resource).
|
|
1328
|
+
# Specifies which resource types you can work with, such as
|
|
1329
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
1272
1330
|
#
|
|
1273
1331
|
# If the list of resource types doesn't include a resource that
|
|
1274
1332
|
# you're creating, the stack creation fails. By default,
|
|
1275
1333
|
# CloudFormation grants permissions to all resource types. IAM uses
|
|
1276
1334
|
# this parameter for CloudFormation-specific condition keys in IAM
|
|
1277
|
-
# policies. For more information, see [Control access
|
|
1278
|
-
# and Access Management][1].
|
|
1335
|
+
# policies. For more information, see [Control CloudFormation access
|
|
1336
|
+
# with Identity and Access Management][1].
|
|
1279
1337
|
#
|
|
1280
1338
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
1281
1339
|
# specified.
|
|
@@ -2327,8 +2385,8 @@ module Aws::CloudFormation
|
|
|
2327
2385
|
# The input for the DescribeAccountLimits action.
|
|
2328
2386
|
#
|
|
2329
2387
|
# @!attribute [rw] next_token
|
|
2330
|
-
#
|
|
2331
|
-
#
|
|
2388
|
+
# The token for the next set of items to return. (You received this
|
|
2389
|
+
# token from a previous call.)
|
|
2332
2390
|
# @return [String]
|
|
2333
2391
|
#
|
|
2334
2392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimitsInput AWS API Documentation
|
|
@@ -2372,9 +2430,8 @@ module Aws::CloudFormation
|
|
|
2372
2430
|
# @return [String]
|
|
2373
2431
|
#
|
|
2374
2432
|
# @!attribute [rw] next_token
|
|
2375
|
-
#
|
|
2376
|
-
#
|
|
2377
|
-
# retrieve.
|
|
2433
|
+
# The token for the next set of items to return. (You received this
|
|
2434
|
+
# token from a previous call.)
|
|
2378
2435
|
# @return [String]
|
|
2379
2436
|
#
|
|
2380
2437
|
# @!attribute [rw] logical_resource_id
|
|
@@ -2406,7 +2463,7 @@ module Aws::CloudFormation
|
|
|
2406
2463
|
# @return [Array<Types::ChangeSetHook>]
|
|
2407
2464
|
#
|
|
2408
2465
|
# @!attribute [rw] status
|
|
2409
|
-
# Provides the status of the change set
|
|
2466
|
+
# Provides the status of the change set Hook.
|
|
2410
2467
|
# @return [String]
|
|
2411
2468
|
#
|
|
2412
2469
|
# @!attribute [rw] next_token
|
|
@@ -2448,8 +2505,8 @@ module Aws::CloudFormation
|
|
|
2448
2505
|
# @return [String]
|
|
2449
2506
|
#
|
|
2450
2507
|
# @!attribute [rw] next_token
|
|
2451
|
-
#
|
|
2452
|
-
#
|
|
2508
|
+
# The token for the next set of items to return. (You received this
|
|
2509
|
+
# token from a previous call.)
|
|
2453
2510
|
# @return [String]
|
|
2454
2511
|
#
|
|
2455
2512
|
# @!attribute [rw] include_property_values
|
|
@@ -3035,8 +3092,8 @@ module Aws::CloudFormation
|
|
|
3035
3092
|
# @return [String]
|
|
3036
3093
|
#
|
|
3037
3094
|
# @!attribute [rw] next_token
|
|
3038
|
-
#
|
|
3039
|
-
#
|
|
3095
|
+
# The token for the next set of items to return. (You received this
|
|
3096
|
+
# token from a previous call.)
|
|
3040
3097
|
# @return [String]
|
|
3041
3098
|
#
|
|
3042
3099
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEventsInput AWS API Documentation
|
|
@@ -3212,8 +3269,8 @@ module Aws::CloudFormation
|
|
|
3212
3269
|
# @return [Array<String>]
|
|
3213
3270
|
#
|
|
3214
3271
|
# @!attribute [rw] next_token
|
|
3215
|
-
#
|
|
3216
|
-
#
|
|
3272
|
+
# The token for the next set of items to return. (You received this
|
|
3273
|
+
# token from a previous call.)
|
|
3217
3274
|
# @return [String]
|
|
3218
3275
|
#
|
|
3219
3276
|
# @!attribute [rw] max_results
|
|
@@ -3499,8 +3556,8 @@ module Aws::CloudFormation
|
|
|
3499
3556
|
# @return [String]
|
|
3500
3557
|
#
|
|
3501
3558
|
# @!attribute [rw] next_token
|
|
3502
|
-
#
|
|
3503
|
-
#
|
|
3559
|
+
# The token for the next set of items to return. (You received this
|
|
3560
|
+
# token from a previous call.)
|
|
3504
3561
|
# @return [String]
|
|
3505
3562
|
#
|
|
3506
3563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacksInput AWS API Documentation
|
|
@@ -4347,6 +4404,114 @@ module Aws::CloudFormation
|
|
|
4347
4404
|
include Aws::Structure
|
|
4348
4405
|
end
|
|
4349
4406
|
|
|
4407
|
+
# @!attribute [rw] hook_result_id
|
|
4408
|
+
# The unique identifier (ID) of the Hook invocation result that you
|
|
4409
|
+
# want details about. You can get the ID from the [ListHookResults][1]
|
|
4410
|
+
# operation.
|
|
4411
|
+
#
|
|
4412
|
+
#
|
|
4413
|
+
#
|
|
4414
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListHookResults.html
|
|
4415
|
+
# @return [String]
|
|
4416
|
+
#
|
|
4417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetHookResultInput AWS API Documentation
|
|
4418
|
+
#
|
|
4419
|
+
class GetHookResultInput < Struct.new(
|
|
4420
|
+
:hook_result_id)
|
|
4421
|
+
SENSITIVE = []
|
|
4422
|
+
include Aws::Structure
|
|
4423
|
+
end
|
|
4424
|
+
|
|
4425
|
+
# @!attribute [rw] hook_result_id
|
|
4426
|
+
# The unique identifier of the Hook result.
|
|
4427
|
+
# @return [String]
|
|
4428
|
+
#
|
|
4429
|
+
# @!attribute [rw] invocation_point
|
|
4430
|
+
# The specific point in the provisioning process where the Hook is
|
|
4431
|
+
# invoked.
|
|
4432
|
+
# @return [String]
|
|
4433
|
+
#
|
|
4434
|
+
# @!attribute [rw] failure_mode
|
|
4435
|
+
# The failure mode of the invocation.
|
|
4436
|
+
# @return [String]
|
|
4437
|
+
#
|
|
4438
|
+
# @!attribute [rw] type_name
|
|
4439
|
+
# The name of the Hook that was invoked.
|
|
4440
|
+
# @return [String]
|
|
4441
|
+
#
|
|
4442
|
+
# @!attribute [rw] original_type_name
|
|
4443
|
+
# The original public type name of the Hook when an alias is used.
|
|
4444
|
+
#
|
|
4445
|
+
# For example, if you activate `AWS::Hooks::GuardHook` with alias
|
|
4446
|
+
# `MyCompany::Custom::GuardHook`, then `TypeName` will be
|
|
4447
|
+
# `MyCompany::Custom::GuardHook` and `OriginalTypeName` will be
|
|
4448
|
+
# `AWS::Hooks::GuardHook`.
|
|
4449
|
+
# @return [String]
|
|
4450
|
+
#
|
|
4451
|
+
# @!attribute [rw] type_version_id
|
|
4452
|
+
# The version identifier of the Hook that was invoked.
|
|
4453
|
+
# @return [String]
|
|
4454
|
+
#
|
|
4455
|
+
# @!attribute [rw] type_configuration_version_id
|
|
4456
|
+
# The version identifier of the Hook configuration data that was used
|
|
4457
|
+
# during invocation.
|
|
4458
|
+
# @return [String]
|
|
4459
|
+
#
|
|
4460
|
+
# @!attribute [rw] type_arn
|
|
4461
|
+
# The Amazon Resource Name (ARN) of the Hook.
|
|
4462
|
+
# @return [String]
|
|
4463
|
+
#
|
|
4464
|
+
# @!attribute [rw] status
|
|
4465
|
+
# The status of the Hook invocation. The following statuses are
|
|
4466
|
+
# possible:
|
|
4467
|
+
#
|
|
4468
|
+
# * `HOOK_IN_PROGRESS`: The Hook is currently running.
|
|
4469
|
+
#
|
|
4470
|
+
# * `HOOK_COMPLETE_SUCCEEDED`: The Hook completed successfully.
|
|
4471
|
+
#
|
|
4472
|
+
# * `HOOK_COMPLETE_FAILED`: The Hook completed but failed validation.
|
|
4473
|
+
#
|
|
4474
|
+
# * `HOOK_FAILED`: The Hook encountered an error during execution.
|
|
4475
|
+
# @return [String]
|
|
4476
|
+
#
|
|
4477
|
+
# @!attribute [rw] hook_status_reason
|
|
4478
|
+
# A message that provides additional details about the Hook invocation
|
|
4479
|
+
# status.
|
|
4480
|
+
# @return [String]
|
|
4481
|
+
#
|
|
4482
|
+
# @!attribute [rw] invoked_at
|
|
4483
|
+
# The timestamp when the Hook was invoked.
|
|
4484
|
+
# @return [Time]
|
|
4485
|
+
#
|
|
4486
|
+
# @!attribute [rw] target
|
|
4487
|
+
# Information about the target of the Hook invocation.
|
|
4488
|
+
# @return [Types::HookTarget]
|
|
4489
|
+
#
|
|
4490
|
+
# @!attribute [rw] annotations
|
|
4491
|
+
# A list of objects with additional information and guidance that can
|
|
4492
|
+
# help you resolve a failed Hook invocation.
|
|
4493
|
+
# @return [Array<Types::Annotation>]
|
|
4494
|
+
#
|
|
4495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetHookResultOutput AWS API Documentation
|
|
4496
|
+
#
|
|
4497
|
+
class GetHookResultOutput < Struct.new(
|
|
4498
|
+
:hook_result_id,
|
|
4499
|
+
:invocation_point,
|
|
4500
|
+
:failure_mode,
|
|
4501
|
+
:type_name,
|
|
4502
|
+
:original_type_name,
|
|
4503
|
+
:type_version_id,
|
|
4504
|
+
:type_configuration_version_id,
|
|
4505
|
+
:type_arn,
|
|
4506
|
+
:status,
|
|
4507
|
+
:hook_status_reason,
|
|
4508
|
+
:invoked_at,
|
|
4509
|
+
:target,
|
|
4510
|
+
:annotations)
|
|
4511
|
+
SENSITIVE = []
|
|
4512
|
+
include Aws::Structure
|
|
4513
|
+
end
|
|
4514
|
+
|
|
4350
4515
|
# The input for the GetStackPolicy action.
|
|
4351
4516
|
#
|
|
4352
4517
|
# @!attribute [rw] stack_name
|
|
@@ -4365,9 +4530,9 @@ module Aws::CloudFormation
|
|
|
4365
4530
|
# The output for the GetStackPolicy action.
|
|
4366
4531
|
#
|
|
4367
4532
|
# @!attribute [rw] stack_policy_body
|
|
4368
|
-
# Structure that contains the stack policy body.
|
|
4369
|
-
#
|
|
4370
|
-
#
|
|
4533
|
+
# Structure that contains the stack policy body. For more information,
|
|
4534
|
+
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
|
4535
|
+
# User Guide*.
|
|
4371
4536
|
#
|
|
4372
4537
|
#
|
|
4373
4538
|
#
|
|
@@ -4612,8 +4777,7 @@ module Aws::CloudFormation
|
|
|
4612
4777
|
#
|
|
4613
4778
|
class HookResultNotFoundException < Aws::EmptyStructure; end
|
|
4614
4779
|
|
|
4615
|
-
#
|
|
4616
|
-
# status.
|
|
4780
|
+
# A `ListHookResults` call returns a summary of a Hook invocation.
|
|
4617
4781
|
#
|
|
4618
4782
|
# @!attribute [rw] hook_result_id
|
|
4619
4783
|
# The unique identifier for this Hook invocation result.
|
|
@@ -4679,8 +4843,8 @@ module Aws::CloudFormation
|
|
|
4679
4843
|
# @return [String]
|
|
4680
4844
|
#
|
|
4681
4845
|
# @!attribute [rw] hook_execution_target
|
|
4682
|
-
# The ARN of the target stack or request token
|
|
4683
|
-
# API operation.
|
|
4846
|
+
# The Amazon Resource Name (ARN) of the target stack or request token
|
|
4847
|
+
# of the Cloud Control API operation.
|
|
4684
4848
|
#
|
|
4685
4849
|
# Only shown in responses when the request does not specify
|
|
4686
4850
|
# `TargetType` and `TargetId` filters.
|
|
@@ -4706,6 +4870,35 @@ module Aws::CloudFormation
|
|
|
4706
4870
|
include Aws::Structure
|
|
4707
4871
|
end
|
|
4708
4872
|
|
|
4873
|
+
# The `HookTarget` data type.
|
|
4874
|
+
#
|
|
4875
|
+
# @!attribute [rw] target_type
|
|
4876
|
+
# The target type.
|
|
4877
|
+
# @return [String]
|
|
4878
|
+
#
|
|
4879
|
+
# @!attribute [rw] target_type_name
|
|
4880
|
+
# The target name, for example, `AWS::S3::Bucket`.
|
|
4881
|
+
# @return [String]
|
|
4882
|
+
#
|
|
4883
|
+
# @!attribute [rw] target_id
|
|
4884
|
+
# The unique identifier of the Hook invocation target.
|
|
4885
|
+
# @return [String]
|
|
4886
|
+
#
|
|
4887
|
+
# @!attribute [rw] action
|
|
4888
|
+
# The action that invoked the Hook.
|
|
4889
|
+
# @return [String]
|
|
4890
|
+
#
|
|
4891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/HookTarget AWS API Documentation
|
|
4892
|
+
#
|
|
4893
|
+
class HookTarget < Struct.new(
|
|
4894
|
+
:target_type,
|
|
4895
|
+
:target_type_name,
|
|
4896
|
+
:target_id,
|
|
4897
|
+
:action)
|
|
4898
|
+
SENSITIVE = []
|
|
4899
|
+
include Aws::Structure
|
|
4900
|
+
end
|
|
4901
|
+
|
|
4709
4902
|
# @!attribute [rw] stack_set_name
|
|
4710
4903
|
# The name of the StackSet. The name must be unique in the Region
|
|
4711
4904
|
# where you create your StackSet.
|
|
@@ -4836,8 +5029,8 @@ module Aws::CloudFormation
|
|
|
4836
5029
|
# @return [String]
|
|
4837
5030
|
#
|
|
4838
5031
|
# @!attribute [rw] next_token
|
|
4839
|
-
#
|
|
4840
|
-
#
|
|
5032
|
+
# The token for the next set of items to return. (You received this
|
|
5033
|
+
# token from a previous call.)
|
|
4841
5034
|
# @return [String]
|
|
4842
5035
|
#
|
|
4843
5036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSetsInput AWS API Documentation
|
|
@@ -4872,9 +5065,8 @@ module Aws::CloudFormation
|
|
|
4872
5065
|
end
|
|
4873
5066
|
|
|
4874
5067
|
# @!attribute [rw] next_token
|
|
4875
|
-
#
|
|
4876
|
-
#
|
|
4877
|
-
# retrieve.
|
|
5068
|
+
# The token for the next set of items to return. (You received this
|
|
5069
|
+
# token from a previous call.)
|
|
4878
5070
|
# @return [String]
|
|
4879
5071
|
#
|
|
4880
5072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListExportsInput AWS API Documentation
|
|
@@ -4905,7 +5097,8 @@ module Aws::CloudFormation
|
|
|
4905
5097
|
end
|
|
4906
5098
|
|
|
4907
5099
|
# @!attribute [rw] next_token
|
|
4908
|
-
#
|
|
5100
|
+
# The token for the next set of items to return. (You received this
|
|
5101
|
+
# token from a previous call.)
|
|
4909
5102
|
# @return [String]
|
|
4910
5103
|
#
|
|
4911
5104
|
# @!attribute [rw] max_results
|
|
@@ -4989,8 +5182,8 @@ module Aws::CloudFormation
|
|
|
4989
5182
|
# @return [String]
|
|
4990
5183
|
#
|
|
4991
5184
|
# @!attribute [rw] next_token
|
|
4992
|
-
#
|
|
4993
|
-
#
|
|
5185
|
+
# The token for the next set of items to return. (You received this
|
|
5186
|
+
# token from a previous call.)
|
|
4994
5187
|
# @return [String]
|
|
4995
5188
|
#
|
|
4996
5189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListHookResultsInput AWS API Documentation
|
|
@@ -5040,9 +5233,8 @@ module Aws::CloudFormation
|
|
|
5040
5233
|
# @return [String]
|
|
5041
5234
|
#
|
|
5042
5235
|
# @!attribute [rw] next_token
|
|
5043
|
-
#
|
|
5044
|
-
#
|
|
5045
|
-
# exported output value.
|
|
5236
|
+
# The token for the next set of items to return. (You received this
|
|
5237
|
+
# token from a previous call.)
|
|
5046
5238
|
# @return [String]
|
|
5047
5239
|
#
|
|
5048
5240
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListImportsInput AWS API Documentation
|
|
@@ -5083,7 +5275,8 @@ module Aws::CloudFormation
|
|
|
5083
5275
|
# @return [Array<Types::ScannedResourceIdentifier>]
|
|
5084
5276
|
#
|
|
5085
5277
|
# @!attribute [rw] next_token
|
|
5086
|
-
#
|
|
5278
|
+
# The token for the next set of items to return. (You received this
|
|
5279
|
+
# token from a previous call.)
|
|
5087
5280
|
# @return [String]
|
|
5088
5281
|
#
|
|
5089
5282
|
# @!attribute [rw] max_results
|
|
@@ -5151,7 +5344,8 @@ module Aws::CloudFormation
|
|
|
5151
5344
|
# @return [String]
|
|
5152
5345
|
#
|
|
5153
5346
|
# @!attribute [rw] next_token
|
|
5154
|
-
#
|
|
5347
|
+
# The token for the next set of items to return. (You received this
|
|
5348
|
+
# token from a previous call.)
|
|
5155
5349
|
# @return [String]
|
|
5156
5350
|
#
|
|
5157
5351
|
# @!attribute [rw] max_results
|
|
@@ -5199,7 +5393,8 @@ module Aws::CloudFormation
|
|
|
5199
5393
|
end
|
|
5200
5394
|
|
|
5201
5395
|
# @!attribute [rw] next_token
|
|
5202
|
-
#
|
|
5396
|
+
# The token for the next set of items to return. (You received this
|
|
5397
|
+
# token from a previous call.)
|
|
5203
5398
|
# @return [String]
|
|
5204
5399
|
#
|
|
5205
5400
|
# @!attribute [rw] max_results
|
|
@@ -5251,12 +5446,8 @@ module Aws::CloudFormation
|
|
|
5251
5446
|
# @return [String]
|
|
5252
5447
|
#
|
|
5253
5448
|
# @!attribute [rw] next_token
|
|
5254
|
-
#
|
|
5255
|
-
#
|
|
5256
|
-
# value is set to a token. To retrieve the next set of results, call
|
|
5257
|
-
# this action again and assign that token to the request object's
|
|
5258
|
-
# `NextToken` parameter. If there are no remaining results, the
|
|
5259
|
-
# previous response object's `NextToken` parameter is set to `null`.
|
|
5449
|
+
# The token for the next set of items to return. (You received this
|
|
5450
|
+
# token from a previous call.)
|
|
5260
5451
|
# @return [String]
|
|
5261
5452
|
#
|
|
5262
5453
|
# @!attribute [rw] max_results
|
|
@@ -5362,12 +5553,8 @@ module Aws::CloudFormation
|
|
|
5362
5553
|
# @return [String]
|
|
5363
5554
|
#
|
|
5364
5555
|
# @!attribute [rw] next_token
|
|
5365
|
-
#
|
|
5366
|
-
#
|
|
5367
|
-
# retrieve the next set of results, call `ListStackInstances` again
|
|
5368
|
-
# and assign that token to the request object's `NextToken`
|
|
5369
|
-
# parameter. If there are no remaining results, the previous response
|
|
5370
|
-
# object's `NextToken` parameter is set to `null`.
|
|
5556
|
+
# The token for the next set of items to return. (You received this
|
|
5557
|
+
# token from a previous call.)
|
|
5371
5558
|
# @return [String]
|
|
5372
5559
|
#
|
|
5373
5560
|
# @!attribute [rw] max_results
|
|
@@ -5455,11 +5642,8 @@ module Aws::CloudFormation
|
|
|
5455
5642
|
# @return [String]
|
|
5456
5643
|
#
|
|
5457
5644
|
# @!attribute [rw] next_token
|
|
5458
|
-
#
|
|
5459
|
-
#
|
|
5460
|
-
# call this action again and assign that token to the request
|
|
5461
|
-
# object's `NextToken` parameter. If the request returns all results,
|
|
5462
|
-
# `NextToken` is set to `null`.
|
|
5645
|
+
# The token for the next set of items to return. (You received this
|
|
5646
|
+
# token from a previous call.)
|
|
5463
5647
|
# @return [String]
|
|
5464
5648
|
#
|
|
5465
5649
|
# @!attribute [rw] max_results
|
|
@@ -5507,11 +5691,8 @@ module Aws::CloudFormation
|
|
|
5507
5691
|
# @return [Array<String>]
|
|
5508
5692
|
#
|
|
5509
5693
|
# @!attribute [rw] next_token
|
|
5510
|
-
#
|
|
5511
|
-
#
|
|
5512
|
-
# call this action again and assign that token to the request
|
|
5513
|
-
# object's `NextToken` parameter. If the request returns all results,
|
|
5514
|
-
# `NextToken` is set to `null`.
|
|
5694
|
+
# The token for the next set of items to return. (You received this
|
|
5695
|
+
# token from a previous call.)
|
|
5515
5696
|
# @return [String]
|
|
5516
5697
|
#
|
|
5517
5698
|
# @!attribute [rw] max_results
|
|
@@ -5577,8 +5758,8 @@ module Aws::CloudFormation
|
|
|
5577
5758
|
# @return [String]
|
|
5578
5759
|
#
|
|
5579
5760
|
# @!attribute [rw] next_token
|
|
5580
|
-
#
|
|
5581
|
-
#
|
|
5761
|
+
# The token for the next set of items to return. (You received this
|
|
5762
|
+
# token from a previous call.)
|
|
5582
5763
|
# @return [String]
|
|
5583
5764
|
#
|
|
5584
5765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResourcesInput AWS API Documentation
|
|
@@ -5617,8 +5798,8 @@ module Aws::CloudFormation
|
|
|
5617
5798
|
# @return [String]
|
|
5618
5799
|
#
|
|
5619
5800
|
# @!attribute [rw] next_token
|
|
5620
|
-
#
|
|
5621
|
-
#
|
|
5801
|
+
# The token for the next set of items to return. (You received this
|
|
5802
|
+
# token from a previous call.)
|
|
5622
5803
|
# @return [String]
|
|
5623
5804
|
#
|
|
5624
5805
|
# @!attribute [rw] max_results
|
|
@@ -5697,13 +5878,8 @@ module Aws::CloudFormation
|
|
|
5697
5878
|
# @return [String]
|
|
5698
5879
|
#
|
|
5699
5880
|
# @!attribute [rw] next_token
|
|
5700
|
-
#
|
|
5701
|
-
#
|
|
5702
|
-
# token. To retrieve the next set of results, call
|
|
5703
|
-
# `ListStackSetOperationResults` again and assign that token to the
|
|
5704
|
-
# request object's `NextToken` parameter. If there are no remaining
|
|
5705
|
-
# results, the previous response object's `NextToken` parameter is
|
|
5706
|
-
# set to `null`.
|
|
5881
|
+
# The token for the next set of items to return. (You received this
|
|
5882
|
+
# token from a previous call.)
|
|
5707
5883
|
# @return [String]
|
|
5708
5884
|
#
|
|
5709
5885
|
# @!attribute [rw] max_results
|
|
@@ -5782,13 +5958,8 @@ module Aws::CloudFormation
|
|
|
5782
5958
|
# @return [String]
|
|
5783
5959
|
#
|
|
5784
5960
|
# @!attribute [rw] next_token
|
|
5785
|
-
#
|
|
5786
|
-
#
|
|
5787
|
-
# value is set to a token. To retrieve the next set of results, call
|
|
5788
|
-
# `ListStackSetOperations` again and assign that token to the request
|
|
5789
|
-
# object's `NextToken` parameter. If there are no remaining results,
|
|
5790
|
-
# the previous response object's `NextToken` parameter is set to
|
|
5791
|
-
# `null`.
|
|
5961
|
+
# The token for the next set of items to return. (You received this
|
|
5962
|
+
# token from a previous call.)
|
|
5792
5963
|
# @return [String]
|
|
5793
5964
|
#
|
|
5794
5965
|
# @!attribute [rw] max_results
|
|
@@ -5855,12 +6026,8 @@ module Aws::CloudFormation
|
|
|
5855
6026
|
end
|
|
5856
6027
|
|
|
5857
6028
|
# @!attribute [rw] next_token
|
|
5858
|
-
#
|
|
5859
|
-
#
|
|
5860
|
-
# to a token. To retrieve the next set of results, call
|
|
5861
|
-
# `ListStackSets` again and assign that token to the request object's
|
|
5862
|
-
# `NextToken` parameter. If there are no remaining results, the
|
|
5863
|
-
# previous response object's `NextToken` parameter is set to `null`.
|
|
6029
|
+
# The token for the next set of items to return. (You received this
|
|
6030
|
+
# token from a previous call.)
|
|
5864
6031
|
# @return [String]
|
|
5865
6032
|
#
|
|
5866
6033
|
# @!attribute [rw] max_results
|
|
@@ -5934,8 +6101,8 @@ module Aws::CloudFormation
|
|
|
5934
6101
|
# The input for ListStacks action.
|
|
5935
6102
|
#
|
|
5936
6103
|
# @!attribute [rw] next_token
|
|
5937
|
-
#
|
|
5938
|
-
#
|
|
6104
|
+
# The token for the next set of items to return. (You received this
|
|
6105
|
+
# token from a previous call.)
|
|
5939
6106
|
# @return [String]
|
|
5940
6107
|
#
|
|
5941
6108
|
# @!attribute [rw] stack_status_filter
|
|
@@ -6011,12 +6178,8 @@ module Aws::CloudFormation
|
|
|
6011
6178
|
# @return [Integer]
|
|
6012
6179
|
#
|
|
6013
6180
|
# @!attribute [rw] next_token
|
|
6014
|
-
#
|
|
6015
|
-
#
|
|
6016
|
-
# to a token. To retrieve the next set of results, call this action
|
|
6017
|
-
# again and assign that token to the request object's `NextToken`
|
|
6018
|
-
# parameter. If there are no remaining results, the previous response
|
|
6019
|
-
# object's `NextToken` parameter is set to `null`.
|
|
6181
|
+
# The token for the next set of items to return. (You received this
|
|
6182
|
+
# token from a previous call.)
|
|
6020
6183
|
# @return [String]
|
|
6021
6184
|
#
|
|
6022
6185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListTypeRegistrationsInput AWS API Documentation
|
|
@@ -6087,12 +6250,8 @@ module Aws::CloudFormation
|
|
|
6087
6250
|
# @return [Integer]
|
|
6088
6251
|
#
|
|
6089
6252
|
# @!attribute [rw] next_token
|
|
6090
|
-
#
|
|
6091
|
-
#
|
|
6092
|
-
# value is set to a token. To retrieve the next set of results, call
|
|
6093
|
-
# this action again and assign that token to the request object's
|
|
6094
|
-
# `NextToken` parameter. If there are no remaining results, the
|
|
6095
|
-
# previous response object's `NextToken` parameter is set to `null`.
|
|
6253
|
+
# The token for the next set of items to return. (You received this
|
|
6254
|
+
# token from a previous call.)
|
|
6096
6255
|
# @return [String]
|
|
6097
6256
|
#
|
|
6098
6257
|
# @!attribute [rw] deprecated_status
|
|
@@ -6230,12 +6389,8 @@ module Aws::CloudFormation
|
|
|
6230
6389
|
# @return [Integer]
|
|
6231
6390
|
#
|
|
6232
6391
|
# @!attribute [rw] next_token
|
|
6233
|
-
#
|
|
6234
|
-
#
|
|
6235
|
-
# to a token. To retrieve the next set of results, call this action
|
|
6236
|
-
# again and assign that token to the request object's `NextToken`
|
|
6237
|
-
# parameter. If there are no remaining results, the previous response
|
|
6238
|
-
# object's `NextToken` parameter is set to `null`.
|
|
6392
|
+
# The token for the next set of items to return. (You received this
|
|
6393
|
+
# token from a previous call.)
|
|
6239
6394
|
# @return [String]
|
|
6240
6395
|
#
|
|
6241
6396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListTypesInput AWS API Documentation
|
|
@@ -6430,7 +6585,7 @@ module Aws::CloudFormation
|
|
|
6430
6585
|
#
|
|
6431
6586
|
class OperationStatusCheckFailedException < Aws::EmptyStructure; end
|
|
6432
6587
|
|
|
6433
|
-
# The Output data type.
|
|
6588
|
+
# The `Output` data type.
|
|
6434
6589
|
#
|
|
6435
6590
|
# @!attribute [rw] output_key
|
|
6436
6591
|
# The key associated with the output.
|
|
@@ -6459,7 +6614,7 @@ module Aws::CloudFormation
|
|
|
6459
6614
|
include Aws::Structure
|
|
6460
6615
|
end
|
|
6461
6616
|
|
|
6462
|
-
# The Parameter data type.
|
|
6617
|
+
# The `Parameter` data type.
|
|
6463
6618
|
#
|
|
6464
6619
|
# @!attribute [rw] parameter_key
|
|
6465
6620
|
# The key associated with the parameter. If you don't specify a key
|
|
@@ -6516,7 +6671,7 @@ module Aws::CloudFormation
|
|
|
6516
6671
|
include Aws::Structure
|
|
6517
6672
|
end
|
|
6518
6673
|
|
|
6519
|
-
# The ParameterDeclaration data type.
|
|
6674
|
+
# The `ParameterDeclaration` data type.
|
|
6520
6675
|
#
|
|
6521
6676
|
# @!attribute [rw] parameter_key
|
|
6522
6677
|
# The name that's associated with the parameter.
|
|
@@ -8020,7 +8175,7 @@ module Aws::CloudFormation
|
|
|
8020
8175
|
include Aws::Structure
|
|
8021
8176
|
end
|
|
8022
8177
|
|
|
8023
|
-
# The Stack data type.
|
|
8178
|
+
# The `Stack` data type.
|
|
8024
8179
|
#
|
|
8025
8180
|
# @!attribute [rw] stack_id
|
|
8026
8181
|
# Unique identifier of the stack.
|
|
@@ -8321,7 +8476,7 @@ module Aws::CloudFormation
|
|
|
8321
8476
|
include Aws::Structure
|
|
8322
8477
|
end
|
|
8323
8478
|
|
|
8324
|
-
# The StackEvent data type.
|
|
8479
|
+
# The `StackEvent` data type.
|
|
8325
8480
|
#
|
|
8326
8481
|
# @!attribute [rw] stack_id
|
|
8327
8482
|
# The unique ID name of the instance of the stack.
|
|
@@ -8992,7 +9147,7 @@ module Aws::CloudFormation
|
|
|
8992
9147
|
include Aws::Structure
|
|
8993
9148
|
end
|
|
8994
9149
|
|
|
8995
|
-
# The StackResource data type.
|
|
9150
|
+
# The `StackResource` data type.
|
|
8996
9151
|
#
|
|
8997
9152
|
# @!attribute [rw] stack_name
|
|
8998
9153
|
# The name associated with the stack.
|
|
@@ -10299,7 +10454,7 @@ module Aws::CloudFormation
|
|
|
10299
10454
|
include Aws::Structure
|
|
10300
10455
|
end
|
|
10301
10456
|
|
|
10302
|
-
# The StackSummary Data Type
|
|
10457
|
+
# The `StackSummary` Data Type
|
|
10303
10458
|
#
|
|
10304
10459
|
# @!attribute [rw] stack_id
|
|
10305
10460
|
# Unique stack identifier.
|
|
@@ -10547,7 +10702,7 @@ module Aws::CloudFormation
|
|
|
10547
10702
|
include Aws::Structure
|
|
10548
10703
|
end
|
|
10549
10704
|
|
|
10550
|
-
# The TemplateParameter data type.
|
|
10705
|
+
# The `TemplateParameter` data type.
|
|
10551
10706
|
#
|
|
10552
10707
|
# @!attribute [rw] parameter_key
|
|
10553
10708
|
# The name associated with the parameter.
|
|
@@ -11268,9 +11423,19 @@ module Aws::CloudFormation
|
|
|
11268
11423
|
# Reuse the existing template that is associated with the stack that
|
|
11269
11424
|
# you are updating.
|
|
11270
11425
|
#
|
|
11426
|
+
# When using templates with the `AWS::LanguageExtensions` transform,
|
|
11427
|
+
# provide the template instead of using `UsePreviousTemplate` to
|
|
11428
|
+
# ensure new parameter values and Systems Manager parameter updates
|
|
11429
|
+
# are applied correctly. For more information, see
|
|
11430
|
+
# [AWS::LanguageExtensions transform][1].
|
|
11431
|
+
#
|
|
11271
11432
|
# Conditional: You must specify only one of the following parameters:
|
|
11272
11433
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
11273
11434
|
# `true`.
|
|
11435
|
+
#
|
|
11436
|
+
#
|
|
11437
|
+
#
|
|
11438
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
|
|
11274
11439
|
# @return [Boolean]
|
|
11275
11440
|
#
|
|
11276
11441
|
# @!attribute [rw] stack_policy_during_update_body
|
|
@@ -11405,16 +11570,15 @@ module Aws::CloudFormation
|
|
|
11405
11570
|
# @return [Array<String>]
|
|
11406
11571
|
#
|
|
11407
11572
|
# @!attribute [rw] resource_types
|
|
11408
|
-
#
|
|
11409
|
-
#
|
|
11410
|
-
# `AWS::EC2::*`, or `Custom::MyCustomInstance`.
|
|
11573
|
+
# Specifies which resource types you can work with, such as
|
|
11574
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
11411
11575
|
#
|
|
11412
11576
|
# If the list of resource types doesn't include a resource that
|
|
11413
11577
|
# you're updating, the stack update fails. By default, CloudFormation
|
|
11414
11578
|
# grants permissions to all resource types. IAM uses this parameter
|
|
11415
11579
|
# for CloudFormation-specific condition keys in IAM policies. For more
|
|
11416
|
-
# information, see [Control access with Identity and
|
|
11417
|
-
# Management][1].
|
|
11580
|
+
# information, see [Control CloudFormation access with Identity and
|
|
11581
|
+
# Access Management][1].
|
|
11418
11582
|
#
|
|
11419
11583
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
11420
11584
|
# specified.
|