aws-sdk-cloudformation 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +134 -86
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +12 -12
- data/lib/aws-sdk-cloudformation/stack.rb +23 -23
- data/lib/aws-sdk-cloudformation/stack_resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +98 -94
- metadata +3 -3
@@ -61,7 +61,7 @@ module Aws::CloudFormation
|
|
61
61
|
#
|
62
62
|
#
|
63
63
|
#
|
64
|
-
# [1]:
|
64
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
65
65
|
# @return [String]
|
66
66
|
def resource_type
|
67
67
|
data[:resource_type]
|
@@ -82,7 +82,7 @@ module Aws::CloudFormation
|
|
82
82
|
#
|
83
83
|
#
|
84
84
|
#
|
85
|
-
# [1]:
|
85
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
86
86
|
# @option options [String] :template_url
|
87
87
|
# Location of file containing the template body. The URL must point to a
|
88
88
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
@@ -94,14 +94,14 @@ module Aws::CloudFormation
|
|
94
94
|
#
|
95
95
|
#
|
96
96
|
#
|
97
|
-
# [1]:
|
97
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
98
98
|
# @option options [Array<Types::Parameter>] :parameters
|
99
99
|
# A list of `Parameter` structures that specify input parameters for the
|
100
100
|
# stack. For more information, see the [Parameter][1] data type.
|
101
101
|
#
|
102
102
|
#
|
103
103
|
#
|
104
|
-
# [1]:
|
104
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
105
105
|
# @option options [Boolean] :disable_rollback
|
106
106
|
# Set to `true` to disable rollback of the stack if stack creation
|
107
107
|
# failed. You can specify either `DisableRollback` or `OnFailure`, but
|
@@ -198,13 +198,13 @@ module Aws::CloudFormation
|
|
198
198
|
#
|
199
199
|
#
|
200
200
|
#
|
201
|
-
# [1]:
|
202
|
-
# [2]:
|
203
|
-
# [3]:
|
204
|
-
# [4]:
|
205
|
-
# [5]:
|
206
|
-
# [6]:
|
207
|
-
# [7]:
|
201
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
202
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
203
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
204
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
205
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
206
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
207
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
208
208
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
209
209
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
210
210
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -228,7 +228,7 @@ module Aws::CloudFormation
|
|
228
228
|
#
|
229
229
|
#
|
230
230
|
#
|
231
|
-
# [1]:
|
231
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
232
232
|
# @option options [String] :role_arn
|
233
233
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
234
234
|
# Management (IAM) role that AWS CloudFormation assumes to create the
|
@@ -257,7 +257,7 @@ module Aws::CloudFormation
|
|
257
257
|
#
|
258
258
|
#
|
259
259
|
#
|
260
|
-
# [1]:
|
260
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
261
261
|
# @option options [String] :stack_policy_url
|
262
262
|
# Location of a file containing the stack policy. The URL must point to
|
263
263
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
@@ -436,7 +436,7 @@ module Aws::CloudFormation
|
|
436
436
|
#
|
437
437
|
#
|
438
438
|
#
|
439
|
-
# [1]:
|
439
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
440
440
|
# @option options [String] :template_url
|
441
441
|
# Location of file containing the template body. The URL must point to a
|
442
442
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
@@ -448,14 +448,14 @@ module Aws::CloudFormation
|
|
448
448
|
#
|
449
449
|
#
|
450
450
|
#
|
451
|
-
# [1]:
|
451
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
452
452
|
# @option options [Array<Types::Parameter>] :parameters
|
453
453
|
# A list of `Parameter` structures that specify input parameters for the
|
454
454
|
# stack. For more information, see the [Parameter][1] data type.
|
455
455
|
#
|
456
456
|
#
|
457
457
|
#
|
458
|
-
# [1]:
|
458
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
459
459
|
# @option options [Boolean] :disable_rollback
|
460
460
|
# Set to `true` to disable rollback of the stack if stack creation
|
461
461
|
# failed. You can specify either `DisableRollback` or `OnFailure`, but
|
@@ -552,13 +552,13 @@ module Aws::CloudFormation
|
|
552
552
|
#
|
553
553
|
#
|
554
554
|
#
|
555
|
-
# [1]:
|
556
|
-
# [2]:
|
557
|
-
# [3]:
|
558
|
-
# [4]:
|
559
|
-
# [5]:
|
560
|
-
# [6]:
|
561
|
-
# [7]:
|
555
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
556
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
557
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
558
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
559
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
560
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
561
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
562
562
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
563
563
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
564
564
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -582,7 +582,7 @@ module Aws::CloudFormation
|
|
582
582
|
#
|
583
583
|
#
|
584
584
|
#
|
585
|
-
# [1]:
|
585
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
586
586
|
# @option options [String] :role_arn
|
587
587
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
588
588
|
# Management (IAM) role that AWS CloudFormation assumes to create the
|
@@ -611,7 +611,7 @@ module Aws::CloudFormation
|
|
611
611
|
#
|
612
612
|
#
|
613
613
|
#
|
614
|
-
# [1]:
|
614
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
615
615
|
# @option options [String] :stack_policy_url
|
616
616
|
# Location of a file containing the stack policy. The URL must point to
|
617
617
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
@@ -767,7 +767,7 @@ module Aws::CloudFormation
|
|
767
767
|
#
|
768
768
|
#
|
769
769
|
#
|
770
|
-
# [1]:
|
770
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
771
771
|
# @option options [String] :template_url
|
772
772
|
# Location of file containing the template body. The URL must point to a
|
773
773
|
# template that is located in an Amazon S3 bucket. For more information,
|
@@ -779,7 +779,7 @@ module Aws::CloudFormation
|
|
779
779
|
#
|
780
780
|
#
|
781
781
|
#
|
782
|
-
# [1]:
|
782
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
783
783
|
# @option options [Boolean] :use_previous_template
|
784
784
|
# Reuse the existing template that is associated with the stack that you
|
785
785
|
# are updating.
|
@@ -813,7 +813,7 @@ module Aws::CloudFormation
|
|
813
813
|
#
|
814
814
|
#
|
815
815
|
#
|
816
|
-
# [1]:
|
816
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
817
817
|
# @option options [Array<String>] :capabilities
|
818
818
|
# In some cases, you must explicity acknowledge that your stack template
|
819
819
|
# contains certain capabilities in order for AWS CloudFormation to
|
@@ -892,13 +892,13 @@ module Aws::CloudFormation
|
|
892
892
|
#
|
893
893
|
#
|
894
894
|
#
|
895
|
-
# [1]:
|
896
|
-
# [2]:
|
897
|
-
# [3]:
|
898
|
-
# [4]:
|
899
|
-
# [5]:
|
900
|
-
# [6]:
|
901
|
-
# [7]:
|
895
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
896
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
897
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
898
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
899
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
900
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
901
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
902
902
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
903
903
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
904
904
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -917,7 +917,7 @@ module Aws::CloudFormation
|
|
917
917
|
#
|
918
918
|
#
|
919
919
|
#
|
920
|
-
# [1]:
|
920
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
921
921
|
# @option options [String] :role_arn
|
922
922
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
923
923
|
# Management (IAM) role that AWS CloudFormation assumes to update the
|
@@ -57,7 +57,7 @@ module Aws::CloudFormation
|
|
57
57
|
#
|
58
58
|
#
|
59
59
|
#
|
60
|
-
# [1]:
|
60
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
61
61
|
# @return [String]
|
62
62
|
def resource_type
|
63
63
|
data[:resource_type]
|
@@ -93,7 +93,7 @@ module Aws::CloudFormation
|
|
93
93
|
#
|
94
94
|
#
|
95
95
|
#
|
96
|
-
# [1]:
|
96
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
|
97
97
|
# @return [String]
|
98
98
|
def metadata
|
99
99
|
data[:metadata]
|
@@ -51,7 +51,7 @@ module Aws::CloudFormation
|
|
51
51
|
#
|
52
52
|
#
|
53
53
|
#
|
54
|
-
# [1]:
|
54
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
55
55
|
# @return [String]
|
56
56
|
def resource_type
|
57
57
|
data[:resource_type]
|
@@ -25,7 +25,7 @@ module Aws::CloudFormation
|
|
25
25
|
#
|
26
26
|
#
|
27
27
|
#
|
28
|
-
# [1]:
|
28
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-account-gating.html
|
29
29
|
#
|
30
30
|
# @!attribute [rw] status
|
31
31
|
# The status of the account gate function.
|
@@ -72,11 +72,16 @@ module Aws::CloudFormation
|
|
72
72
|
include Aws::Structure
|
73
73
|
end
|
74
74
|
|
75
|
-
# The AccountLimit data type.
|
75
|
+
# The AccountLimit data type. For more information about account limits,
|
76
|
+
# see [AWS CloudFormation Limits][1] in the *AWS CloudFormation User
|
77
|
+
# Guide*.
|
78
|
+
#
|
79
|
+
#
|
80
|
+
#
|
81
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html
|
76
82
|
#
|
77
83
|
# @!attribute [rw] name
|
78
|
-
# The name of the account limit.
|
79
|
-
# `StackLimit`.
|
84
|
+
# The name of the account limit.
|
80
85
|
# @return [String]
|
81
86
|
#
|
82
87
|
# @!attribute [rw] value
|
@@ -285,8 +290,8 @@ module Aws::CloudFormation
|
|
285
290
|
#
|
286
291
|
#
|
287
292
|
#
|
288
|
-
# [1]:
|
289
|
-
# [2]:
|
293
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed
|
294
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html#nested-stacks
|
290
295
|
# @return [Array<String>]
|
291
296
|
#
|
292
297
|
# @!attribute [rw] client_request_token
|
@@ -468,13 +473,13 @@ module Aws::CloudFormation
|
|
468
473
|
#
|
469
474
|
#
|
470
475
|
#
|
471
|
-
# [1]:
|
472
|
-
# [2]:
|
473
|
-
# [3]:
|
474
|
-
# [4]:
|
475
|
-
# [5]:
|
476
|
-
# [6]:
|
477
|
-
# [7]:
|
476
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
477
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
478
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
479
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
480
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
481
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
482
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
478
483
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
479
484
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
480
485
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -496,7 +501,7 @@ module Aws::CloudFormation
|
|
496
501
|
#
|
497
502
|
#
|
498
503
|
#
|
499
|
-
# [1]:
|
504
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
500
505
|
# @return [Array<String>]
|
501
506
|
#
|
502
507
|
# @!attribute [rw] role_arn
|
@@ -571,7 +576,7 @@ module Aws::CloudFormation
|
|
571
576
|
#
|
572
577
|
#
|
573
578
|
#
|
574
|
-
# [1]:
|
579
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html#d0e11995
|
575
580
|
# @return [String]
|
576
581
|
#
|
577
582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
|
@@ -679,7 +684,7 @@ module Aws::CloudFormation
|
|
679
684
|
#
|
680
685
|
#
|
681
686
|
#
|
682
|
-
# [1]:
|
687
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
683
688
|
# @return [String]
|
684
689
|
#
|
685
690
|
# @!attribute [rw] template_url
|
@@ -693,7 +698,7 @@ module Aws::CloudFormation
|
|
693
698
|
#
|
694
699
|
#
|
695
700
|
#
|
696
|
-
# [1]:
|
701
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
697
702
|
# @return [String]
|
698
703
|
#
|
699
704
|
# @!attribute [rw] parameters
|
@@ -702,7 +707,7 @@ module Aws::CloudFormation
|
|
702
707
|
#
|
703
708
|
#
|
704
709
|
#
|
705
|
-
# [1]:
|
710
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
706
711
|
# @return [Array<Types::Parameter>]
|
707
712
|
#
|
708
713
|
# @!attribute [rw] disable_rollback
|
@@ -809,13 +814,13 @@ module Aws::CloudFormation
|
|
809
814
|
#
|
810
815
|
#
|
811
816
|
#
|
812
|
-
# [1]:
|
813
|
-
# [2]:
|
814
|
-
# [3]:
|
815
|
-
# [4]:
|
816
|
-
# [5]:
|
817
|
-
# [6]:
|
818
|
-
# [7]:
|
817
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
818
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
819
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
820
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
821
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
822
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
823
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
819
824
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
820
825
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
821
826
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -843,7 +848,7 @@ module Aws::CloudFormation
|
|
843
848
|
#
|
844
849
|
#
|
845
850
|
#
|
846
|
-
# [1]:
|
851
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
847
852
|
# @return [Array<String>]
|
848
853
|
#
|
849
854
|
# @!attribute [rw] role_arn
|
@@ -878,7 +883,7 @@ module Aws::CloudFormation
|
|
878
883
|
#
|
879
884
|
#
|
880
885
|
#
|
881
|
-
# [1]:
|
886
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
882
887
|
# @return [String]
|
883
888
|
#
|
884
889
|
# @!attribute [rw] stack_policy_url
|
@@ -1033,7 +1038,7 @@ module Aws::CloudFormation
|
|
1033
1038
|
#
|
1034
1039
|
#
|
1035
1040
|
#
|
1036
|
-
# [1]:
|
1041
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html
|
1037
1042
|
# @return [Array<Types::Parameter>]
|
1038
1043
|
#
|
1039
1044
|
# @!attribute [rw] operation_preferences
|
@@ -1151,7 +1156,7 @@ module Aws::CloudFormation
|
|
1151
1156
|
#
|
1152
1157
|
#
|
1153
1158
|
#
|
1154
|
-
# [1]:
|
1159
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1155
1160
|
# @return [String]
|
1156
1161
|
#
|
1157
1162
|
# @!attribute [rw] template_url
|
@@ -1165,7 +1170,7 @@ module Aws::CloudFormation
|
|
1165
1170
|
#
|
1166
1171
|
#
|
1167
1172
|
#
|
1168
|
-
# [1]:
|
1173
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1169
1174
|
# @return [String]
|
1170
1175
|
#
|
1171
1176
|
# @!attribute [rw] parameters
|
@@ -1236,13 +1241,13 @@ module Aws::CloudFormation
|
|
1236
1241
|
#
|
1237
1242
|
#
|
1238
1243
|
#
|
1239
|
-
# [1]:
|
1240
|
-
# [2]:
|
1241
|
-
# [3]:
|
1242
|
-
# [4]:
|
1243
|
-
# [5]:
|
1244
|
-
# [6]:
|
1245
|
-
# [7]:
|
1244
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
1245
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
1246
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
1247
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
1248
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1249
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
1250
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
1246
1251
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
1247
1252
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1248
1253
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
@@ -1479,7 +1484,7 @@ module Aws::CloudFormation
|
|
1479
1484
|
#
|
1480
1485
|
#
|
1481
1486
|
#
|
1482
|
-
# [1]:
|
1487
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
1483
1488
|
# @return [Boolean]
|
1484
1489
|
#
|
1485
1490
|
# @!attribute [rw] operation_id
|
@@ -1653,7 +1658,7 @@ module Aws::CloudFormation
|
|
1653
1658
|
#
|
1654
1659
|
#
|
1655
1660
|
#
|
1656
|
-
# [1]:
|
1661
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
1657
1662
|
# @return [Array<Types::Parameter>]
|
1658
1663
|
#
|
1659
1664
|
# @!attribute [rw] creation_time
|
@@ -2002,7 +2007,7 @@ module Aws::CloudFormation
|
|
2002
2007
|
#
|
2003
2008
|
#
|
2004
2009
|
#
|
2005
|
-
# [1]:
|
2010
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
2006
2011
|
# @return [Array<Types::StackResourceDrift>]
|
2007
2012
|
#
|
2008
2013
|
# @!attribute [rw] next_token
|
@@ -2367,7 +2372,7 @@ module Aws::CloudFormation
|
|
2367
2372
|
#
|
2368
2373
|
#
|
2369
2374
|
#
|
2370
|
-
# [1]:
|
2375
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2371
2376
|
# @return [String]
|
2372
2377
|
#
|
2373
2378
|
# @!attribute [rw] template_url
|
@@ -2381,7 +2386,7 @@ module Aws::CloudFormation
|
|
2381
2386
|
#
|
2382
2387
|
#
|
2383
2388
|
#
|
2384
|
-
# [1]:
|
2389
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2385
2390
|
# @return [String]
|
2386
2391
|
#
|
2387
2392
|
# @!attribute [rw] parameters
|
@@ -2515,7 +2520,7 @@ module Aws::CloudFormation
|
|
2515
2520
|
#
|
2516
2521
|
#
|
2517
2522
|
#
|
2518
|
-
# [1]:
|
2523
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
2519
2524
|
# @return [String]
|
2520
2525
|
#
|
2521
2526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicyOutput AWS API Documentation
|
@@ -2585,7 +2590,7 @@ module Aws::CloudFormation
|
|
2585
2590
|
#
|
2586
2591
|
#
|
2587
2592
|
#
|
2588
|
-
# [1]:
|
2593
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2589
2594
|
# @return [String]
|
2590
2595
|
#
|
2591
2596
|
# @!attribute [rw] stages_available
|
@@ -2627,7 +2632,7 @@ module Aws::CloudFormation
|
|
2627
2632
|
#
|
2628
2633
|
#
|
2629
2634
|
#
|
2630
|
-
# [1]:
|
2635
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2631
2636
|
# @return [String]
|
2632
2637
|
#
|
2633
2638
|
# @!attribute [rw] template_url
|
@@ -2641,7 +2646,7 @@ module Aws::CloudFormation
|
|
2641
2646
|
#
|
2642
2647
|
#
|
2643
2648
|
#
|
2644
|
-
# [1]:
|
2649
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2645
2650
|
# @return [String]
|
2646
2651
|
#
|
2647
2652
|
# @!attribute [rw] stack_name
|
@@ -2696,7 +2701,7 @@ module Aws::CloudFormation
|
|
2696
2701
|
#
|
2697
2702
|
#
|
2698
2703
|
#
|
2699
|
-
# [1]:
|
2704
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
2700
2705
|
# @return [Array<String>]
|
2701
2706
|
#
|
2702
2707
|
# @!attribute [rw] capabilities_reason
|
@@ -3300,7 +3305,7 @@ module Aws::CloudFormation
|
|
3300
3305
|
#
|
3301
3306
|
#
|
3302
3307
|
#
|
3303
|
-
# [1]:
|
3308
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html#aws-ssm-parameter-types
|
3304
3309
|
# @return [String]
|
3305
3310
|
#
|
3306
3311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Parameter AWS API Documentation
|
@@ -3400,7 +3405,7 @@ module Aws::CloudFormation
|
|
3400
3405
|
#
|
3401
3406
|
#
|
3402
3407
|
#
|
3403
|
-
# [1]:
|
3408
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
3404
3409
|
#
|
3405
3410
|
# @!attribute [rw] property_path
|
3406
3411
|
# The fully-qualified path to the resource property.
|
@@ -3607,7 +3612,7 @@ module Aws::CloudFormation
|
|
3607
3612
|
#
|
3608
3613
|
#
|
3609
3614
|
#
|
3610
|
-
# [1]:
|
3615
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
3611
3616
|
# @return [String]
|
3612
3617
|
#
|
3613
3618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceTargetDefinition AWS API Documentation
|
@@ -3693,7 +3698,7 @@ module Aws::CloudFormation
|
|
3693
3698
|
#
|
3694
3699
|
#
|
3695
3700
|
#
|
3696
|
-
# [1]:
|
3701
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html
|
3697
3702
|
# @return [Integer]
|
3698
3703
|
#
|
3699
3704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration AWS API Documentation
|
@@ -3731,7 +3736,7 @@ module Aws::CloudFormation
|
|
3731
3736
|
#
|
3732
3737
|
#
|
3733
3738
|
#
|
3734
|
-
# [1]:
|
3739
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html
|
3735
3740
|
# @return [String]
|
3736
3741
|
#
|
3737
3742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
|
@@ -3766,7 +3771,7 @@ module Aws::CloudFormation
|
|
3766
3771
|
#
|
3767
3772
|
#
|
3768
3773
|
#
|
3769
|
-
# [1]:
|
3774
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
3770
3775
|
# @return [String]
|
3771
3776
|
#
|
3772
3777
|
# @!attribute [rw] stack_policy_url
|
@@ -4099,7 +4104,7 @@ module Aws::CloudFormation
|
|
4099
4104
|
#
|
4100
4105
|
#
|
4101
4106
|
#
|
4102
|
-
# [1]:
|
4107
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
4103
4108
|
# @return [String]
|
4104
4109
|
#
|
4105
4110
|
# @!attribute [rw] timestamp
|
@@ -4316,7 +4321,7 @@ module Aws::CloudFormation
|
|
4316
4321
|
#
|
4317
4322
|
#
|
4318
4323
|
#
|
4319
|
-
# [1]:
|
4324
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
4320
4325
|
# @return [String]
|
4321
4326
|
#
|
4322
4327
|
# @!attribute [rw] timestamp
|
@@ -4388,7 +4393,7 @@ module Aws::CloudFormation
|
|
4388
4393
|
#
|
4389
4394
|
#
|
4390
4395
|
#
|
4391
|
-
# [1]:
|
4396
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
4392
4397
|
# @return [String]
|
4393
4398
|
#
|
4394
4399
|
# @!attribute [rw] last_updated_timestamp
|
@@ -4414,7 +4419,7 @@ module Aws::CloudFormation
|
|
4414
4419
|
#
|
4415
4420
|
#
|
4416
4421
|
#
|
4417
|
-
# [1]:
|
4422
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
|
4418
4423
|
# @return [String]
|
4419
4424
|
#
|
4420
4425
|
# @!attribute [rw] drift_information
|
@@ -4463,7 +4468,7 @@ module Aws::CloudFormation
|
|
4463
4468
|
#
|
4464
4469
|
#
|
4465
4470
|
#
|
4466
|
-
# [1]:
|
4471
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
4467
4472
|
# [2]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
4468
4473
|
#
|
4469
4474
|
# @!attribute [rw] stack_id
|
@@ -4578,7 +4583,7 @@ module Aws::CloudFormation
|
|
4578
4583
|
#
|
4579
4584
|
#
|
4580
4585
|
#
|
4581
|
-
# [1]:
|
4586
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
4582
4587
|
# @return [String]
|
4583
4588
|
#
|
4584
4589
|
# @!attribute [rw] last_check_timestamp
|
@@ -4624,8 +4629,8 @@ module Aws::CloudFormation
|
|
4624
4629
|
#
|
4625
4630
|
#
|
4626
4631
|
#
|
4627
|
-
# [1]:
|
4628
|
-
# [2]:
|
4632
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
4633
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html
|
4629
4634
|
# @return [String]
|
4630
4635
|
#
|
4631
4636
|
# @!attribute [rw] last_check_timestamp
|
@@ -4658,7 +4663,7 @@ module Aws::CloudFormation
|
|
4658
4663
|
#
|
4659
4664
|
#
|
4660
4665
|
#
|
4661
|
-
# [1]:
|
4666
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
4662
4667
|
# @return [String]
|
4663
4668
|
#
|
4664
4669
|
# @!attribute [rw] last_updated_timestamp
|
@@ -4739,7 +4744,7 @@ module Aws::CloudFormation
|
|
4739
4744
|
#
|
4740
4745
|
#
|
4741
4746
|
#
|
4742
|
-
# [1]:
|
4747
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
4743
4748
|
# @return [Array<String>]
|
4744
4749
|
#
|
4745
4750
|
# @!attribute [rw] tags
|
@@ -4907,7 +4912,7 @@ module Aws::CloudFormation
|
|
4907
4912
|
#
|
4908
4913
|
#
|
4909
4914
|
#
|
4910
|
-
# [1]:
|
4915
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
4911
4916
|
#
|
4912
4917
|
# @note When making an API call, you may pass StackSetOperationPreferences
|
4913
4918
|
# data as a hash:
|
@@ -5386,7 +5391,7 @@ module Aws::CloudFormation
|
|
5386
5391
|
#
|
5387
5392
|
#
|
5388
5393
|
#
|
5389
|
-
# [1]:
|
5394
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
5390
5395
|
# @return [String]
|
5391
5396
|
#
|
5392
5397
|
# @!attribute [rw] template_url
|
@@ -5401,7 +5406,7 @@ module Aws::CloudFormation
|
|
5401
5406
|
#
|
5402
5407
|
#
|
5403
5408
|
#
|
5404
|
-
# [1]:
|
5409
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
5405
5410
|
# @return [String]
|
5406
5411
|
#
|
5407
5412
|
# @!attribute [rw] use_previous_template
|
@@ -5443,7 +5448,7 @@ module Aws::CloudFormation
|
|
5443
5448
|
#
|
5444
5449
|
#
|
5445
5450
|
#
|
5446
|
-
# [1]:
|
5451
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
5447
5452
|
# @return [Array<Types::Parameter>]
|
5448
5453
|
#
|
5449
5454
|
# @!attribute [rw] capabilities
|
@@ -5524,13 +5529,13 @@ module Aws::CloudFormation
|
|
5524
5529
|
#
|
5525
5530
|
#
|
5526
5531
|
#
|
5527
|
-
# [1]:
|
5528
|
-
# [2]:
|
5529
|
-
# [3]:
|
5530
|
-
# [4]:
|
5531
|
-
# [5]:
|
5532
|
-
# [6]:
|
5533
|
-
# [7]:
|
5532
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
5533
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
5534
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
5535
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
5536
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
5537
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
5538
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
5534
5539
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
5535
5540
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
5536
5541
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -5552,7 +5557,7 @@ module Aws::CloudFormation
|
|
5552
5557
|
#
|
5553
5558
|
#
|
5554
5559
|
#
|
5555
|
-
# [1]:
|
5560
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
5556
5561
|
# @return [Array<String>]
|
5557
5562
|
#
|
5558
5563
|
# @!attribute [rw] role_arn
|
@@ -5747,7 +5752,7 @@ module Aws::CloudFormation
|
|
5747
5752
|
#
|
5748
5753
|
#
|
5749
5754
|
#
|
5750
|
-
# [1]:
|
5755
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html
|
5751
5756
|
# @return [Array<Types::Parameter>]
|
5752
5757
|
#
|
5753
5758
|
# @!attribute [rw] operation_preferences
|
@@ -5865,7 +5870,7 @@ module Aws::CloudFormation
|
|
5865
5870
|
#
|
5866
5871
|
#
|
5867
5872
|
#
|
5868
|
-
# [1]:
|
5873
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
5869
5874
|
# @return [String]
|
5870
5875
|
#
|
5871
5876
|
# @!attribute [rw] template_url
|
@@ -5880,7 +5885,7 @@ module Aws::CloudFormation
|
|
5880
5885
|
#
|
5881
5886
|
#
|
5882
5887
|
#
|
5883
|
-
# [1]:
|
5888
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
5884
5889
|
# @return [String]
|
5885
5890
|
#
|
5886
5891
|
# @!attribute [rw] use_previous_template
|
@@ -5959,13 +5964,13 @@ module Aws::CloudFormation
|
|
5959
5964
|
#
|
5960
5965
|
#
|
5961
5966
|
#
|
5962
|
-
# [1]:
|
5963
|
-
# [2]:
|
5964
|
-
# [3]:
|
5965
|
-
# [4]:
|
5966
|
-
# [5]:
|
5967
|
-
# [6]:
|
5968
|
-
# [7]:
|
5967
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
5968
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
5969
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
5970
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
5971
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
5972
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
5973
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
5969
5974
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
5970
5975
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
5971
5976
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
@@ -6019,14 +6024,13 @@ module Aws::CloudFormation
|
|
6019
6024
|
# Specify an IAM role only if you are using customized administrator
|
6020
6025
|
# roles to control which users or groups can manage specific stack
|
6021
6026
|
# sets within the same administrator account. For more information,
|
6022
|
-
# see [
|
6027
|
+
# see [Granting Permissions for Stack Set Operations][1] in the *AWS
|
6023
6028
|
# CloudFormation User Guide*.
|
6024
6029
|
#
|
6025
|
-
# If you
|
6026
|
-
#
|
6027
|
-
# customized administrator role
|
6028
|
-
#
|
6029
|
-
# long as you have permissions to perform operations on the stack set.
|
6030
|
+
# If you specified a customized administrator role when you created
|
6031
|
+
# the stack set, you must specify a customized administrator role,
|
6032
|
+
# even if it is the same customized administrator role used with this
|
6033
|
+
# stack set previously.
|
6030
6034
|
#
|
6031
6035
|
#
|
6032
6036
|
#
|
@@ -6194,7 +6198,7 @@ module Aws::CloudFormation
|
|
6194
6198
|
#
|
6195
6199
|
#
|
6196
6200
|
#
|
6197
|
-
# [1]:
|
6201
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
6198
6202
|
# @return [String]
|
6199
6203
|
#
|
6200
6204
|
# @!attribute [rw] template_url
|
@@ -6208,7 +6212,7 @@ module Aws::CloudFormation
|
|
6208
6212
|
#
|
6209
6213
|
#
|
6210
6214
|
#
|
6211
|
-
# [1]:
|
6215
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
6212
6216
|
# @return [String]
|
6213
6217
|
#
|
6214
6218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplateInput AWS API Documentation
|
@@ -6241,7 +6245,7 @@ module Aws::CloudFormation
|
|
6241
6245
|
#
|
6242
6246
|
#
|
6243
6247
|
#
|
6244
|
-
# [1]:
|
6248
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
6245
6249
|
# @return [Array<String>]
|
6246
6250
|
#
|
6247
6251
|
# @!attribute [rw] capabilities_reason
|