aws-sdk-cloudformation 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +165 -94
- data/lib/aws-sdk-cloudformation/client_api.rb +29 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +14 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-cloudformation/resource.rb +10 -10
- data/lib/aws-sdk-cloudformation/stack.rb +20 -20
- data/lib/aws-sdk-cloudformation/types.rb +228 -122
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +14 -0
- data/sig/types.rbs +20 -0
- metadata +2 -2
@@ -113,7 +113,7 @@ module Aws::CloudFormation
|
|
113
113
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
114
114
|
# @option options [Array<Types::Parameter>] :parameters
|
115
115
|
# A list of `Parameter` structures that specify input parameters for the
|
116
|
-
# stack. For more information, see the [
|
116
|
+
# stack. For more information, see the [Parameter][1] data type.
|
117
117
|
#
|
118
118
|
#
|
119
119
|
#
|
@@ -164,19 +164,19 @@ module Aws::CloudFormation
|
|
164
164
|
# you review all permissions associated with them and edit their
|
165
165
|
# permissions if necessary.
|
166
166
|
#
|
167
|
-
# * [
|
167
|
+
# * [AWS::IAM::AccessKey][1]
|
168
168
|
#
|
169
|
-
# * [
|
169
|
+
# * [AWS::IAM::Group][2]
|
170
170
|
#
|
171
|
-
# * [
|
171
|
+
# * [AWS::IAM::InstanceProfile][3]
|
172
172
|
#
|
173
|
-
# * [
|
173
|
+
# * [AWS::IAM::Policy][4]
|
174
174
|
#
|
175
|
-
# * [
|
175
|
+
# * [AWS::IAM::Role][5]
|
176
176
|
#
|
177
|
-
# * [
|
177
|
+
# * [AWS::IAM::User][6]
|
178
178
|
#
|
179
|
-
# * [
|
179
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
180
180
|
#
|
181
181
|
# For more information, see [Acknowledging IAM Resources in
|
182
182
|
# CloudFormation Templates][8].
|
@@ -192,8 +192,8 @@ module Aws::CloudFormation
|
|
192
192
|
# your stack template contains one or more macros, and you choose to
|
193
193
|
# create a stack directly from the processed template, without first
|
194
194
|
# reviewing the resulting changes in a change set, you must
|
195
|
-
# acknowledge this capability. This includes the [
|
196
|
-
#
|
195
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
196
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
197
197
|
# CloudFormation.
|
198
198
|
#
|
199
199
|
# If you want to create a stack from a stack template that contains
|
@@ -494,7 +494,7 @@ module Aws::CloudFormation
|
|
494
494
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
495
495
|
# @option options [Array<Types::Parameter>] :parameters
|
496
496
|
# A list of `Parameter` structures that specify input parameters for the
|
497
|
-
# stack. For more information, see the [
|
497
|
+
# stack. For more information, see the [Parameter][1] data type.
|
498
498
|
#
|
499
499
|
#
|
500
500
|
#
|
@@ -545,19 +545,19 @@ module Aws::CloudFormation
|
|
545
545
|
# you review all permissions associated with them and edit their
|
546
546
|
# permissions if necessary.
|
547
547
|
#
|
548
|
-
# * [
|
548
|
+
# * [AWS::IAM::AccessKey][1]
|
549
549
|
#
|
550
|
-
# * [
|
550
|
+
# * [AWS::IAM::Group][2]
|
551
551
|
#
|
552
|
-
# * [
|
552
|
+
# * [AWS::IAM::InstanceProfile][3]
|
553
553
|
#
|
554
|
-
# * [
|
554
|
+
# * [AWS::IAM::Policy][4]
|
555
555
|
#
|
556
|
-
# * [
|
556
|
+
# * [AWS::IAM::Role][5]
|
557
557
|
#
|
558
|
-
# * [
|
558
|
+
# * [AWS::IAM::User][6]
|
559
559
|
#
|
560
|
-
# * [
|
560
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
561
561
|
#
|
562
562
|
# For more information, see [Acknowledging IAM Resources in
|
563
563
|
# CloudFormation Templates][8].
|
@@ -573,8 +573,8 @@ module Aws::CloudFormation
|
|
573
573
|
# your stack template contains one or more macros, and you choose to
|
574
574
|
# create a stack directly from the processed template, without first
|
575
575
|
# reviewing the resulting changes in a change set, you must
|
576
|
-
# acknowledge this capability. This includes the [
|
577
|
-
#
|
576
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
577
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
578
578
|
# CloudFormation.
|
579
579
|
#
|
580
580
|
# If you want to create a stack from a stack template that contains
|
@@ -877,7 +877,7 @@ module Aws::CloudFormation
|
|
877
877
|
# will be used.
|
878
878
|
# @option options [Array<Types::Parameter>] :parameters
|
879
879
|
# A list of `Parameter` structures that specify input parameters for the
|
880
|
-
# stack. For more information, see the [
|
880
|
+
# stack. For more information, see the [Parameter][1] data type.
|
881
881
|
#
|
882
882
|
#
|
883
883
|
#
|
@@ -910,19 +910,19 @@ module Aws::CloudFormation
|
|
910
910
|
# review all permissions associated with them and edit their
|
911
911
|
# permissions if necessary.
|
912
912
|
#
|
913
|
-
# * [
|
913
|
+
# * [ AWS::IAM::AccessKey][1]
|
914
914
|
#
|
915
|
-
# * [
|
915
|
+
# * [ AWS::IAM::Group][2]
|
916
916
|
#
|
917
|
-
# * [
|
917
|
+
# * [AWS::IAM::InstanceProfile][3]
|
918
918
|
#
|
919
|
-
# * [
|
919
|
+
# * [AWS::IAM::Policy][4]
|
920
920
|
#
|
921
|
-
# * [
|
921
|
+
# * [ AWS::IAM::Role][5]
|
922
922
|
#
|
923
|
-
# * [
|
923
|
+
# * [ AWS::IAM::User][6]
|
924
924
|
#
|
925
|
-
# * [
|
925
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
926
926
|
#
|
927
927
|
# For more information, see [Acknowledging IAM Resources in
|
928
928
|
# CloudFormation Templates][8].
|
@@ -938,8 +938,8 @@ module Aws::CloudFormation
|
|
938
938
|
# your stack template contains one or more macros, and you choose to
|
939
939
|
# update a stack directly from the processed template, without first
|
940
940
|
# reviewing the resulting changes in a change set, you must
|
941
|
-
# acknowledge this capability. This includes the [
|
942
|
-
#
|
941
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
942
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
943
943
|
# CloudFormation.
|
944
944
|
#
|
945
945
|
# If you want to update a stack from a stack template that contains
|