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
@@ -23,7 +23,8 @@ module Aws::CloudFormation
|
|
23
23
|
# and Region, and sets the stack set operation result status for that
|
24
24
|
# account and Region to `FAILED`.
|
25
25
|
#
|
26
|
-
# For more information, see [Configuring a target account gate
|
26
|
+
# For more information, see [Configuring a target account gate in
|
27
|
+
# StackSets][1] in the *CloudFormation User Guide*.
|
27
28
|
#
|
28
29
|
#
|
29
30
|
#
|
@@ -389,8 +390,8 @@ module Aws::CloudFormation
|
|
389
390
|
# @return [String]
|
390
391
|
#
|
391
392
|
# @!attribute [rw] hook_invocation_count
|
392
|
-
# Is either `null`, if no
|
393
|
-
# the number of
|
393
|
+
# Is either `null`, if no Hooks invoke for the resource, or contains
|
394
|
+
# the number of Hooks that will invoke for the resource.
|
394
395
|
# @return [Integer]
|
395
396
|
#
|
396
397
|
# @!attribute [rw] resource_change
|
@@ -473,7 +474,7 @@ module Aws::CloudFormation
|
|
473
474
|
include Aws::Structure
|
474
475
|
end
|
475
476
|
|
476
|
-
# Specifies `RESOURCE` type target details for activated
|
477
|
+
# Specifies `RESOURCE` type target details for activated Hooks.
|
477
478
|
#
|
478
479
|
# @!attribute [rw] logical_resource_id
|
479
480
|
# The resource's logical ID, which is defined in the stack's
|
@@ -552,7 +553,7 @@ module Aws::CloudFormation
|
|
552
553
|
# @return [String]
|
553
554
|
#
|
554
555
|
# @!attribute [rw] status
|
555
|
-
# The state of the change set, such as `
|
556
|
+
# The state of the change set, such as `CREATE_PENDING`,
|
556
557
|
# `CREATE_COMPLETE`, or `FAILED`.
|
557
558
|
# @return [String]
|
558
559
|
#
|
@@ -735,12 +736,12 @@ module Aws::CloudFormation
|
|
735
736
|
# @return [String]
|
736
737
|
#
|
737
738
|
# @!attribute [rw] template_url
|
738
|
-
# The
|
739
|
-
#
|
740
|
-
#
|
741
|
-
#
|
742
|
-
#
|
743
|
-
#
|
739
|
+
# The URL of the file that contains the revised template. The URL must
|
740
|
+
# point to a template (max size: 1 MB) that's located in an Amazon S3
|
741
|
+
# bucket or a Systems Manager document. CloudFormation generates the
|
742
|
+
# change set by comparing this template with the stack that you
|
743
|
+
# specified. The location for an Amazon S3 bucket must start with
|
744
|
+
# `https://`.
|
744
745
|
#
|
745
746
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
746
747
|
# @return [String]
|
@@ -787,15 +788,17 @@ module Aws::CloudFormation
|
|
787
788
|
#
|
788
789
|
# * [AWS::IAM::InstanceProfile][3]
|
789
790
|
#
|
790
|
-
# * [ AWS::IAM::
|
791
|
+
# * [ AWS::IAM::ManagedPolicy][4]
|
791
792
|
#
|
792
|
-
# * [ AWS::IAM::
|
793
|
+
# * [ AWS::IAM::Policy][5]
|
793
794
|
#
|
794
|
-
# * [ AWS::IAM::
|
795
|
+
# * [ AWS::IAM::Role][6]
|
795
796
|
#
|
796
|
-
# * [AWS::IAM::
|
797
|
+
# * [ AWS::IAM::User][7]
|
798
|
+
#
|
799
|
+
# * [AWS::IAM::UserToGroupAddition][8]
|
797
800
|
# For more information, see [Acknowledging IAM resources in
|
798
|
-
# CloudFormation templates][
|
801
|
+
# CloudFormation templates][9].
|
799
802
|
#
|
800
803
|
# * `CAPABILITY_AUTO_EXPAND`
|
801
804
|
#
|
@@ -808,8 +811,8 @@ module Aws::CloudFormation
|
|
808
811
|
# your stack template contains one or more macros, and you choose to
|
809
812
|
# create a stack directly from the processed template, without first
|
810
813
|
# reviewing the resulting changes in a change set, you must
|
811
|
-
# acknowledge this capability. This includes the [AWS::Include][
|
812
|
-
# and [AWS::Serverless][
|
814
|
+
# acknowledge this capability. This includes the [AWS::Include][10]
|
815
|
+
# and [AWS::Serverless][11] transforms, which are macros hosted by
|
813
816
|
# CloudFormation.
|
814
817
|
#
|
815
818
|
# <note markdown="1"> This capacity doesn't apply to creating change sets, and
|
@@ -823,7 +826,7 @@ module Aws::CloudFormation
|
|
823
826
|
# </note>
|
824
827
|
#
|
825
828
|
# For more information about macros, see [Perform custom processing
|
826
|
-
# on CloudFormation templates with template macros][
|
829
|
+
# on CloudFormation templates with template macros][12].
|
827
830
|
#
|
828
831
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
829
832
|
# specified.
|
@@ -835,14 +838,15 @@ module Aws::CloudFormation
|
|
835
838
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
836
839
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
837
840
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
838
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
839
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
840
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
841
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
842
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
843
|
-
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
844
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-
|
845
|
-
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
841
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html
|
842
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
843
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
844
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
845
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
846
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
847
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
848
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
849
|
+
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
846
850
|
# @return [Array<String>]
|
847
851
|
#
|
848
852
|
# @!attribute [rw] resource_types
|
@@ -864,7 +868,7 @@ module Aws::CloudFormation
|
|
864
868
|
#
|
865
869
|
#
|
866
870
|
#
|
867
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
871
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html
|
868
872
|
# @return [Array<String>]
|
869
873
|
#
|
870
874
|
# @!attribute [rw] role_arn
|
@@ -1108,8 +1112,8 @@ module Aws::CloudFormation
|
|
1108
1112
|
# @return [String]
|
1109
1113
|
#
|
1110
1114
|
# @!attribute [rw] template_url
|
1111
|
-
#
|
1112
|
-
# a template (max size:
|
1115
|
+
# The URL of a file containing the template body. The URL must point
|
1116
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3
|
1113
1117
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
1114
1118
|
# bucket must start with `https://`.
|
1115
1119
|
#
|
@@ -1184,15 +1188,17 @@ module Aws::CloudFormation
|
|
1184
1188
|
#
|
1185
1189
|
# * [AWS::IAM::InstanceProfile][3]
|
1186
1190
|
#
|
1187
|
-
# * [AWS::IAM::
|
1191
|
+
# * [ AWS::IAM::ManagedPolicy][4]
|
1188
1192
|
#
|
1189
|
-
# * [AWS::IAM::
|
1193
|
+
# * [AWS::IAM::Policy][5]
|
1190
1194
|
#
|
1191
|
-
# * [AWS::IAM::
|
1195
|
+
# * [AWS::IAM::Role][6]
|
1192
1196
|
#
|
1193
|
-
# * [AWS::IAM::
|
1197
|
+
# * [AWS::IAM::User][7]
|
1198
|
+
#
|
1199
|
+
# * [AWS::IAM::UserToGroupAddition][8]
|
1194
1200
|
# For more information, see [Acknowledging IAM resources in
|
1195
|
-
# CloudFormation templates][
|
1201
|
+
# CloudFormation templates][9].
|
1196
1202
|
#
|
1197
1203
|
# * `CAPABILITY_AUTO_EXPAND`
|
1198
1204
|
#
|
@@ -1205,8 +1211,8 @@ module Aws::CloudFormation
|
|
1205
1211
|
# your stack template contains one or more macros, and you choose to
|
1206
1212
|
# create a stack directly from the processed template, without first
|
1207
1213
|
# reviewing the resulting changes in a change set, you must
|
1208
|
-
# acknowledge this capability. This includes the [AWS::Include][
|
1209
|
-
# and [AWS::Serverless][
|
1214
|
+
# acknowledge this capability. This includes the [AWS::Include][10]
|
1215
|
+
# and [AWS::Serverless][11] transforms, which are macros hosted by
|
1210
1216
|
# CloudFormation.
|
1211
1217
|
#
|
1212
1218
|
# If you want to create a stack from a stack template that contains
|
@@ -1222,7 +1228,7 @@ module Aws::CloudFormation
|
|
1222
1228
|
# being notified.
|
1223
1229
|
#
|
1224
1230
|
# For more information, see [Perform custom processing on
|
1225
|
-
# CloudFormation templates with template macros][
|
1231
|
+
# CloudFormation templates with template macros][12].
|
1226
1232
|
#
|
1227
1233
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
1228
1234
|
# specified.
|
@@ -1234,14 +1240,15 @@ module Aws::CloudFormation
|
|
1234
1240
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
1235
1241
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
1236
1242
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
1237
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
1238
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
1239
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
1240
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
1241
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1242
|
-
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1243
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-
|
1244
|
-
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1243
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html
|
1244
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
1245
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1246
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
1247
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
1248
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1249
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
1250
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
1251
|
+
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1245
1252
|
# @return [Array<String>]
|
1246
1253
|
#
|
1247
1254
|
# @!attribute [rw] resource_types
|
@@ -1269,7 +1276,7 @@ module Aws::CloudFormation
|
|
1269
1276
|
#
|
1270
1277
|
#
|
1271
1278
|
#
|
1272
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1279
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html
|
1273
1280
|
# @return [Array<String>]
|
1274
1281
|
#
|
1275
1282
|
# @!attribute [rw] role_arn
|
@@ -1398,8 +1405,8 @@ module Aws::CloudFormation
|
|
1398
1405
|
# @return [String]
|
1399
1406
|
#
|
1400
1407
|
# @!attribute [rw] accounts
|
1401
|
-
# \[Self-managed permissions\] The
|
1402
|
-
# Services accounts that you want to create stack instances in the
|
1408
|
+
# \[Self-managed permissions\] The account IDs of one or more Amazon
|
1409
|
+
# Web Services accounts that you want to create stack instances in the
|
1403
1410
|
# specified Region(s) for.
|
1404
1411
|
#
|
1405
1412
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1543,6 +1550,47 @@ module Aws::CloudFormation
|
|
1543
1550
|
include Aws::Structure
|
1544
1551
|
end
|
1545
1552
|
|
1553
|
+
# @!attribute [rw] description
|
1554
|
+
# A description to help you identify the stack refactor.
|
1555
|
+
# @return [String]
|
1556
|
+
#
|
1557
|
+
# @!attribute [rw] enable_stack_creation
|
1558
|
+
# Determines if a new stack is created with the refactor.
|
1559
|
+
# @return [Boolean]
|
1560
|
+
#
|
1561
|
+
# @!attribute [rw] resource_mappings
|
1562
|
+
# The mappings for the stack resource `Source` and stack resource
|
1563
|
+
# `Destination`.
|
1564
|
+
# @return [Array<Types::ResourceMapping>]
|
1565
|
+
#
|
1566
|
+
# @!attribute [rw] stack_definitions
|
1567
|
+
# The stacks being refactored.
|
1568
|
+
# @return [Array<Types::StackDefinition>]
|
1569
|
+
#
|
1570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackRefactorInput AWS API Documentation
|
1571
|
+
#
|
1572
|
+
class CreateStackRefactorInput < Struct.new(
|
1573
|
+
:description,
|
1574
|
+
:enable_stack_creation,
|
1575
|
+
:resource_mappings,
|
1576
|
+
:stack_definitions)
|
1577
|
+
SENSITIVE = []
|
1578
|
+
include Aws::Structure
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
# @!attribute [rw] stack_refactor_id
|
1582
|
+
# The ID associated with the stack refactor created from the
|
1583
|
+
# CreateStackRefactor action.
|
1584
|
+
# @return [String]
|
1585
|
+
#
|
1586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackRefactorOutput AWS API Documentation
|
1587
|
+
#
|
1588
|
+
class CreateStackRefactorOutput < Struct.new(
|
1589
|
+
:stack_refactor_id)
|
1590
|
+
SENSITIVE = []
|
1591
|
+
include Aws::Structure
|
1592
|
+
end
|
1593
|
+
|
1546
1594
|
# @!attribute [rw] stack_set_name
|
1547
1595
|
# The name to associate with the stack set. The name must be unique in
|
1548
1596
|
# the Region where you create your stack set.
|
@@ -1568,9 +1616,10 @@ module Aws::CloudFormation
|
|
1568
1616
|
# @return [String]
|
1569
1617
|
#
|
1570
1618
|
# @!attribute [rw] template_url
|
1571
|
-
# The
|
1572
|
-
#
|
1573
|
-
#
|
1619
|
+
# The URL of a file that contains the template body. The URL must
|
1620
|
+
# point to a template (maximum size: 1 MB) that's located in an
|
1621
|
+
# Amazon S3 bucket or a Systems Manager document. The location for an
|
1622
|
+
# Amazon S3 bucket must start with `https://`.
|
1574
1623
|
#
|
1575
1624
|
# Conditional: You must specify either the TemplateBody or the
|
1576
1625
|
# TemplateURL parameter, but not both.
|
@@ -1634,8 +1683,8 @@ module Aws::CloudFormation
|
|
1634
1683
|
# directly from the processed template, without first reviewing the
|
1635
1684
|
# resulting changes in a change set. To create the stack set
|
1636
1685
|
# directly, you must acknowledge this capability. For more
|
1637
|
-
# information, see [
|
1638
|
-
#
|
1686
|
+
# information, see [Perform custom processing on CloudFormation
|
1687
|
+
# templates with template macros][9].
|
1639
1688
|
#
|
1640
1689
|
# Stack sets with service-managed permissions don't currently
|
1641
1690
|
# support the use of macros in templates. (This includes the
|
@@ -1654,9 +1703,9 @@ module Aws::CloudFormation
|
|
1654
1703
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1655
1704
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
1656
1705
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
1657
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1706
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1658
1707
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1659
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1708
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
1660
1709
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
1661
1710
|
# @return [Array<String>]
|
1662
1711
|
#
|
@@ -1680,8 +1729,8 @@ module Aws::CloudFormation
|
|
1680
1729
|
# Specify an IAM role only if you are using customized administrator
|
1681
1730
|
# roles to control which users or groups can manage specific stack
|
1682
1731
|
# sets within the same administrator account. For more information,
|
1683
|
-
# see [Prerequisites
|
1684
|
-
#
|
1732
|
+
# see [Prerequisites for using StackSets][1] in the *CloudFormation
|
1733
|
+
# User Guide*.
|
1685
1734
|
#
|
1686
1735
|
#
|
1687
1736
|
#
|
@@ -1705,18 +1754,17 @@ module Aws::CloudFormation
|
|
1705
1754
|
#
|
1706
1755
|
# * With `self-managed` permissions, you must create the administrator
|
1707
1756
|
# and execution roles required to deploy to target accounts. For
|
1708
|
-
# more information, see [Grant
|
1709
|
-
# Permissions][1].
|
1757
|
+
# more information, see [Grant self-managed permissions][1].
|
1710
1758
|
#
|
1711
1759
|
# * With `service-managed` permissions, StackSets automatically
|
1712
1760
|
# creates the IAM roles required to deploy to accounts managed by
|
1713
|
-
# Organizations. For more information, see [
|
1714
|
-
#
|
1761
|
+
# Organizations. For more information, see [Activate trusted access
|
1762
|
+
# for stack sets with Organizations][2].
|
1715
1763
|
#
|
1716
1764
|
#
|
1717
1765
|
#
|
1718
1766
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html
|
1719
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-
|
1767
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html
|
1720
1768
|
# @return [String]
|
1721
1769
|
#
|
1722
1770
|
# @!attribute [rw] auto_deployment
|
@@ -1977,8 +2025,8 @@ module Aws::CloudFormation
|
|
1977
2025
|
# @return [String]
|
1978
2026
|
#
|
1979
2027
|
# @!attribute [rw] accounts
|
1980
|
-
# \[Self-managed permissions\] The
|
1981
|
-
# accounts that you want to delete stack instances for.
|
2028
|
+
# \[Self-managed permissions\] The account IDs of the Amazon Web
|
2029
|
+
# Services accounts that you want to delete stack instances for.
|
1982
2030
|
#
|
1983
2031
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1984
2032
|
# @return [Array<String>]
|
@@ -2132,17 +2180,21 @@ module Aws::CloudFormation
|
|
2132
2180
|
# `OrganizationalUnitIds`.
|
2133
2181
|
#
|
2134
2182
|
# @!attribute [rw] accounts
|
2135
|
-
# The
|
2136
|
-
#
|
2183
|
+
# The account IDs of the Amazon Web Services accounts. If you have
|
2184
|
+
# many account numbers, you can provide those accounts using the
|
2185
|
+
# `AccountsUrl` property instead.
|
2137
2186
|
# @return [Array<String>]
|
2138
2187
|
#
|
2139
2188
|
# @!attribute [rw] accounts_url
|
2140
|
-
#
|
2189
|
+
# The Amazon S3 URL path to a file that contains a list of Amazon Web
|
2190
|
+
# Services account IDs. The file format must be either `.csv` or
|
2191
|
+
# `.txt`, and the data can be comma-separated or new-line-separated.
|
2192
|
+
# There is currently a 10MB limit for the data (approximately 800,000
|
2193
|
+
# accounts).
|
2141
2194
|
# @return [String]
|
2142
2195
|
#
|
2143
2196
|
# @!attribute [rw] organizational_unit_ids
|
2144
|
-
# The organization root ID or organizational unit (OU) IDs
|
2145
|
-
# StackSets deploys.
|
2197
|
+
# The organization root ID or organizational unit (OU) IDs.
|
2146
2198
|
# @return [Array<String>]
|
2147
2199
|
#
|
2148
2200
|
# @!attribute [rw] account_filter_type
|
@@ -2278,7 +2330,7 @@ module Aws::CloudFormation
|
|
2278
2330
|
# @return [String]
|
2279
2331
|
#
|
2280
2332
|
# @!attribute [rw] logical_resource_id
|
2281
|
-
# If specified, lists only the
|
2333
|
+
# If specified, lists only the Hooks related to the specified
|
2282
2334
|
# `LogicalResourceId`.
|
2283
2335
|
# @return [String]
|
2284
2336
|
#
|
@@ -2414,7 +2466,7 @@ module Aws::CloudFormation
|
|
2414
2466
|
# @return [String]
|
2415
2467
|
#
|
2416
2468
|
# @!attribute [rw] status
|
2417
|
-
# The current status of the change set, such as `
|
2469
|
+
# The current status of the change set, such as `CREATE_PENDING`,
|
2418
2470
|
# `CREATE_COMPLETE`, or `FAILED`.
|
2419
2471
|
# @return [String]
|
2420
2472
|
#
|
@@ -3024,6 +3076,64 @@ module Aws::CloudFormation
|
|
3024
3076
|
include Aws::Structure
|
3025
3077
|
end
|
3026
3078
|
|
3079
|
+
# @!attribute [rw] stack_refactor_id
|
3080
|
+
# The ID associated with the stack refactor created from the
|
3081
|
+
# CreateStackRefactor action.
|
3082
|
+
# @return [String]
|
3083
|
+
#
|
3084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackRefactorInput AWS API Documentation
|
3085
|
+
#
|
3086
|
+
class DescribeStackRefactorInput < Struct.new(
|
3087
|
+
:stack_refactor_id)
|
3088
|
+
SENSITIVE = []
|
3089
|
+
include Aws::Structure
|
3090
|
+
end
|
3091
|
+
|
3092
|
+
# @!attribute [rw] description
|
3093
|
+
# A description to help you identify the refactor.
|
3094
|
+
# @return [String]
|
3095
|
+
#
|
3096
|
+
# @!attribute [rw] stack_refactor_id
|
3097
|
+
# The ID associated with the stack refactor created from the
|
3098
|
+
# CreateStackRefactor action.
|
3099
|
+
# @return [String]
|
3100
|
+
#
|
3101
|
+
# @!attribute [rw] stack_ids
|
3102
|
+
# The unique ID for each stack.
|
3103
|
+
# @return [Array<String>]
|
3104
|
+
#
|
3105
|
+
# @!attribute [rw] execution_status
|
3106
|
+
# The stack refactor execution operation status that's provided after
|
3107
|
+
# calling the ExecuteStackRefactor action.
|
3108
|
+
# @return [String]
|
3109
|
+
#
|
3110
|
+
# @!attribute [rw] execution_status_reason
|
3111
|
+
# A detailed explanation for the stack refactor `ExecutionStatus`.
|
3112
|
+
# @return [String]
|
3113
|
+
#
|
3114
|
+
# @!attribute [rw] status
|
3115
|
+
# The stack refactor operation status that's provided after calling
|
3116
|
+
# the CreateStackRefactor action.
|
3117
|
+
# @return [String]
|
3118
|
+
#
|
3119
|
+
# @!attribute [rw] status_reason
|
3120
|
+
# A detailed explanation for the stack refactor operation `Status`.
|
3121
|
+
# @return [String]
|
3122
|
+
#
|
3123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackRefactorOutput AWS API Documentation
|
3124
|
+
#
|
3125
|
+
class DescribeStackRefactorOutput < Struct.new(
|
3126
|
+
:description,
|
3127
|
+
:stack_refactor_id,
|
3128
|
+
:stack_ids,
|
3129
|
+
:execution_status,
|
3130
|
+
:execution_status_reason,
|
3131
|
+
:status,
|
3132
|
+
:status_reason)
|
3133
|
+
SENSITIVE = []
|
3134
|
+
include Aws::Structure
|
3135
|
+
end
|
3136
|
+
|
3027
3137
|
# @!attribute [rw] stack_name
|
3028
3138
|
# The name of the stack for which you want drift information.
|
3029
3139
|
# @return [String]
|
@@ -3971,8 +4081,8 @@ module Aws::CloudFormation
|
|
3971
4081
|
# @return [String]
|
3972
4082
|
#
|
3973
4083
|
# @!attribute [rw] template_url
|
3974
|
-
#
|
3975
|
-
# a template that's located in an Amazon S3 bucket or a Systems
|
4084
|
+
# The URL of a file containing the template body. The URL must point
|
4085
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
3976
4086
|
# Manager document. The location for an Amazon S3 bucket must start
|
3977
4087
|
# with `https://`.
|
3978
4088
|
#
|
@@ -4077,6 +4187,19 @@ module Aws::CloudFormation
|
|
4077
4187
|
#
|
4078
4188
|
class ExecuteChangeSetOutput < Aws::EmptyStructure; end
|
4079
4189
|
|
4190
|
+
# @!attribute [rw] stack_refactor_id
|
4191
|
+
# The ID associated with the stack refactor created from the
|
4192
|
+
# CreateStackRefactor action.
|
4193
|
+
# @return [String]
|
4194
|
+
#
|
4195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteStackRefactorInput AWS API Documentation
|
4196
|
+
#
|
4197
|
+
class ExecuteStackRefactorInput < Struct.new(
|
4198
|
+
:stack_refactor_id)
|
4199
|
+
SENSITIVE = []
|
4200
|
+
include Aws::Structure
|
4201
|
+
end
|
4202
|
+
|
4080
4203
|
# The `Export` structure describes the exported output values for a
|
4081
4204
|
# stack.
|
4082
4205
|
#
|
@@ -4287,8 +4410,8 @@ module Aws::CloudFormation
|
|
4287
4410
|
# @return [String]
|
4288
4411
|
#
|
4289
4412
|
# @!attribute [rw] template_url
|
4290
|
-
#
|
4291
|
-
# a template (max size:
|
4413
|
+
# The URL of a file containing the template body. The URL must point
|
4414
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3
|
4292
4415
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
4293
4416
|
# bucket must start with `https://`.
|
4294
4417
|
#
|
@@ -4378,7 +4501,7 @@ module Aws::CloudFormation
|
|
4378
4501
|
#
|
4379
4502
|
#
|
4380
4503
|
#
|
4381
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
4504
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
4382
4505
|
# @return [Array<String>]
|
4383
4506
|
#
|
4384
4507
|
# @!attribute [rw] capabilities_reason
|
@@ -5216,6 +5339,121 @@ module Aws::CloudFormation
|
|
5216
5339
|
include Aws::Structure
|
5217
5340
|
end
|
5218
5341
|
|
5342
|
+
# @!attribute [rw] stack_refactor_id
|
5343
|
+
# The ID associated with the stack refactor created from the
|
5344
|
+
# CreateStackRefactor action.
|
5345
|
+
# @return [String]
|
5346
|
+
#
|
5347
|
+
# @!attribute [rw] next_token
|
5348
|
+
# If the request doesn't return all the remaining results,
|
5349
|
+
# `NextToken` is set to a token. To retrieve the next set of results,
|
5350
|
+
# call this action again and assign that token to the request
|
5351
|
+
# object's `NextToken` parameter. If the request returns all results,
|
5352
|
+
# `NextToken` is set to `null`.
|
5353
|
+
# @return [String]
|
5354
|
+
#
|
5355
|
+
# @!attribute [rw] max_results
|
5356
|
+
# The maximum number of results to be returned with a single call. If
|
5357
|
+
# the number of available results exceeds this maximum, the response
|
5358
|
+
# includes a `NextToken` value that you can assign to the `NextToken`
|
5359
|
+
# request parameter to get the next set of results.
|
5360
|
+
# @return [Integer]
|
5361
|
+
#
|
5362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackRefactorActionsInput AWS API Documentation
|
5363
|
+
#
|
5364
|
+
class ListStackRefactorActionsInput < Struct.new(
|
5365
|
+
:stack_refactor_id,
|
5366
|
+
:next_token,
|
5367
|
+
:max_results)
|
5368
|
+
SENSITIVE = []
|
5369
|
+
include Aws::Structure
|
5370
|
+
end
|
5371
|
+
|
5372
|
+
# @!attribute [rw] stack_refactor_actions
|
5373
|
+
# The stack refactor actions.
|
5374
|
+
# @return [Array<Types::StackRefactorAction>]
|
5375
|
+
#
|
5376
|
+
# @!attribute [rw] next_token
|
5377
|
+
# If the request doesn't return all the remaining results,
|
5378
|
+
# `NextToken` is set to a token. To retrieve the next set of results,
|
5379
|
+
# call this action again and assign that token to the request
|
5380
|
+
# object's `NextToken` parameter. If the request returns all results,
|
5381
|
+
# `NextToken` is set to `null`.
|
5382
|
+
# @return [String]
|
5383
|
+
#
|
5384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackRefactorActionsOutput AWS API Documentation
|
5385
|
+
#
|
5386
|
+
class ListStackRefactorActionsOutput < Struct.new(
|
5387
|
+
:stack_refactor_actions,
|
5388
|
+
:next_token)
|
5389
|
+
SENSITIVE = []
|
5390
|
+
include Aws::Structure
|
5391
|
+
end
|
5392
|
+
|
5393
|
+
# @!attribute [rw] execution_status_filter
|
5394
|
+
# Execution status to use as a filter. Specify one or more execution
|
5395
|
+
# status codes to list only stack refactors with the specified
|
5396
|
+
# execution status codes.
|
5397
|
+
# @return [Array<String>]
|
5398
|
+
#
|
5399
|
+
# @!attribute [rw] next_token
|
5400
|
+
# If the request doesn't return all the remaining results,
|
5401
|
+
# `NextToken` is set to a token. To retrieve the next set of results,
|
5402
|
+
# call this action again and assign that token to the request
|
5403
|
+
# object's `NextToken` parameter. If the request returns all results,
|
5404
|
+
# `NextToken` is set to `null`.
|
5405
|
+
# @return [String]
|
5406
|
+
#
|
5407
|
+
# @!attribute [rw] max_results
|
5408
|
+
# The maximum number of results to be returned with a single call. If
|
5409
|
+
# the number of available results exceeds this maximum, the response
|
5410
|
+
# includes a `NextToken` value that you can assign to the `NextToken`
|
5411
|
+
# request parameter to get the next set of results.
|
5412
|
+
# @return [Integer]
|
5413
|
+
#
|
5414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackRefactorsInput AWS API Documentation
|
5415
|
+
#
|
5416
|
+
class ListStackRefactorsInput < Struct.new(
|
5417
|
+
:execution_status_filter,
|
5418
|
+
:next_token,
|
5419
|
+
:max_results)
|
5420
|
+
SENSITIVE = []
|
5421
|
+
include Aws::Structure
|
5422
|
+
end
|
5423
|
+
|
5424
|
+
# @!attribute [rw] stack_refactor_summaries
|
5425
|
+
# Provides a summary of a stack refactor, including the following:
|
5426
|
+
#
|
5427
|
+
# * `StackRefactorId`
|
5428
|
+
#
|
5429
|
+
# * `Status`
|
5430
|
+
#
|
5431
|
+
# * `StatusReason`
|
5432
|
+
#
|
5433
|
+
# * `ExecutionStatus`
|
5434
|
+
#
|
5435
|
+
# * `ExecutionStatusReason`
|
5436
|
+
#
|
5437
|
+
# * `Description`
|
5438
|
+
# @return [Array<Types::StackRefactorSummary>]
|
5439
|
+
#
|
5440
|
+
# @!attribute [rw] next_token
|
5441
|
+
# If the request doesn't return all the remaining results,
|
5442
|
+
# `NextToken` is set to a token. To retrieve the next set of results,
|
5443
|
+
# call this action again and assign that token to the request
|
5444
|
+
# object's `NextToken` parameter. If the request returns all results,
|
5445
|
+
# `NextToken` is set to `null`.
|
5446
|
+
# @return [String]
|
5447
|
+
#
|
5448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackRefactorsOutput AWS API Documentation
|
5449
|
+
#
|
5450
|
+
class ListStackRefactorsOutput < Struct.new(
|
5451
|
+
:stack_refactor_summaries,
|
5452
|
+
:next_token)
|
5453
|
+
SENSITIVE = []
|
5454
|
+
include Aws::Structure
|
5455
|
+
end
|
5456
|
+
|
5219
5457
|
# The input for the ListStackResource action.
|
5220
5458
|
#
|
5221
5459
|
# @!attribute [rw] stack_name
|
@@ -6135,9 +6373,9 @@ module Aws::CloudFormation
|
|
6135
6373
|
# @!attribute [rw] resolved_value
|
6136
6374
|
# Read-only. The value that corresponds to a Systems Manager parameter
|
6137
6375
|
# key. This field is returned only for Systems Manager parameter types
|
6138
|
-
# in the template. For more information, see [
|
6139
|
-
# CloudFormation-supplied parameter
|
6140
|
-
# User Guide*.
|
6376
|
+
# in the template. For more information, see [Specify existing
|
6377
|
+
# resources at runtime with CloudFormation-supplied parameter
|
6378
|
+
# types][1] in the *CloudFormation User Guide*.
|
6141
6379
|
#
|
6142
6380
|
#
|
6143
6381
|
#
|
@@ -6483,7 +6721,7 @@ module Aws::CloudFormation
|
|
6483
6721
|
#
|
6484
6722
|
# * For modules, `company_or_organization::service::type::MODULE`.
|
6485
6723
|
#
|
6486
|
-
# * For
|
6724
|
+
# * For Hooks, `MyCompany::Testing::MyTestHook`.
|
6487
6725
|
#
|
6488
6726
|
# <note markdown="1"> The following organization namespaces are reserved and can't be
|
6489
6727
|
# used in your extension names:
|
@@ -6986,6 +7224,47 @@ module Aws::CloudFormation
|
|
6986
7224
|
include Aws::Structure
|
6987
7225
|
end
|
6988
7226
|
|
7227
|
+
# The location of the resource in a stack template.
|
7228
|
+
#
|
7229
|
+
# @!attribute [rw] stack_name
|
7230
|
+
# The name associated with the stack.
|
7231
|
+
# @return [String]
|
7232
|
+
#
|
7233
|
+
# @!attribute [rw] logical_resource_id
|
7234
|
+
# The logical name of the resource specified in the template.
|
7235
|
+
# @return [String]
|
7236
|
+
#
|
7237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceLocation AWS API Documentation
|
7238
|
+
#
|
7239
|
+
class ResourceLocation < Struct.new(
|
7240
|
+
:stack_name,
|
7241
|
+
:logical_resource_id)
|
7242
|
+
SENSITIVE = []
|
7243
|
+
include Aws::Structure
|
7244
|
+
end
|
7245
|
+
|
7246
|
+
# Specifies the current source of the resource and the destination of
|
7247
|
+
# where it will be moved to.
|
7248
|
+
#
|
7249
|
+
# @!attribute [rw] source
|
7250
|
+
# The source stack `StackName` and `LogicalResourceId` for the
|
7251
|
+
# resource being refactored.
|
7252
|
+
# @return [Types::ResourceLocation]
|
7253
|
+
#
|
7254
|
+
# @!attribute [rw] destination
|
7255
|
+
# The destination stack `StackName` and `LogicalResourceId` for the
|
7256
|
+
# resource being refactored.
|
7257
|
+
# @return [Types::ResourceLocation]
|
7258
|
+
#
|
7259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceMapping AWS API Documentation
|
7260
|
+
#
|
7261
|
+
class ResourceMapping < Struct.new(
|
7262
|
+
:source,
|
7263
|
+
:destination)
|
7264
|
+
SENSITIVE = []
|
7265
|
+
include Aws::Structure
|
7266
|
+
end
|
7267
|
+
|
6989
7268
|
# A resource scan is currently in progress. Only one can be run at a
|
6990
7269
|
# time for an account in a Region.
|
6991
7270
|
#
|
@@ -7804,6 +8083,30 @@ module Aws::CloudFormation
|
|
7804
8083
|
include Aws::Structure
|
7805
8084
|
end
|
7806
8085
|
|
8086
|
+
# Describes the stack and the template used by the stack.
|
8087
|
+
#
|
8088
|
+
# @!attribute [rw] stack_name
|
8089
|
+
# The name associated with the stack.
|
8090
|
+
# @return [String]
|
8091
|
+
#
|
8092
|
+
# @!attribute [rw] template_body
|
8093
|
+
# The file path for the stack template file.
|
8094
|
+
# @return [String]
|
8095
|
+
#
|
8096
|
+
# @!attribute [rw] template_url
|
8097
|
+
# The desired final state of the stack template.
|
8098
|
+
# @return [String]
|
8099
|
+
#
|
8100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackDefinition AWS API Documentation
|
8101
|
+
#
|
8102
|
+
class StackDefinition < Struct.new(
|
8103
|
+
:stack_name,
|
8104
|
+
:template_body,
|
8105
|
+
:template_url)
|
8106
|
+
SENSITIVE = []
|
8107
|
+
include Aws::Structure
|
8108
|
+
end
|
8109
|
+
|
7807
8110
|
# Contains information about whether the stack's actual configuration
|
7808
8111
|
# differs, or has *drifted*, from its expected configuration, as defined
|
7809
8112
|
# in the stack template and any values specified as template parameters.
|
@@ -7960,7 +8263,7 @@ module Aws::CloudFormation
|
|
7960
8263
|
# @return [String]
|
7961
8264
|
#
|
7962
8265
|
# @!attribute [rw] hook_invocation_point
|
7963
|
-
# Invocation points are points in provisioning logic where
|
8266
|
+
# Invocation points are points in provisioning logic where Hooks are
|
7964
8267
|
# initiated.
|
7965
8268
|
# @return [String]
|
7966
8269
|
#
|
@@ -8423,6 +8726,129 @@ module Aws::CloudFormation
|
|
8423
8726
|
#
|
8424
8727
|
class StackNotFoundException < Aws::EmptyStructure; end
|
8425
8728
|
|
8729
|
+
# Describes the stack and the action that CloudFormation will perform on
|
8730
|
+
# it if you execute the stack refactor.
|
8731
|
+
#
|
8732
|
+
# @!attribute [rw] action
|
8733
|
+
# The action that CloudFormation takes on the stack.
|
8734
|
+
# @return [String]
|
8735
|
+
#
|
8736
|
+
# @!attribute [rw] entity
|
8737
|
+
# The type that will be evaluated in the `StackRefactorAction`. The
|
8738
|
+
# following are potential `Entity` types:
|
8739
|
+
#
|
8740
|
+
# * `Stack`
|
8741
|
+
#
|
8742
|
+
# * `Resource`
|
8743
|
+
# @return [String]
|
8744
|
+
#
|
8745
|
+
# @!attribute [rw] physical_resource_id
|
8746
|
+
# The name or unique identifier associated with the physical instance
|
8747
|
+
# of the resource.
|
8748
|
+
# @return [String]
|
8749
|
+
#
|
8750
|
+
# @!attribute [rw] resource_identifier
|
8751
|
+
# A key-value pair that identifies the target resource. The key is an
|
8752
|
+
# identifier property (for example, `BucketName` for `AWS::S3::Bucket`
|
8753
|
+
# resources) and the value is the actual property value (for example,
|
8754
|
+
# `MyS3Bucket`).
|
8755
|
+
# @return [String]
|
8756
|
+
#
|
8757
|
+
# @!attribute [rw] description
|
8758
|
+
# A description to help you identify the refactor.
|
8759
|
+
# @return [String]
|
8760
|
+
#
|
8761
|
+
# @!attribute [rw] detection
|
8762
|
+
# The detection type is one of the following:
|
8763
|
+
#
|
8764
|
+
# * Auto: CloudFormation figured out the mapping on its own.
|
8765
|
+
#
|
8766
|
+
# * Manual: The customer provided the mapping in the `ResourceMapping`
|
8767
|
+
# parameter.
|
8768
|
+
# @return [String]
|
8769
|
+
#
|
8770
|
+
# @!attribute [rw] detection_reason
|
8771
|
+
# The description of the detection type.
|
8772
|
+
# @return [String]
|
8773
|
+
#
|
8774
|
+
# @!attribute [rw] tag_resources
|
8775
|
+
# Assigns one or more tags to specified resources.
|
8776
|
+
# @return [Array<Types::Tag>]
|
8777
|
+
#
|
8778
|
+
# @!attribute [rw] untag_resources
|
8779
|
+
# Removes one or more tags to specified resources.
|
8780
|
+
# @return [Array<String>]
|
8781
|
+
#
|
8782
|
+
# @!attribute [rw] resource_mapping
|
8783
|
+
# The mapping for the stack resource `Source` and stack resource
|
8784
|
+
# `Destination`.
|
8785
|
+
# @return [Types::ResourceMapping]
|
8786
|
+
#
|
8787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackRefactorAction AWS API Documentation
|
8788
|
+
#
|
8789
|
+
class StackRefactorAction < Struct.new(
|
8790
|
+
:action,
|
8791
|
+
:entity,
|
8792
|
+
:physical_resource_id,
|
8793
|
+
:resource_identifier,
|
8794
|
+
:description,
|
8795
|
+
:detection,
|
8796
|
+
:detection_reason,
|
8797
|
+
:tag_resources,
|
8798
|
+
:untag_resources,
|
8799
|
+
:resource_mapping)
|
8800
|
+
SENSITIVE = []
|
8801
|
+
include Aws::Structure
|
8802
|
+
end
|
8803
|
+
|
8804
|
+
# The specified stack refactor can't be found.
|
8805
|
+
#
|
8806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackRefactorNotFoundException AWS API Documentation
|
8807
|
+
#
|
8808
|
+
class StackRefactorNotFoundException < Aws::EmptyStructure; end
|
8809
|
+
|
8810
|
+
# The summary of a stack refactor operation.
|
8811
|
+
#
|
8812
|
+
# @!attribute [rw] stack_refactor_id
|
8813
|
+
# The ID associated with the stack refactor created from the
|
8814
|
+
# CreateStackRefactor action.
|
8815
|
+
# @return [String]
|
8816
|
+
#
|
8817
|
+
# @!attribute [rw] description
|
8818
|
+
# A description to help you identify the refactor.
|
8819
|
+
# @return [String]
|
8820
|
+
#
|
8821
|
+
# @!attribute [rw] execution_status
|
8822
|
+
# The operation status that's provided after calling the
|
8823
|
+
# ExecuteStackRefactor action.
|
8824
|
+
# @return [String]
|
8825
|
+
#
|
8826
|
+
# @!attribute [rw] execution_status_reason
|
8827
|
+
# A detailed explanation for the stack refactor `ExecutionStatus`.
|
8828
|
+
# @return [String]
|
8829
|
+
#
|
8830
|
+
# @!attribute [rw] status
|
8831
|
+
# The stack refactor operation status that's provided after calling
|
8832
|
+
# the CreateStackRefactor action.
|
8833
|
+
# @return [String]
|
8834
|
+
#
|
8835
|
+
# @!attribute [rw] status_reason
|
8836
|
+
# A detailed explanation for the stack refactor `Status`.
|
8837
|
+
# @return [String]
|
8838
|
+
#
|
8839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackRefactorSummary AWS API Documentation
|
8840
|
+
#
|
8841
|
+
class StackRefactorSummary < Struct.new(
|
8842
|
+
:stack_refactor_id,
|
8843
|
+
:description,
|
8844
|
+
:execution_status,
|
8845
|
+
:execution_status_reason,
|
8846
|
+
:status,
|
8847
|
+
:status_reason)
|
8848
|
+
SENSITIVE = []
|
8849
|
+
include Aws::Structure
|
8850
|
+
end
|
8851
|
+
|
8426
8852
|
# The StackResource data type.
|
8427
8853
|
#
|
8428
8854
|
# @!attribute [rw] stack_name
|
@@ -8911,7 +9337,7 @@ module Aws::CloudFormation
|
|
8911
9337
|
#
|
8912
9338
|
#
|
8913
9339
|
#
|
8914
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
9340
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
8915
9341
|
# @return [Array<String>]
|
8916
9342
|
#
|
8917
9343
|
# @!attribute [rw] tags
|
@@ -8929,9 +9355,8 @@ module Aws::CloudFormation
|
|
8929
9355
|
#
|
8930
9356
|
# Use customized administrator roles to control which users or groups
|
8931
9357
|
# can manage specific stack sets within the same administrator
|
8932
|
-
# account. For more information, see [Prerequisites
|
8933
|
-
#
|
8934
|
-
# Guide*.
|
9358
|
+
# account. For more information, see [Prerequisites for using
|
9359
|
+
# CloudFormation StackSets][1] in the *CloudFormation User Guide*.
|
8935
9360
|
#
|
8936
9361
|
#
|
8937
9362
|
#
|
@@ -8966,18 +9391,17 @@ module Aws::CloudFormation
|
|
8966
9391
|
#
|
8967
9392
|
# * With `self-managed` permissions, you must create the administrator
|
8968
9393
|
# and execution roles required to deploy to target accounts. For
|
8969
|
-
# more information, see [Grant
|
8970
|
-
# Permissions][1].
|
9394
|
+
# more information, see [Grant self-managed permissions][1].
|
8971
9395
|
#
|
8972
9396
|
# * With `service-managed` permissions, StackSets automatically
|
8973
9397
|
# creates the IAM roles required to deploy to accounts managed by
|
8974
|
-
# Organizations. For more information, see [
|
8975
|
-
#
|
9398
|
+
# Organizations. For more information, see [Activate trusted access
|
9399
|
+
# for stack sets with Organizations][2].
|
8976
9400
|
#
|
8977
9401
|
#
|
8978
9402
|
#
|
8979
9403
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html
|
8980
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-
|
9404
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html
|
8981
9405
|
# @return [String]
|
8982
9406
|
#
|
8983
9407
|
# @!attribute [rw] organizational_unit_ids
|
@@ -9059,8 +9483,8 @@ module Aws::CloudFormation
|
|
9059
9483
|
# For stack set operations, includes information about drift operations
|
9060
9484
|
# currently being performed on the stack set.
|
9061
9485
|
#
|
9062
|
-
# For more information, see [
|
9063
|
-
#
|
9486
|
+
# For more information, see [Performing drift detection on
|
9487
|
+
# CloudFormation StackSets][1] in the *CloudFormation User Guide*.
|
9064
9488
|
#
|
9065
9489
|
#
|
9066
9490
|
#
|
@@ -9209,8 +9633,8 @@ module Aws::CloudFormation
|
|
9209
9633
|
#
|
9210
9634
|
# * `QUEUED`: \[Service-managed permissions\] For automatic
|
9211
9635
|
# deployments that require a sequence of operations, the operation
|
9212
|
-
# is queued to be performed. For more information, see the
|
9213
|
-
#
|
9636
|
+
# is queued to be performed. For more information, see the
|
9637
|
+
# [StackSets status codes][1] in the *CloudFormation User Guide*.
|
9214
9638
|
#
|
9215
9639
|
# * `RUNNING`: The operation is currently being performed.
|
9216
9640
|
#
|
@@ -9246,12 +9670,12 @@ module Aws::CloudFormation
|
|
9246
9670
|
#
|
9247
9671
|
# Use customized administrator roles to control which users or groups
|
9248
9672
|
# can manage specific stack sets within the same administrator
|
9249
|
-
# account. For more information, see [
|
9250
|
-
#
|
9673
|
+
# account. For more information, see [Grant self-managed
|
9674
|
+
# permissions][1] in the *CloudFormation User Guide*.
|
9251
9675
|
#
|
9252
9676
|
#
|
9253
9677
|
#
|
9254
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
9678
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html
|
9255
9679
|
# @return [String]
|
9256
9680
|
#
|
9257
9681
|
# @!attribute [rw] execution_role_name
|
@@ -9291,8 +9715,8 @@ module Aws::CloudFormation
|
|
9291
9715
|
# This information will only be present for stack set operations whose
|
9292
9716
|
# `Action` type is `DETECT_DRIFT`.
|
9293
9717
|
#
|
9294
|
-
# For more information, see [
|
9295
|
-
# *CloudFormation User Guide*.
|
9718
|
+
# For more information, see [Performing drift detection on
|
9719
|
+
# CloudFormation StackSets][1] in the *CloudFormation User Guide*.
|
9296
9720
|
#
|
9297
9721
|
#
|
9298
9722
|
#
|
@@ -9669,18 +10093,17 @@ module Aws::CloudFormation
|
|
9669
10093
|
#
|
9670
10094
|
# * With `self-managed` permissions, you must create the administrator
|
9671
10095
|
# and execution roles required to deploy to target accounts. For
|
9672
|
-
# more information, see [Grant
|
9673
|
-
# Permissions][1].
|
10096
|
+
# more information, see [Grant self-managed permissions][1].
|
9674
10097
|
#
|
9675
10098
|
# * With `service-managed` permissions, StackSets automatically
|
9676
10099
|
# creates the IAM roles required to deploy to accounts managed by
|
9677
|
-
# Organizations. For more information, see [
|
9678
|
-
#
|
10100
|
+
# Organizations. For more information, see [Activate trusted access
|
10101
|
+
# for stack sets with Organizations][2].
|
9679
10102
|
#
|
9680
10103
|
#
|
9681
10104
|
#
|
9682
10105
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html
|
9683
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-
|
10106
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html
|
9684
10107
|
# @return [String]
|
9685
10108
|
#
|
9686
10109
|
# @!attribute [rw] drift_status
|
@@ -10687,8 +11110,8 @@ module Aws::CloudFormation
|
|
10687
11110
|
# @return [String]
|
10688
11111
|
#
|
10689
11112
|
# @!attribute [rw] template_url
|
10690
|
-
#
|
10691
|
-
# a template that's located in an Amazon S3 bucket or a Systems
|
11113
|
+
# The URL of a file containing the template body. The URL must point
|
11114
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
10692
11115
|
# Manager document. The location for an Amazon S3 bucket must start
|
10693
11116
|
# with `https://`.
|
10694
11117
|
#
|
@@ -10772,15 +11195,17 @@ module Aws::CloudFormation
|
|
10772
11195
|
#
|
10773
11196
|
# * [AWS::IAM::InstanceProfile][3]
|
10774
11197
|
#
|
10775
|
-
# * [AWS::IAM::
|
11198
|
+
# * [ AWS::IAM::ManagedPolicy][4]
|
10776
11199
|
#
|
10777
|
-
# * [
|
11200
|
+
# * [AWS::IAM::Policy][5]
|
10778
11201
|
#
|
10779
|
-
# * [ AWS::IAM::
|
11202
|
+
# * [ AWS::IAM::Role][6]
|
10780
11203
|
#
|
10781
|
-
# * [AWS::IAM::
|
11204
|
+
# * [ AWS::IAM::User][7]
|
11205
|
+
#
|
11206
|
+
# * [AWS::IAM::UserToGroupAddition][8]
|
10782
11207
|
# For more information, see [Acknowledging IAM resources in
|
10783
|
-
# CloudFormation templates][
|
11208
|
+
# CloudFormation templates][9].
|
10784
11209
|
#
|
10785
11210
|
# * `CAPABILITY_AUTO_EXPAND`
|
10786
11211
|
#
|
@@ -10793,8 +11218,8 @@ module Aws::CloudFormation
|
|
10793
11218
|
# your stack template contains one or more macros, and you choose to
|
10794
11219
|
# update a stack directly from the processed template, without first
|
10795
11220
|
# reviewing the resulting changes in a change set, you must
|
10796
|
-
# acknowledge this capability. This includes the [AWS::Include][
|
10797
|
-
# and [AWS::Serverless][
|
11221
|
+
# acknowledge this capability. This includes the [AWS::Include][10]
|
11222
|
+
# and [AWS::Serverless][11] transforms, which are macros hosted by
|
10798
11223
|
# CloudFormation.
|
10799
11224
|
#
|
10800
11225
|
# If you want to update a stack from a stack template that contains
|
@@ -10810,7 +11235,7 @@ module Aws::CloudFormation
|
|
10810
11235
|
# being notified.
|
10811
11236
|
#
|
10812
11237
|
# For more information, see [Perform custom processing on
|
10813
|
-
# CloudFormation templates with template macros][
|
11238
|
+
# CloudFormation templates with template macros][12].
|
10814
11239
|
#
|
10815
11240
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
10816
11241
|
# specified.
|
@@ -10822,14 +11247,15 @@ module Aws::CloudFormation
|
|
10822
11247
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
10823
11248
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
10824
11249
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
10825
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
10826
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
10827
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
10828
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-
|
10829
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
10830
|
-
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
10831
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-
|
10832
|
-
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
11250
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-managedpolicy.html
|
11251
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
11252
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
11253
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
11254
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
11255
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
11256
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
11257
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
11258
|
+
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
10833
11259
|
# @return [Array<String>]
|
10834
11260
|
#
|
10835
11261
|
# @!attribute [rw] resource_types
|
@@ -10851,7 +11277,7 @@ module Aws::CloudFormation
|
|
10851
11277
|
#
|
10852
11278
|
#
|
10853
11279
|
#
|
10854
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
11280
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html
|
10855
11281
|
# @return [Array<String>]
|
10856
11282
|
#
|
10857
11283
|
# @!attribute [rw] role_arn
|
@@ -10983,10 +11409,10 @@ module Aws::CloudFormation
|
|
10983
11409
|
# @return [String]
|
10984
11410
|
#
|
10985
11411
|
# @!attribute [rw] accounts
|
10986
|
-
# \[Self-managed permissions\] The
|
10987
|
-
# Services accounts for which you want to update parameter values
|
10988
|
-
# stack instances. The overridden parameter values will be applied
|
10989
|
-
# all stack instances in the specified accounts and Amazon Web
|
11412
|
+
# \[Self-managed permissions\] The account IDs of one or more Amazon
|
11413
|
+
# Web Services accounts for which you want to update parameter values
|
11414
|
+
# for stack instances. The overridden parameter values will be applied
|
11415
|
+
# to all stack instances in the specified accounts and Amazon Web
|
10990
11416
|
# Services Regions.
|
10991
11417
|
#
|
10992
11418
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -11155,9 +11581,10 @@ module Aws::CloudFormation
|
|
11155
11581
|
# @return [String]
|
11156
11582
|
#
|
11157
11583
|
# @!attribute [rw] template_url
|
11158
|
-
# The
|
11159
|
-
#
|
11160
|
-
#
|
11584
|
+
# The URL of a file that contains the template body. The URL must
|
11585
|
+
# point to a template (maximum size: 1 MB) that is located in an
|
11586
|
+
# Amazon S3 bucket or a Systems Manager document. The location for an
|
11587
|
+
# Amazon S3 bucket must start with `https://`.
|
11161
11588
|
#
|
11162
11589
|
# Conditional: You must specify only one of the following parameters:
|
11163
11590
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to
|
@@ -11226,8 +11653,8 @@ module Aws::CloudFormation
|
|
11226
11653
|
# directly from the processed template, without first reviewing the
|
11227
11654
|
# resulting changes in a change set. To update the stack set
|
11228
11655
|
# directly, you must acknowledge this capability. For more
|
11229
|
-
# information, see [
|
11230
|
-
#
|
11656
|
+
# information, see [Perform custom processing on CloudFormation
|
11657
|
+
# templates with template macros][9].
|
11231
11658
|
#
|
11232
11659
|
# Stack sets with service-managed permissions do not currently
|
11233
11660
|
# support the use of macros in templates. (This includes the
|
@@ -11246,9 +11673,9 @@ module Aws::CloudFormation
|
|
11246
11673
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
11247
11674
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
11248
11675
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
11249
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
11676
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
11250
11677
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
11251
|
-
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
11678
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
11252
11679
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
11253
11680
|
# @return [Array<String>]
|
11254
11681
|
#
|
@@ -11299,7 +11726,7 @@ module Aws::CloudFormation
|
|
11299
11726
|
# Specify an IAM role only if you are using customized administrator
|
11300
11727
|
# roles to control which users or groups can manage specific stack
|
11301
11728
|
# sets within the same administrator account. For more information,
|
11302
|
-
# see [
|
11729
|
+
# see [Prerequisites for using CloudFormation StackSets][1] in the
|
11303
11730
|
# *CloudFormation User Guide*.
|
11304
11731
|
#
|
11305
11732
|
# If you specified a customized administrator role when you created
|
@@ -11354,18 +11781,17 @@ module Aws::CloudFormation
|
|
11354
11781
|
#
|
11355
11782
|
# * With `self-managed` permissions, you must create the administrator
|
11356
11783
|
# and execution roles required to deploy to target accounts. For
|
11357
|
-
# more information, see [Grant
|
11358
|
-
# Permissions][1].
|
11784
|
+
# more information, see [Grant self-managed permissions][1].
|
11359
11785
|
#
|
11360
11786
|
# * With `service-managed` permissions, StackSets automatically
|
11361
11787
|
# creates the IAM roles required to deploy to accounts managed by
|
11362
|
-
# Organizations. For more information, see [
|
11363
|
-
#
|
11788
|
+
# Organizations. For more information, see [Activate trusted access
|
11789
|
+
# for stack sets with Organizations][2].
|
11364
11790
|
#
|
11365
11791
|
#
|
11366
11792
|
#
|
11367
11793
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html
|
11368
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-
|
11794
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html
|
11369
11795
|
# @return [String]
|
11370
11796
|
#
|
11371
11797
|
# @!attribute [rw] auto_deployment
|
@@ -11542,8 +11968,8 @@ module Aws::CloudFormation
|
|
11542
11968
|
# @return [String]
|
11543
11969
|
#
|
11544
11970
|
# @!attribute [rw] template_url
|
11545
|
-
#
|
11546
|
-
# a template (max size:
|
11971
|
+
# The URL of a file containing the template body. The URL must point
|
11972
|
+
# to a template (max size: 1 MB) that is located in an Amazon S3
|
11547
11973
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
11548
11974
|
# bucket must start with `https://`.
|
11549
11975
|
#
|
@@ -11582,7 +12008,7 @@ module Aws::CloudFormation
|
|
11582
12008
|
#
|
11583
12009
|
#
|
11584
12010
|
#
|
11585
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
12011
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
11586
12012
|
# @return [Array<String>]
|
11587
12013
|
#
|
11588
12014
|
# @!attribute [rw] capabilities_reason
|