aws-sdk-cloudformation 1.125.0 → 1.127.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 +414 -152
- data/lib/aws-sdk-cloudformation/client_api.rb +180 -0
- data/lib/aws-sdk-cloudformation/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-cloudformation/errors.rb +11 -0
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +24 -21
- data/lib/aws-sdk-cloudformation/stack.rb +46 -40
- data/lib/aws-sdk-cloudformation/types.rb +570 -144
- data/lib/aws-sdk-cloudformation/waiters.rb +118 -10
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +86 -0
- data/sig/errors.rbs +2 -0
- data/sig/event.rbs +1 -1
- data/sig/stack_resource.rbs +1 -1
- data/sig/stack_resource_summary.rbs +1 -1
- data/sig/types.rbs +110 -4
- data/sig/waiters.rbs +20 -0
- metadata +2 -2
@@ -486,10 +486,10 @@ module Aws::CloudFormation
|
|
486
486
|
# Conditional: You must specify either the `TemplateBody` or the
|
487
487
|
# `TemplateURL` parameter, but not both.
|
488
488
|
# @option options [String] :template_url
|
489
|
-
#
|
490
|
-
# template (max size:
|
491
|
-
#
|
492
|
-
#
|
489
|
+
# The URL of a file containing the template body. The URL must point to
|
490
|
+
# a template (max size: 1 MB) that's located in an Amazon S3 bucket or
|
491
|
+
# a Systems Manager document. The location for an Amazon S3 bucket must
|
492
|
+
# start with `https://`.
|
493
493
|
#
|
494
494
|
# Conditional: You must specify either the `TemplateBody` or the
|
495
495
|
# `TemplateURL` parameter, but not both.
|
@@ -550,15 +550,17 @@ module Aws::CloudFormation
|
|
550
550
|
#
|
551
551
|
# * [AWS::IAM::InstanceProfile][3]
|
552
552
|
#
|
553
|
-
# * [AWS::IAM::
|
553
|
+
# * [ AWS::IAM::ManagedPolicy][4]
|
554
554
|
#
|
555
|
-
# * [AWS::IAM::
|
555
|
+
# * [AWS::IAM::Policy][5]
|
556
556
|
#
|
557
|
-
# * [AWS::IAM::
|
557
|
+
# * [AWS::IAM::Role][6]
|
558
558
|
#
|
559
|
-
# * [AWS::IAM::
|
559
|
+
# * [AWS::IAM::User][7]
|
560
|
+
#
|
561
|
+
# * [AWS::IAM::UserToGroupAddition][8]
|
560
562
|
# For more information, see [Acknowledging IAM resources in
|
561
|
-
# CloudFormation templates][
|
563
|
+
# CloudFormation templates][9].
|
562
564
|
#
|
563
565
|
# * `CAPABILITY_AUTO_EXPAND`
|
564
566
|
#
|
@@ -571,8 +573,8 @@ module Aws::CloudFormation
|
|
571
573
|
# your stack template contains one or more macros, and you choose to
|
572
574
|
# create a stack directly from the processed template, without first
|
573
575
|
# reviewing the resulting changes in a change set, you must
|
574
|
-
# acknowledge this capability. This includes the [AWS::Include][
|
575
|
-
# [AWS::Serverless][
|
576
|
+
# acknowledge this capability. This includes the [AWS::Include][10]
|
577
|
+
# and [AWS::Serverless][11] transforms, which are macros hosted by
|
576
578
|
# CloudFormation.
|
577
579
|
#
|
578
580
|
# If you want to create a stack from a stack template that contains
|
@@ -588,7 +590,7 @@ module Aws::CloudFormation
|
|
588
590
|
# notified.
|
589
591
|
#
|
590
592
|
# For more information, see [Perform custom processing on
|
591
|
-
# CloudFormation templates with template macros][
|
593
|
+
# CloudFormation templates with template macros][12].
|
592
594
|
#
|
593
595
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
594
596
|
# specified.
|
@@ -600,14 +602,15 @@ module Aws::CloudFormation
|
|
600
602
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
601
603
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
602
604
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
603
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
604
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
605
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
606
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
607
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
608
|
-
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
609
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-
|
610
|
-
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
605
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html
|
606
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
607
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
608
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
609
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
610
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
611
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
612
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
613
|
+
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
611
614
|
# @option options [Array<String>] :resource_types
|
612
615
|
# The template resource types that you have permissions to work with for
|
613
616
|
# this create stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
|
@@ -633,7 +636,7 @@ module Aws::CloudFormation
|
|
633
636
|
#
|
634
637
|
#
|
635
638
|
#
|
636
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
639
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html
|
637
640
|
# @option options [String] :role_arn
|
638
641
|
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
639
642
|
# assumes to create the stack. CloudFormation uses the role's
|
@@ -835,8 +838,8 @@ module Aws::CloudFormation
|
|
835
838
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
836
839
|
# `true`.
|
837
840
|
# @option options [String] :template_url
|
838
|
-
#
|
839
|
-
# template that's located in an Amazon S3 bucket or a Systems Manager
|
841
|
+
# The URL of a file containing the template body. The URL must point to
|
842
|
+
# a template that's located in an Amazon S3 bucket or a Systems Manager
|
840
843
|
# document. The location for an Amazon S3 bucket must start with
|
841
844
|
# `https://`.
|
842
845
|
#
|
@@ -910,15 +913,17 @@ module Aws::CloudFormation
|
|
910
913
|
#
|
911
914
|
# * [AWS::IAM::InstanceProfile][3]
|
912
915
|
#
|
913
|
-
# * [AWS::IAM::
|
916
|
+
# * [ AWS::IAM::ManagedPolicy][4]
|
917
|
+
#
|
918
|
+
# * [AWS::IAM::Policy][5]
|
914
919
|
#
|
915
|
-
# * [ AWS::IAM::Role][
|
920
|
+
# * [ AWS::IAM::Role][6]
|
916
921
|
#
|
917
|
-
# * [ AWS::IAM::User][
|
922
|
+
# * [ AWS::IAM::User][7]
|
918
923
|
#
|
919
|
-
# * [AWS::IAM::UserToGroupAddition][
|
924
|
+
# * [AWS::IAM::UserToGroupAddition][8]
|
920
925
|
# For more information, see [Acknowledging IAM resources in
|
921
|
-
# CloudFormation templates][
|
926
|
+
# CloudFormation templates][9].
|
922
927
|
#
|
923
928
|
# * `CAPABILITY_AUTO_EXPAND`
|
924
929
|
#
|
@@ -931,8 +936,8 @@ module Aws::CloudFormation
|
|
931
936
|
# your stack template contains one or more macros, and you choose to
|
932
937
|
# update a stack directly from the processed template, without first
|
933
938
|
# reviewing the resulting changes in a change set, you must
|
934
|
-
# acknowledge this capability. This includes the [AWS::Include][
|
935
|
-
# [AWS::Serverless][
|
939
|
+
# acknowledge this capability. This includes the [AWS::Include][10]
|
940
|
+
# and [AWS::Serverless][11] transforms, which are macros hosted by
|
936
941
|
# CloudFormation.
|
937
942
|
#
|
938
943
|
# If you want to update a stack from a stack template that contains
|
@@ -948,7 +953,7 @@ module Aws::CloudFormation
|
|
948
953
|
# notified.
|
949
954
|
#
|
950
955
|
# For more information, see [Perform custom processing on
|
951
|
-
# CloudFormation templates with template macros][
|
956
|
+
# CloudFormation templates with template macros][12].
|
952
957
|
#
|
953
958
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
954
959
|
# specified.
|
@@ -960,14 +965,15 @@ module Aws::CloudFormation
|
|
960
965
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
961
966
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
962
967
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
963
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
964
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
965
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
966
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
967
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
968
|
-
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
969
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-
|
970
|
-
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
968
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html
|
969
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
970
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
971
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
972
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
973
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
974
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
975
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
976
|
+
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
971
977
|
# @option options [Array<String>] :resource_types
|
972
978
|
# The template resource types that you have permissions to work with for
|
973
979
|
# this update stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
|
@@ -987,7 +993,7 @@ module Aws::CloudFormation
|
|
987
993
|
#
|
988
994
|
#
|
989
995
|
#
|
990
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
996
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html
|
991
997
|
# @option options [String] :role_arn
|
992
998
|
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
993
999
|
# assumes to update the stack. CloudFormation uses the role's
|