aws-sdk-cloudformation 1.102.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +96 -94
- 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 +125 -127
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c324e25ee68059c82bea509acb8c216b72ac437f7f089fc42ab2ab60833e0e7
|
|
4
|
+
data.tar.gz: 7b4bdf451a26056072ade92e11e2b83c593a8091e8309d07b036d36eae8f7bcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3de6c518081f7f46a7b51ba56dc7acaab69ab262c06e0df9bf1a0055428750c1828f6e590f41fd32adb62ff773118b108cd81fdc9b0588da0cd650ed4f1afe42
|
|
7
|
+
data.tar.gz: 002c6bf643ab5dbdd3b4d3ee3a41ed03e5a02414ffd3ba96d17a4cb406531440dd89dbb4beae7c79ae7795702a17e81fd53ae9d55e0995ff626551c29609a2bf
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.103.0
|
|
@@ -408,7 +408,7 @@ module Aws::CloudFormation
|
|
|
408
408
|
# extensions][1] in the *CloudFormation User Guide*.
|
|
409
409
|
#
|
|
410
410
|
# Once you have activated a public third-party extension in your account
|
|
411
|
-
# and Region, use [
|
|
411
|
+
# and Region, use [SetTypeConfiguration][2] to specify configuration
|
|
412
412
|
# properties for the extension. For more information, see [Configuring
|
|
413
413
|
# extensions at the account level][3] in the *CloudFormation User
|
|
414
414
|
# Guide*.
|
|
@@ -843,19 +843,19 @@ module Aws::CloudFormation
|
|
|
843
843
|
# review all permissions associated with them and edit their
|
|
844
844
|
# permissions if necessary.
|
|
845
845
|
#
|
|
846
|
-
# * [
|
|
846
|
+
# * [ AWS::IAM::AccessKey][1]
|
|
847
847
|
#
|
|
848
|
-
# * [
|
|
848
|
+
# * [ AWS::IAM::Group][2]
|
|
849
849
|
#
|
|
850
|
-
# * [
|
|
850
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
851
851
|
#
|
|
852
|
-
# * [
|
|
852
|
+
# * [ AWS::IAM::Policy][4]
|
|
853
853
|
#
|
|
854
|
-
# * [
|
|
854
|
+
# * [ AWS::IAM::Role][5]
|
|
855
855
|
#
|
|
856
|
-
# * [
|
|
856
|
+
# * [ AWS::IAM::User][6]
|
|
857
857
|
#
|
|
858
|
-
# * [
|
|
858
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
859
859
|
#
|
|
860
860
|
# For more information, see [Acknowledging IAM resources in
|
|
861
861
|
# CloudFormation templates][8].
|
|
@@ -871,8 +871,8 @@ module Aws::CloudFormation
|
|
|
871
871
|
# your stack template contains one or more macros, and you choose to
|
|
872
872
|
# create a stack directly from the processed template, without first
|
|
873
873
|
# reviewing the resulting changes in a change set, you must
|
|
874
|
-
# acknowledge this capability. This includes the [
|
|
875
|
-
#
|
|
874
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
|
875
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
|
876
876
|
# CloudFormation.
|
|
877
877
|
#
|
|
878
878
|
# <note markdown="1"> This capacity doesn't apply to creating change sets, and specifying
|
|
@@ -1005,8 +1005,8 @@ module Aws::CloudFormation
|
|
|
1005
1005
|
#
|
|
1006
1006
|
# @option params [String] :on_stack_failure
|
|
1007
1007
|
# Determines what action will be taken if stack creation fails. If this
|
|
1008
|
-
# parameter is specified, the `DisableRollback` parameter to the
|
|
1009
|
-
#
|
|
1008
|
+
# parameter is specified, the `DisableRollback` parameter to the
|
|
1009
|
+
# [ExecuteChangeSet][1] API operation must not be specified. This must
|
|
1010
1010
|
# be one of these values:
|
|
1011
1011
|
#
|
|
1012
1012
|
# * `DELETE` - Deletes the change set if the stack creation fails. This
|
|
@@ -1016,11 +1016,11 @@ module Aws::CloudFormation
|
|
|
1016
1016
|
#
|
|
1017
1017
|
# * `DO_NOTHING` - if the stack creation fails, do nothing. This is
|
|
1018
1018
|
# equivalent to specifying `true` for the `DisableRollback` parameter
|
|
1019
|
-
# to the [
|
|
1019
|
+
# to the [ExecuteChangeSet][1] API operation.
|
|
1020
1020
|
#
|
|
1021
1021
|
# * `ROLLBACK` - if the stack creation fails, roll back the stack. This
|
|
1022
1022
|
# is equivalent to specifying `false` for the `DisableRollback`
|
|
1023
|
-
# parameter to the [
|
|
1023
|
+
# parameter to the [ExecuteChangeSet][1] API operation.
|
|
1024
1024
|
#
|
|
1025
1025
|
# For nested stacks, when the `OnStackFailure` parameter is set to
|
|
1026
1026
|
# `DELETE` for the change set for the parent stack, any failure in a
|
|
@@ -1249,7 +1249,7 @@ module Aws::CloudFormation
|
|
|
1249
1249
|
#
|
|
1250
1250
|
# @option params [Array<Types::Parameter>] :parameters
|
|
1251
1251
|
# A list of `Parameter` structures that specify input parameters for the
|
|
1252
|
-
# stack. For more information, see the [
|
|
1252
|
+
# stack. For more information, see the [Parameter][1] data type.
|
|
1253
1253
|
#
|
|
1254
1254
|
#
|
|
1255
1255
|
#
|
|
@@ -1305,19 +1305,19 @@ module Aws::CloudFormation
|
|
|
1305
1305
|
# you review all permissions associated with them and edit their
|
|
1306
1306
|
# permissions if necessary.
|
|
1307
1307
|
#
|
|
1308
|
-
# * [
|
|
1308
|
+
# * [AWS::IAM::AccessKey][1]
|
|
1309
1309
|
#
|
|
1310
|
-
# * [
|
|
1310
|
+
# * [AWS::IAM::Group][2]
|
|
1311
1311
|
#
|
|
1312
|
-
# * [
|
|
1312
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
1313
1313
|
#
|
|
1314
|
-
# * [
|
|
1314
|
+
# * [AWS::IAM::Policy][4]
|
|
1315
1315
|
#
|
|
1316
|
-
# * [
|
|
1316
|
+
# * [AWS::IAM::Role][5]
|
|
1317
1317
|
#
|
|
1318
|
-
# * [
|
|
1318
|
+
# * [AWS::IAM::User][6]
|
|
1319
1319
|
#
|
|
1320
|
-
# * [
|
|
1320
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
1321
1321
|
#
|
|
1322
1322
|
# For more information, see [Acknowledging IAM Resources in
|
|
1323
1323
|
# CloudFormation Templates][8].
|
|
@@ -1333,8 +1333,8 @@ module Aws::CloudFormation
|
|
|
1333
1333
|
# your stack template contains one or more macros, and you choose to
|
|
1334
1334
|
# create a stack directly from the processed template, without first
|
|
1335
1335
|
# reviewing the resulting changes in a change set, you must
|
|
1336
|
-
# acknowledge this capability. This includes the [
|
|
1337
|
-
#
|
|
1336
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
|
1337
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
|
1338
1338
|
# CloudFormation.
|
|
1339
1339
|
#
|
|
1340
1340
|
# If you want to create a stack from a stack template that contains
|
|
@@ -1601,8 +1601,8 @@ module Aws::CloudFormation
|
|
|
1601
1601
|
# instance aren't updated, but retain their overridden value.
|
|
1602
1602
|
#
|
|
1603
1603
|
# You can only override the parameter *values* that are specified in the
|
|
1604
|
-
# stack set; to add or delete a parameter itself, use
|
|
1605
|
-
# ][1] to update the stack set template.
|
|
1604
|
+
# stack set; to add or delete a parameter itself, use
|
|
1605
|
+
# [UpdateStackSet][1] to update the stack set template.
|
|
1606
1606
|
#
|
|
1607
1607
|
#
|
|
1608
1608
|
#
|
|
@@ -1778,19 +1778,19 @@ module Aws::CloudFormation
|
|
|
1778
1778
|
# you review all permissions associated with them and edit their
|
|
1779
1779
|
# permissions if necessary.
|
|
1780
1780
|
#
|
|
1781
|
-
# * [
|
|
1781
|
+
# * [AWS::IAM::AccessKey][1]
|
|
1782
1782
|
#
|
|
1783
|
-
# * [
|
|
1783
|
+
# * [AWS::IAM::Group][2]
|
|
1784
1784
|
#
|
|
1785
|
-
# * [
|
|
1785
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
1786
1786
|
#
|
|
1787
|
-
# * [
|
|
1787
|
+
# * [AWS::IAM::Policy][4]
|
|
1788
1788
|
#
|
|
1789
|
-
# * [
|
|
1789
|
+
# * [AWS::IAM::Role][5]
|
|
1790
1790
|
#
|
|
1791
|
-
# * [
|
|
1791
|
+
# * [AWS::IAM::User][6]
|
|
1792
1792
|
#
|
|
1793
|
-
# * [
|
|
1793
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
1794
1794
|
#
|
|
1795
1795
|
# For more information, see [Acknowledging IAM Resources in
|
|
1796
1796
|
# CloudFormation Templates][8].
|
|
@@ -1806,11 +1806,12 @@ module Aws::CloudFormation
|
|
|
1806
1806
|
# Templates][9].
|
|
1807
1807
|
#
|
|
1808
1808
|
# Stack sets with service-managed permissions don't currently support
|
|
1809
|
-
# the use of macros in templates. (This includes the
|
|
1810
|
-
# ][10] and [
|
|
1811
|
-
# hosted by CloudFormation.) Even if you specify this
|
|
1812
|
-
# stack set with service-managed permissions, if you
|
|
1813
|
-
# in your template the stack set operation will
|
|
1809
|
+
# the use of macros in templates. (This includes the
|
|
1810
|
+
# [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
|
|
1811
|
+
# macros hosted by CloudFormation.) Even if you specify this
|
|
1812
|
+
# capability for a stack set with service-managed permissions, if you
|
|
1813
|
+
# reference a macro in your template the stack set operation will
|
|
1814
|
+
# fail.
|
|
1814
1815
|
#
|
|
1815
1816
|
#
|
|
1816
1817
|
#
|
|
@@ -2363,7 +2364,7 @@ module Aws::CloudFormation
|
|
|
2363
2364
|
# deregistered as well and marked as deprecated.
|
|
2364
2365
|
#
|
|
2365
2366
|
# To view the deprecation status of an extension or extension version,
|
|
2366
|
-
# use [
|
|
2367
|
+
# use [DescribeType][1].
|
|
2367
2368
|
#
|
|
2368
2369
|
#
|
|
2369
2370
|
#
|
|
@@ -2794,7 +2795,7 @@ module Aws::CloudFormation
|
|
|
2794
2795
|
#
|
|
2795
2796
|
# For more information about registering as a publisher, see:
|
|
2796
2797
|
#
|
|
2797
|
-
# * [
|
|
2798
|
+
# * [RegisterPublisher][1]
|
|
2798
2799
|
#
|
|
2799
2800
|
# * [Publishing extensions to make them available for public use][2] in
|
|
2800
2801
|
# the *CloudFormation CLI User Guide*
|
|
@@ -4280,16 +4281,16 @@ module Aws::CloudFormation
|
|
|
4280
4281
|
# @option params [Boolean] :disable_rollback
|
|
4281
4282
|
# Preserves the state of previously provisioned resources when an
|
|
4282
4283
|
# operation fails. This parameter can't be specified when the
|
|
4283
|
-
# `OnStackFailure` parameter to the [
|
|
4284
|
-
#
|
|
4284
|
+
# `OnStackFailure` parameter to the [CreateChangeSet][1] API operation
|
|
4285
|
+
# was specified.
|
|
4285
4286
|
#
|
|
4286
4287
|
# * `True` - if the stack creation fails, do nothing. This is equivalent
|
|
4287
4288
|
# to specifying `DO_NOTHING` for the `OnStackFailure` parameter to the
|
|
4288
|
-
# [
|
|
4289
|
+
# [CreateChangeSet][1] API operation.
|
|
4289
4290
|
#
|
|
4290
4291
|
# * `False` - if the stack creation fails, roll back the stack. This is
|
|
4291
4292
|
# equivalent to specifying `ROLLBACK` for the `OnStackFailure`
|
|
4292
|
-
# parameter to the [
|
|
4293
|
+
# parameter to the [CreateChangeSet][1] API operation.
|
|
4293
4294
|
#
|
|
4294
4295
|
# Default: `True`
|
|
4295
4296
|
#
|
|
@@ -6280,7 +6281,7 @@ module Aws::CloudFormation
|
|
|
6280
6281
|
# public use][1] in the *CloudFormation CLI User Guide*.
|
|
6281
6282
|
#
|
|
6282
6283
|
# To publish an extension, you must be registered as a publisher with
|
|
6283
|
-
# CloudFormation. For more information, see [
|
|
6284
|
+
# CloudFormation. For more information, see [RegisterPublisher][2].
|
|
6284
6285
|
#
|
|
6285
6286
|
#
|
|
6286
6287
|
#
|
|
@@ -6509,8 +6510,8 @@ module Aws::CloudFormation
|
|
|
6509
6510
|
# *CloudFormation CLI User Guide*.
|
|
6510
6511
|
#
|
|
6511
6512
|
# You can have a maximum of 50 resource extension versions registered at
|
|
6512
|
-
# a time. This maximum is per account and per Region. Use
|
|
6513
|
-
#
|
|
6513
|
+
# a time. This maximum is per account and per Region. Use
|
|
6514
|
+
# [DeregisterType][2] to deregister specific extension versions if
|
|
6514
6515
|
# necessary.
|
|
6515
6516
|
#
|
|
6516
6517
|
# Once you have initiated a registration request using RegisterType, you
|
|
@@ -6518,7 +6519,7 @@ module Aws::CloudFormation
|
|
|
6518
6519
|
# registration request.
|
|
6519
6520
|
#
|
|
6520
6521
|
# Once you have registered a private extension in your account and
|
|
6521
|
-
# Region, use [
|
|
6522
|
+
# Region, use [SetTypeConfiguration][3] to specify configuration
|
|
6522
6523
|
# properties for the extension. For more information, see [Configuring
|
|
6523
6524
|
# extensions at the account level][4] in the *CloudFormation User
|
|
6524
6525
|
# Guide*.
|
|
@@ -6758,7 +6759,7 @@ module Aws::CloudFormation
|
|
|
6758
6759
|
# extension, in the given account and Region.
|
|
6759
6760
|
#
|
|
6760
6761
|
# To view the current configuration data for an extension, refer to the
|
|
6761
|
-
# `ConfigurationSchema` element of [
|
|
6762
|
+
# `ConfigurationSchema` element of [DescribeType][1]. For more
|
|
6762
6763
|
# information, see [Configuring extensions at the account level][2] in
|
|
6763
6764
|
# the *CloudFormation User Guide*.
|
|
6764
6765
|
#
|
|
@@ -6778,9 +6779,9 @@ module Aws::CloudFormation
|
|
|
6778
6779
|
# Region.
|
|
6779
6780
|
#
|
|
6780
6781
|
# For public extensions, this will be the ARN assigned when you call the
|
|
6781
|
-
# [
|
|
6782
|
-
# private extensions, this will be the ARN assigned when you call the
|
|
6783
|
-
#
|
|
6782
|
+
# [ActivateType][1] API operation in this account and Region. For
|
|
6783
|
+
# private extensions, this will be the ARN assigned when you call the
|
|
6784
|
+
# [RegisterType][2] API operation in this account and Region.
|
|
6784
6785
|
#
|
|
6785
6786
|
# Do not include the extension versions suffix at the end of the ARN.
|
|
6786
6787
|
# You can set the configuration for an extension, but not for a specific
|
|
@@ -6795,8 +6796,8 @@ module Aws::CloudFormation
|
|
|
6795
6796
|
# The configuration data for the extension, in this account and Region.
|
|
6796
6797
|
#
|
|
6797
6798
|
# The configuration data must be formatted as JSON, and validate against
|
|
6798
|
-
# the schema returned in the `ConfigurationSchema` response element of
|
|
6799
|
-
#
|
|
6799
|
+
# the schema returned in the `ConfigurationSchema` response element of
|
|
6800
|
+
# [DescribeType][1]. For more information, see [Defining account-level
|
|
6800
6801
|
# configuration data for an extension][2] in the *CloudFormation CLI
|
|
6801
6802
|
# User Guide*.
|
|
6802
6803
|
#
|
|
@@ -7054,11 +7055,11 @@ module Aws::CloudFormation
|
|
|
7054
7055
|
# version of the extension in your account and Region for testing.
|
|
7055
7056
|
#
|
|
7056
7057
|
# To perform testing, CloudFormation assumes the execution role
|
|
7057
|
-
# specified when the type was registered. For more information, see
|
|
7058
|
-
#
|
|
7058
|
+
# specified when the type was registered. For more information, see
|
|
7059
|
+
# [RegisterType][2].
|
|
7059
7060
|
#
|
|
7060
7061
|
# Once you've initiated testing on an extension using `TestType`, you
|
|
7061
|
-
# can pass the returned `TypeVersionArn` into [
|
|
7062
|
+
# can pass the returned `TypeVersionArn` into [DescribeType][3] to
|
|
7062
7063
|
# monitor the current test status and test status description for the
|
|
7063
7064
|
# extension.
|
|
7064
7065
|
#
|
|
@@ -7356,7 +7357,7 @@ module Aws::CloudFormation
|
|
|
7356
7357
|
#
|
|
7357
7358
|
# @option params [Array<Types::Parameter>] :parameters
|
|
7358
7359
|
# A list of `Parameter` structures that specify input parameters for the
|
|
7359
|
-
# stack. For more information, see the [
|
|
7360
|
+
# stack. For more information, see the [Parameter][1] data type.
|
|
7360
7361
|
#
|
|
7361
7362
|
#
|
|
7362
7363
|
#
|
|
@@ -7390,19 +7391,19 @@ module Aws::CloudFormation
|
|
|
7390
7391
|
# review all permissions associated with them and edit their
|
|
7391
7392
|
# permissions if necessary.
|
|
7392
7393
|
#
|
|
7393
|
-
# * [
|
|
7394
|
+
# * [ AWS::IAM::AccessKey][1]
|
|
7394
7395
|
#
|
|
7395
|
-
# * [
|
|
7396
|
+
# * [ AWS::IAM::Group][2]
|
|
7396
7397
|
#
|
|
7397
|
-
# * [
|
|
7398
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
7398
7399
|
#
|
|
7399
|
-
# * [
|
|
7400
|
+
# * [AWS::IAM::Policy][4]
|
|
7400
7401
|
#
|
|
7401
|
-
# * [
|
|
7402
|
+
# * [ AWS::IAM::Role][5]
|
|
7402
7403
|
#
|
|
7403
|
-
# * [
|
|
7404
|
+
# * [ AWS::IAM::User][6]
|
|
7404
7405
|
#
|
|
7405
|
-
# * [
|
|
7406
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
7406
7407
|
#
|
|
7407
7408
|
# For more information, see [Acknowledging IAM Resources in
|
|
7408
7409
|
# CloudFormation Templates][8].
|
|
@@ -7418,8 +7419,8 @@ module Aws::CloudFormation
|
|
|
7418
7419
|
# your stack template contains one or more macros, and you choose to
|
|
7419
7420
|
# update a stack directly from the processed template, without first
|
|
7420
7421
|
# reviewing the resulting changes in a change set, you must
|
|
7421
|
-
# acknowledge this capability. This includes the [
|
|
7422
|
-
#
|
|
7422
|
+
# acknowledge this capability. This includes the [AWS::Include][9] and
|
|
7423
|
+
# [AWS::Serverless][10] transforms, which are macros hosted by
|
|
7423
7424
|
# CloudFormation.
|
|
7424
7425
|
#
|
|
7425
7426
|
# If you want to update a stack from a stack template that contains
|
|
@@ -7631,20 +7632,20 @@ module Aws::CloudFormation
|
|
|
7631
7632
|
#
|
|
7632
7633
|
# You can only update stack instances in Amazon Web Services Regions and
|
|
7633
7634
|
# accounts where they already exist; to create additional stack
|
|
7634
|
-
# instances, use [
|
|
7635
|
+
# instances, use [CreateStackInstances][1].
|
|
7635
7636
|
#
|
|
7636
7637
|
# During stack set updates, any parameters overridden for a stack
|
|
7637
7638
|
# instance aren't updated, but retain their overridden value.
|
|
7638
7639
|
#
|
|
7639
7640
|
# You can only update the parameter *values* that are specified in the
|
|
7640
|
-
# stack set; to add or delete a parameter itself, use
|
|
7641
|
-
# ][2] to update the stack set template. If you add a
|
|
7642
|
-
# template, before you can override the parameter value
|
|
7643
|
-
# stack set you must first use [
|
|
7644
|
-
# stack instances with the updated template and parameter
|
|
7645
|
-
# specified in the stack set. Once a stack instance has been
|
|
7646
|
-
# with the new parameter, you can then override the parameter
|
|
7647
|
-
# using `UpdateStackInstances`.
|
|
7641
|
+
# stack set; to add or delete a parameter itself, use
|
|
7642
|
+
# [UpdateStackSet][2] to update the stack set template. If you add a
|
|
7643
|
+
# parameter to a template, before you can override the parameter value
|
|
7644
|
+
# specified in the stack set you must first use [UpdateStackSet][2] to
|
|
7645
|
+
# update all stack instances with the updated template and parameter
|
|
7646
|
+
# value specified in the stack set. Once a stack instance has been
|
|
7647
|
+
# updated with the new parameter, you can then override the parameter
|
|
7648
|
+
# value using `UpdateStackInstances`.
|
|
7648
7649
|
#
|
|
7649
7650
|
#
|
|
7650
7651
|
#
|
|
@@ -7710,11 +7711,11 @@ module Aws::CloudFormation
|
|
|
7710
7711
|
# stack set; to add or delete a parameter itself, use `UpdateStackSet`
|
|
7711
7712
|
# to update the stack set template. If you add a parameter to a
|
|
7712
7713
|
# template, before you can override the parameter value specified in the
|
|
7713
|
-
# stack set you must first use [
|
|
7714
|
-
#
|
|
7715
|
-
#
|
|
7716
|
-
#
|
|
7717
|
-
#
|
|
7714
|
+
# stack set you must first use [UpdateStackSet][1] to update all stack
|
|
7715
|
+
# instances with the updated template and parameter value specified in
|
|
7716
|
+
# the stack set. Once a stack instance has been updated with the new
|
|
7717
|
+
# parameter, you can then override the parameter value using
|
|
7718
|
+
# `UpdateStackInstances`.
|
|
7718
7719
|
#
|
|
7719
7720
|
#
|
|
7720
7721
|
#
|
|
@@ -7889,19 +7890,19 @@ module Aws::CloudFormation
|
|
|
7889
7890
|
# you review all permissions associated with them and edit their
|
|
7890
7891
|
# permissions if necessary.
|
|
7891
7892
|
#
|
|
7892
|
-
# * [
|
|
7893
|
+
# * [AWS::IAM::AccessKey][1]
|
|
7893
7894
|
#
|
|
7894
|
-
# * [
|
|
7895
|
+
# * [AWS::IAM::Group][2]
|
|
7895
7896
|
#
|
|
7896
|
-
# * [
|
|
7897
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
7897
7898
|
#
|
|
7898
|
-
# * [
|
|
7899
|
+
# * [AWS::IAM::Policy][4]
|
|
7899
7900
|
#
|
|
7900
|
-
# * [
|
|
7901
|
+
# * [AWS::IAM::Role][5]
|
|
7901
7902
|
#
|
|
7902
|
-
# * [
|
|
7903
|
+
# * [AWS::IAM::User][6]
|
|
7903
7904
|
#
|
|
7904
|
-
# * [
|
|
7905
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
7905
7906
|
#
|
|
7906
7907
|
# For more information, see [Acknowledging IAM Resources in
|
|
7907
7908
|
# CloudFormation Templates][8].
|
|
@@ -7917,11 +7918,12 @@ module Aws::CloudFormation
|
|
|
7917
7918
|
# Templates][9].
|
|
7918
7919
|
#
|
|
7919
7920
|
# Stack sets with service-managed permissions do not currently support
|
|
7920
|
-
# the use of macros in templates. (This includes the
|
|
7921
|
-
# ][10] and [
|
|
7922
|
-
# hosted by CloudFormation.) Even if you specify this
|
|
7923
|
-
# stack set with service-managed permissions, if you
|
|
7924
|
-
# in your template the stack set operation will
|
|
7921
|
+
# the use of macros in templates. (This includes the
|
|
7922
|
+
# [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
|
|
7923
|
+
# macros hosted by CloudFormation.) Even if you specify this
|
|
7924
|
+
# capability for a stack set with service-managed permissions, if you
|
|
7925
|
+
# reference a macro in your template the stack set operation will
|
|
7926
|
+
# fail.
|
|
7925
7927
|
#
|
|
7926
7928
|
#
|
|
7927
7929
|
#
|
|
@@ -8328,7 +8330,7 @@ module Aws::CloudFormation
|
|
|
8328
8330
|
params: params,
|
|
8329
8331
|
config: config)
|
|
8330
8332
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
8331
|
-
context[:gem_version] = '1.
|
|
8333
|
+
context[:gem_version] = '1.103.0'
|
|
8332
8334
|
Seahorse::Client::Request.new(handlers, context)
|
|
8333
8335
|
end
|
|
8334
8336
|
|
|
@@ -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
|
|
@@ -781,19 +781,19 @@ module Aws::CloudFormation
|
|
|
781
781
|
# you review all permissions associated with them and edit their
|
|
782
782
|
# permissions if necessary.
|
|
783
783
|
#
|
|
784
|
-
# * [
|
|
784
|
+
# * [ AWS::IAM::AccessKey][1]
|
|
785
785
|
#
|
|
786
|
-
# * [
|
|
786
|
+
# * [ AWS::IAM::Group][2]
|
|
787
787
|
#
|
|
788
|
-
# * [
|
|
788
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
789
789
|
#
|
|
790
|
-
# * [
|
|
790
|
+
# * [ AWS::IAM::Policy][4]
|
|
791
791
|
#
|
|
792
|
-
# * [
|
|
792
|
+
# * [ AWS::IAM::Role][5]
|
|
793
793
|
#
|
|
794
|
-
# * [
|
|
794
|
+
# * [ AWS::IAM::User][6]
|
|
795
795
|
#
|
|
796
|
-
# * [
|
|
796
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
797
797
|
#
|
|
798
798
|
# For more information, see [Acknowledging IAM resources in
|
|
799
799
|
# CloudFormation templates][8].
|
|
@@ -809,9 +809,9 @@ module Aws::CloudFormation
|
|
|
809
809
|
# your stack template contains one or more macros, and you choose to
|
|
810
810
|
# create a stack directly from the processed template, without first
|
|
811
811
|
# reviewing the resulting changes in a change set, you must
|
|
812
|
-
# acknowledge this capability. This includes the [
|
|
813
|
-
#
|
|
814
|
-
#
|
|
812
|
+
# acknowledge this capability. This includes the [AWS::Include][9]
|
|
813
|
+
# and [AWS::Serverless][10] transforms, which are macros hosted by
|
|
814
|
+
# CloudFormation.
|
|
815
815
|
#
|
|
816
816
|
# <note markdown="1"> This capacity doesn't apply to creating change sets, and
|
|
817
817
|
# specifying it when creating change sets has no effect.
|
|
@@ -957,8 +957,8 @@ module Aws::CloudFormation
|
|
|
957
957
|
# @!attribute [rw] on_stack_failure
|
|
958
958
|
# Determines what action will be taken if stack creation fails. If
|
|
959
959
|
# this parameter is specified, the `DisableRollback` parameter to the
|
|
960
|
-
# [
|
|
961
|
-
#
|
|
960
|
+
# [ExecuteChangeSet][1] API operation must not be specified. This must
|
|
961
|
+
# be one of these values:
|
|
962
962
|
#
|
|
963
963
|
# * `DELETE` - Deletes the change set if the stack creation fails.
|
|
964
964
|
# This is only valid when the `ChangeSetType` parameter is set to
|
|
@@ -967,11 +967,11 @@ module Aws::CloudFormation
|
|
|
967
967
|
#
|
|
968
968
|
# * `DO_NOTHING` - if the stack creation fails, do nothing. This is
|
|
969
969
|
# equivalent to specifying `true` for the `DisableRollback`
|
|
970
|
-
# parameter to the [
|
|
970
|
+
# parameter to the [ExecuteChangeSet][1] API operation.
|
|
971
971
|
#
|
|
972
972
|
# * `ROLLBACK` - if the stack creation fails, roll back the stack.
|
|
973
973
|
# This is equivalent to specifying `false` for the `DisableRollback`
|
|
974
|
-
# parameter to the [
|
|
974
|
+
# parameter to the [ExecuteChangeSet][1] API operation.
|
|
975
975
|
#
|
|
976
976
|
# For nested stacks, when the `OnStackFailure` parameter is set to
|
|
977
977
|
# `DELETE` for the change set for the parent stack, any failure in a
|
|
@@ -1135,8 +1135,7 @@ module Aws::CloudFormation
|
|
|
1135
1135
|
#
|
|
1136
1136
|
# @!attribute [rw] parameters
|
|
1137
1137
|
# A list of `Parameter` structures that specify input parameters for
|
|
1138
|
-
# the stack. For more information, see the [
|
|
1139
|
-
# type.
|
|
1138
|
+
# the stack. For more information, see the [Parameter][1] data type.
|
|
1140
1139
|
#
|
|
1141
1140
|
#
|
|
1142
1141
|
#
|
|
@@ -1198,19 +1197,19 @@ module Aws::CloudFormation
|
|
|
1198
1197
|
# you review all permissions associated with them and edit their
|
|
1199
1198
|
# permissions if necessary.
|
|
1200
1199
|
#
|
|
1201
|
-
# * [
|
|
1200
|
+
# * [AWS::IAM::AccessKey][1]
|
|
1202
1201
|
#
|
|
1203
|
-
# * [
|
|
1202
|
+
# * [AWS::IAM::Group][2]
|
|
1204
1203
|
#
|
|
1205
|
-
# * [
|
|
1204
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
1206
1205
|
#
|
|
1207
|
-
# * [
|
|
1206
|
+
# * [AWS::IAM::Policy][4]
|
|
1208
1207
|
#
|
|
1209
|
-
# * [
|
|
1208
|
+
# * [AWS::IAM::Role][5]
|
|
1210
1209
|
#
|
|
1211
|
-
# * [
|
|
1210
|
+
# * [AWS::IAM::User][6]
|
|
1212
1211
|
#
|
|
1213
|
-
# * [
|
|
1212
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
1214
1213
|
#
|
|
1215
1214
|
# For more information, see [Acknowledging IAM Resources in
|
|
1216
1215
|
# CloudFormation Templates][8].
|
|
@@ -1226,9 +1225,9 @@ module Aws::CloudFormation
|
|
|
1226
1225
|
# your stack template contains one or more macros, and you choose to
|
|
1227
1226
|
# create a stack directly from the processed template, without first
|
|
1228
1227
|
# reviewing the resulting changes in a change set, you must
|
|
1229
|
-
# acknowledge this capability. This includes the [
|
|
1230
|
-
#
|
|
1231
|
-
#
|
|
1228
|
+
# acknowledge this capability. This includes the [AWS::Include][9]
|
|
1229
|
+
# and [AWS::Serverless][10] transforms, which are macros hosted by
|
|
1230
|
+
# CloudFormation.
|
|
1232
1231
|
#
|
|
1233
1232
|
# If you want to create a stack from a stack template that contains
|
|
1234
1233
|
# macros *and* nested stacks, you must create the stack directly
|
|
@@ -1470,8 +1469,8 @@ module Aws::CloudFormation
|
|
|
1470
1469
|
# stack instance aren't updated, but retain their overridden value.
|
|
1471
1470
|
#
|
|
1472
1471
|
# You can only override the parameter *values* that are specified in
|
|
1473
|
-
# the stack set; to add or delete a parameter itself, use
|
|
1474
|
-
#
|
|
1472
|
+
# the stack set; to add or delete a parameter itself, use
|
|
1473
|
+
# [UpdateStackSet][1] to update the stack set template.
|
|
1475
1474
|
#
|
|
1476
1475
|
#
|
|
1477
1476
|
#
|
|
@@ -1648,19 +1647,19 @@ module Aws::CloudFormation
|
|
|
1648
1647
|
# you review all permissions associated with them and edit their
|
|
1649
1648
|
# permissions if necessary.
|
|
1650
1649
|
#
|
|
1651
|
-
# * [
|
|
1650
|
+
# * [AWS::IAM::AccessKey][1]
|
|
1652
1651
|
#
|
|
1653
|
-
# * [
|
|
1652
|
+
# * [AWS::IAM::Group][2]
|
|
1654
1653
|
#
|
|
1655
|
-
# * [
|
|
1654
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
1656
1655
|
#
|
|
1657
|
-
# * [
|
|
1656
|
+
# * [AWS::IAM::Policy][4]
|
|
1658
1657
|
#
|
|
1659
|
-
# * [
|
|
1658
|
+
# * [AWS::IAM::Role][5]
|
|
1660
1659
|
#
|
|
1661
|
-
# * [
|
|
1660
|
+
# * [AWS::IAM::User][6]
|
|
1662
1661
|
#
|
|
1663
|
-
# * [
|
|
1662
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
1664
1663
|
#
|
|
1665
1664
|
# For more information, see [Acknowledging IAM Resources in
|
|
1666
1665
|
# CloudFormation Templates][8].
|
|
@@ -1676,11 +1675,11 @@ module Aws::CloudFormation
|
|
|
1676
1675
|
# Processing on Templates][9].
|
|
1677
1676
|
#
|
|
1678
1677
|
# Stack sets with service-managed permissions don't currently
|
|
1679
|
-
# support the use of macros in templates. (This includes the
|
|
1680
|
-
#
|
|
1681
|
-
#
|
|
1682
|
-
#
|
|
1683
|
-
#
|
|
1678
|
+
# support the use of macros in templates. (This includes the
|
|
1679
|
+
# [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
|
|
1680
|
+
# macros hosted by CloudFormation.) Even if you specify this
|
|
1681
|
+
# capability for a stack set with service-managed permissions, if
|
|
1682
|
+
# you reference a macro in your template the stack set operation
|
|
1684
1683
|
# will fail.
|
|
1685
1684
|
#
|
|
1686
1685
|
#
|
|
@@ -2416,7 +2415,7 @@ module Aws::CloudFormation
|
|
|
2416
2415
|
# @!attribute [rw] parameters
|
|
2417
2416
|
# A list of `Parameter` structures that describes the input parameters
|
|
2418
2417
|
# and their values used to create the change set. For more
|
|
2419
|
-
# information, see the [
|
|
2418
|
+
# information, see the [Parameter][1] data type.
|
|
2420
2419
|
#
|
|
2421
2420
|
#
|
|
2422
2421
|
#
|
|
@@ -2495,8 +2494,8 @@ module Aws::CloudFormation
|
|
|
2495
2494
|
# @!attribute [rw] on_stack_failure
|
|
2496
2495
|
# Determines what action will be taken if stack creation fails. When
|
|
2497
2496
|
# this parameter is specified, the `DisableRollback` parameter to the
|
|
2498
|
-
# [
|
|
2499
|
-
#
|
|
2497
|
+
# [ExecuteChangeSet][1] API operation must not be specified. This must
|
|
2498
|
+
# be one of these values:
|
|
2500
2499
|
#
|
|
2501
2500
|
# * `DELETE` - Deletes the change set if the stack creation fails.
|
|
2502
2501
|
# This is only valid when the `ChangeSetType` parameter is set to
|
|
@@ -2505,11 +2504,11 @@ module Aws::CloudFormation
|
|
|
2505
2504
|
#
|
|
2506
2505
|
# * `DO_NOTHING` - if the stack creation fails, do nothing. This is
|
|
2507
2506
|
# equivalent to specifying `true` for the `DisableRollback`
|
|
2508
|
-
# parameter to the [
|
|
2507
|
+
# parameter to the [ExecuteChangeSet][1] API operation.
|
|
2509
2508
|
#
|
|
2510
2509
|
# * `ROLLBACK` - if the stack creation fails, roll back the stack.
|
|
2511
2510
|
# This is equivalent to specifying `false` for the `DisableRollback`
|
|
2512
|
-
# parameter to the [
|
|
2511
|
+
# parameter to the [ExecuteChangeSet][1] API operation.
|
|
2513
2512
|
#
|
|
2514
2513
|
#
|
|
2515
2514
|
#
|
|
@@ -3471,7 +3470,7 @@ module Aws::CloudFormation
|
|
|
3471
3470
|
#
|
|
3472
3471
|
# If the extension is a public third-party type you have activated
|
|
3473
3472
|
# with a type name alias, CloudFormation returns the type name alias.
|
|
3474
|
-
# For more information, see [
|
|
3473
|
+
# For more information, see [ActivateType][1].
|
|
3475
3474
|
#
|
|
3476
3475
|
#
|
|
3477
3476
|
#
|
|
@@ -3485,7 +3484,7 @@ module Aws::CloudFormation
|
|
|
3485
3484
|
# This applies only to private extensions you have registered in your
|
|
3486
3485
|
# account. For public extensions, both those provided by Amazon Web
|
|
3487
3486
|
# Services and published by third parties, CloudFormation returns
|
|
3488
|
-
# `null`. For more information, see [
|
|
3487
|
+
# `null`. For more information, see [RegisterType][1].
|
|
3489
3488
|
#
|
|
3490
3489
|
# To set the default version of an extension, use
|
|
3491
3490
|
# SetTypeDefaultVersion.
|
|
@@ -3604,7 +3603,7 @@ module Aws::CloudFormation
|
|
|
3604
3603
|
# This applies only to private extensions you have registered in your
|
|
3605
3604
|
# account. For public extensions, both those provided by Amazon Web
|
|
3606
3605
|
# Services and published by third parties, CloudFormation returns
|
|
3607
|
-
# `null`. For more information, see [
|
|
3606
|
+
# `null`. For more information, see [RegisterType][1].
|
|
3608
3607
|
#
|
|
3609
3608
|
#
|
|
3610
3609
|
#
|
|
@@ -3620,8 +3619,8 @@ module Aws::CloudFormation
|
|
|
3620
3619
|
# @!attribute [rw] execution_role_arn
|
|
3621
3620
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
|
3622
3621
|
# register the extension. This applies only to private extensions you
|
|
3623
|
-
# have registered in your account. For more information, see
|
|
3624
|
-
#
|
|
3622
|
+
# have registered in your account. For more information, see
|
|
3623
|
+
# [RegisterType][1].
|
|
3625
3624
|
#
|
|
3626
3625
|
# If the registered extension calls any Amazon Web Services APIs, you
|
|
3627
3626
|
# must create an <i> <a
|
|
@@ -3664,11 +3663,11 @@ module Aws::CloudFormation
|
|
|
3664
3663
|
# only to:
|
|
3665
3664
|
#
|
|
3666
3665
|
# * Private extensions you have registered in your account. For more
|
|
3667
|
-
# information, see [
|
|
3666
|
+
# information, see [RegisterType][1].
|
|
3668
3667
|
#
|
|
3669
3668
|
# * Public extensions you have activated in your account with
|
|
3670
|
-
# auto-update specified. For more information, see
|
|
3671
|
-
# ][2].
|
|
3669
|
+
# auto-update specified. For more information, see
|
|
3670
|
+
# [ActivateType][2].
|
|
3672
3671
|
#
|
|
3673
3672
|
#
|
|
3674
3673
|
#
|
|
@@ -3685,8 +3684,8 @@ module Aws::CloudFormation
|
|
|
3685
3684
|
# A JSON string that represent the current configuration data for the
|
|
3686
3685
|
# extension in this account and Region.
|
|
3687
3686
|
#
|
|
3688
|
-
# To set the configuration data for an extension, use
|
|
3689
|
-
#
|
|
3687
|
+
# To set the configuration data for an extension, use
|
|
3688
|
+
# [SetTypeConfiguration][1]. For more information, see [Configuring
|
|
3690
3689
|
# extensions at the account level][2] in the *CloudFormation User
|
|
3691
3690
|
# Guide*.
|
|
3692
3691
|
#
|
|
@@ -4068,16 +4067,16 @@ module Aws::CloudFormation
|
|
|
4068
4067
|
# @!attribute [rw] disable_rollback
|
|
4069
4068
|
# Preserves the state of previously provisioned resources when an
|
|
4070
4069
|
# operation fails. This parameter can't be specified when the
|
|
4071
|
-
# `OnStackFailure` parameter to the [
|
|
4072
|
-
#
|
|
4070
|
+
# `OnStackFailure` parameter to the [CreateChangeSet][1] API operation
|
|
4071
|
+
# was specified.
|
|
4073
4072
|
#
|
|
4074
4073
|
# * `True` - if the stack creation fails, do nothing. This is
|
|
4075
4074
|
# equivalent to specifying `DO_NOTHING` for the `OnStackFailure`
|
|
4076
|
-
# parameter to the [
|
|
4075
|
+
# parameter to the [CreateChangeSet][1] API operation.
|
|
4077
4076
|
#
|
|
4078
4077
|
# * `False` - if the stack creation fails, roll back the stack. This
|
|
4079
4078
|
# is equivalent to specifying `ROLLBACK` for the `OnStackFailure`
|
|
4080
|
-
# parameter to the [
|
|
4079
|
+
# parameter to the [CreateChangeSet][1] API operation.
|
|
4081
4080
|
#
|
|
4082
4081
|
# Default: `True`
|
|
4083
4082
|
#
|
|
@@ -5243,9 +5242,9 @@ module Aws::CloudFormation
|
|
|
5243
5242
|
# @!attribute [rw] next_token
|
|
5244
5243
|
# If the request doesn't return all the remaining results,
|
|
5245
5244
|
# `NextToken` is set to a token. To retrieve the next set of results,
|
|
5246
|
-
# call [
|
|
5247
|
-
#
|
|
5248
|
-
#
|
|
5245
|
+
# call [ListStackSetAutoDeploymentTargets][1] again and use that value
|
|
5246
|
+
# for the `NextToken` parameter. If the request returns all results,
|
|
5247
|
+
# `NextToken` is set to an empty string.
|
|
5249
5248
|
#
|
|
5250
5249
|
#
|
|
5251
5250
|
#
|
|
@@ -7084,8 +7083,8 @@ module Aws::CloudFormation
|
|
|
7084
7083
|
# triggers, CloudFormation still waits the specified period of time
|
|
7085
7084
|
# before cleaning up old resources after update operations. You can
|
|
7086
7085
|
# use this monitoring period to perform any manual stack validation
|
|
7087
|
-
# desired, and manually cancel the stack creation or update (using
|
|
7088
|
-
#
|
|
7086
|
+
# desired, and manually cancel the stack creation or update (using
|
|
7087
|
+
# [CancelUpdateStack][1], for example) as necessary.
|
|
7089
7088
|
#
|
|
7090
7089
|
# If you specify 0 for this parameter, CloudFormation still monitors
|
|
7091
7090
|
# the specified rollback triggers during stack creation and update
|
|
@@ -7164,9 +7163,9 @@ module Aws::CloudFormation
|
|
|
7164
7163
|
# @return [String]
|
|
7165
7164
|
#
|
|
7166
7165
|
# @!attribute [rw] type
|
|
7167
|
-
# The resource type of the rollback trigger. Specify either
|
|
7168
|
-
#
|
|
7169
|
-
#
|
|
7166
|
+
# The resource type of the rollback trigger. Specify either
|
|
7167
|
+
# [AWS::CloudWatch::Alarm][1] or [AWS::CloudWatch::CompositeAlarm][2]
|
|
7168
|
+
# resource types.
|
|
7170
7169
|
#
|
|
7171
7170
|
#
|
|
7172
7171
|
#
|
|
@@ -7308,9 +7307,9 @@ module Aws::CloudFormation
|
|
|
7308
7307
|
# and Region.
|
|
7309
7308
|
#
|
|
7310
7309
|
# For public extensions, this will be the ARN assigned when you call
|
|
7311
|
-
# the [
|
|
7312
|
-
#
|
|
7313
|
-
#
|
|
7310
|
+
# the [ActivateType][1] API operation in this account and Region. For
|
|
7311
|
+
# private extensions, this will be the ARN assigned when you call the
|
|
7312
|
+
# [RegisterType][2] API operation in this account and Region.
|
|
7314
7313
|
#
|
|
7315
7314
|
# Do not include the extension versions suffix at the end of the ARN.
|
|
7316
7315
|
# You can set the configuration for an extension, but not for a
|
|
@@ -7328,9 +7327,9 @@ module Aws::CloudFormation
|
|
|
7328
7327
|
#
|
|
7329
7328
|
# The configuration data must be formatted as JSON, and validate
|
|
7330
7329
|
# against the schema returned in the `ConfigurationSchema` response
|
|
7331
|
-
# element of [
|
|
7332
|
-
#
|
|
7333
|
-
#
|
|
7330
|
+
# element of [DescribeType][1]. For more information, see [Defining
|
|
7331
|
+
# account-level configuration data for an extension][2] in the
|
|
7332
|
+
# *CloudFormation CLI User Guide*.
|
|
7334
7333
|
#
|
|
7335
7334
|
#
|
|
7336
7335
|
#
|
|
@@ -7945,8 +7944,8 @@ module Aws::CloudFormation
|
|
|
7945
7944
|
#
|
|
7946
7945
|
# @!attribute [rw] organizational_unit_id
|
|
7947
7946
|
# \[Service-managed permissions\] The organization root ID or
|
|
7948
|
-
# organizational unit (OU) IDs that you specified for
|
|
7949
|
-
#
|
|
7947
|
+
# organizational unit (OU) IDs that you specified for
|
|
7948
|
+
# [DeploymentTargets][1].
|
|
7950
7949
|
#
|
|
7951
7950
|
#
|
|
7952
7951
|
#
|
|
@@ -8213,8 +8212,8 @@ module Aws::CloudFormation
|
|
|
8213
8212
|
#
|
|
8214
8213
|
# @!attribute [rw] organizational_unit_id
|
|
8215
8214
|
# \[Service-managed permissions\] The organization root ID or
|
|
8216
|
-
# organizational unit (OU) IDs that you specified for
|
|
8217
|
-
#
|
|
8215
|
+
# organizational unit (OU) IDs that you specified for
|
|
8216
|
+
# [DeploymentTargets][1].
|
|
8218
8217
|
#
|
|
8219
8218
|
#
|
|
8220
8219
|
#
|
|
@@ -8829,8 +8828,8 @@ module Aws::CloudFormation
|
|
|
8829
8828
|
#
|
|
8830
8829
|
# @!attribute [rw] organizational_unit_ids
|
|
8831
8830
|
# \[Service-managed permissions\] The organization root ID or
|
|
8832
|
-
# organizational unit (OU) IDs that you specified for
|
|
8833
|
-
#
|
|
8831
|
+
# organizational unit (OU) IDs that you specified for
|
|
8832
|
+
# [DeploymentTargets][1].
|
|
8834
8833
|
#
|
|
8835
8834
|
#
|
|
8836
8835
|
#
|
|
@@ -8872,8 +8871,8 @@ module Aws::CloudFormation
|
|
|
8872
8871
|
include Aws::Structure
|
|
8873
8872
|
end
|
|
8874
8873
|
|
|
8875
|
-
# One of the targets for the stack set. Returned by the
|
|
8876
|
-
#
|
|
8874
|
+
# One of the targets for the stack set. Returned by the
|
|
8875
|
+
# [ListStackSetAutoDeploymentTargets][1] API operation.
|
|
8877
8876
|
#
|
|
8878
8877
|
#
|
|
8879
8878
|
#
|
|
@@ -9350,8 +9349,8 @@ module Aws::CloudFormation
|
|
|
9350
9349
|
#
|
|
9351
9350
|
# @!attribute [rw] organizational_unit_id
|
|
9352
9351
|
# \[Service-managed permissions\] The organization root ID or
|
|
9353
|
-
# organizational unit (OU) IDs that you specified for
|
|
9354
|
-
#
|
|
9352
|
+
# organizational unit (OU) IDs that you specified for
|
|
9353
|
+
# [DeploymentTargets][1].
|
|
9355
9354
|
#
|
|
9356
9355
|
#
|
|
9357
9356
|
#
|
|
@@ -9787,7 +9786,7 @@ module Aws::CloudFormation
|
|
|
9787
9786
|
#
|
|
9788
9787
|
# * `RETAIN` - retain all resources when the stack is deleted.
|
|
9789
9788
|
#
|
|
9790
|
-
# For more information, see [
|
|
9789
|
+
# For more information, see [DeletionPolicy attribute][1] in the
|
|
9791
9790
|
# *CloudFormation User Guide*.
|
|
9792
9791
|
#
|
|
9793
9792
|
#
|
|
@@ -9805,8 +9804,8 @@ module Aws::CloudFormation
|
|
|
9805
9804
|
# * `RETAIN` - retain all resources when the resource is replaced
|
|
9806
9805
|
# during an update operation.
|
|
9807
9806
|
#
|
|
9808
|
-
# For more information, see [
|
|
9809
|
-
#
|
|
9807
|
+
# For more information, see [UpdateReplacePolicy attribute][1] in the
|
|
9808
|
+
# *CloudFormation User Guide*.
|
|
9810
9809
|
#
|
|
9811
9810
|
#
|
|
9812
9811
|
#
|
|
@@ -10089,9 +10088,9 @@ module Aws::CloudFormation
|
|
|
10089
10088
|
# and Region.
|
|
10090
10089
|
#
|
|
10091
10090
|
# For public extensions, this will be the ARN assigned when you call
|
|
10092
|
-
# the [
|
|
10093
|
-
#
|
|
10094
|
-
#
|
|
10091
|
+
# the [ActivateType][1] API operation in this account and Region. For
|
|
10092
|
+
# private extensions, this will be the ARN assigned when you call the
|
|
10093
|
+
# [RegisterType][2] API operation in this account and Region.
|
|
10095
10094
|
#
|
|
10096
10095
|
#
|
|
10097
10096
|
#
|
|
@@ -10130,9 +10129,9 @@ module Aws::CloudFormation
|
|
|
10130
10129
|
# and Region.
|
|
10131
10130
|
#
|
|
10132
10131
|
# For public extensions, this will be the ARN assigned when you call
|
|
10133
|
-
# the [
|
|
10134
|
-
#
|
|
10135
|
-
#
|
|
10132
|
+
# the [ActivateType][1] API operation in this account and Region. For
|
|
10133
|
+
# private extensions, this will be the ARN assigned when you call the
|
|
10134
|
+
# [RegisterType][2] API operation in this account and Region.
|
|
10136
10135
|
#
|
|
10137
10136
|
#
|
|
10138
10137
|
#
|
|
@@ -10236,8 +10235,8 @@ module Aws::CloudFormation
|
|
|
10236
10235
|
# @!attribute [rw] type_name
|
|
10237
10236
|
# The name of the extension.
|
|
10238
10237
|
#
|
|
10239
|
-
# If you specified a `TypeNameAlias` when you call the
|
|
10240
|
-
#
|
|
10238
|
+
# If you specified a `TypeNameAlias` when you call the
|
|
10239
|
+
# [ActivateType][1] API operation in your account and Region,
|
|
10241
10240
|
# CloudFormation considers that alias as the type name.
|
|
10242
10241
|
#
|
|
10243
10242
|
#
|
|
@@ -10252,7 +10251,7 @@ module Aws::CloudFormation
|
|
|
10252
10251
|
# This applies only to private extensions you have registered in your
|
|
10253
10252
|
# account. For public extensions, both those provided by Amazon and
|
|
10254
10253
|
# published by third parties, CloudFormation returns `null`. For more
|
|
10255
|
-
# information, see [
|
|
10254
|
+
# information, see [RegisterType][1].
|
|
10256
10255
|
#
|
|
10257
10256
|
# To set the default version of an extension, use
|
|
10258
10257
|
# SetTypeDefaultVersion.
|
|
@@ -10271,11 +10270,11 @@ module Aws::CloudFormation
|
|
|
10271
10270
|
# only to:
|
|
10272
10271
|
#
|
|
10273
10272
|
# * Private extensions you have registered in your account. For more
|
|
10274
|
-
# information, see [
|
|
10273
|
+
# information, see [RegisterType][1].
|
|
10275
10274
|
#
|
|
10276
10275
|
# * Public extensions you have activated in your account with
|
|
10277
|
-
# auto-update specified. For more information, see
|
|
10278
|
-
# ][2].
|
|
10276
|
+
# auto-update specified. For more information, see
|
|
10277
|
+
# [ActivateType][2].
|
|
10279
10278
|
#
|
|
10280
10279
|
# For all other extension types, CloudFormation returns `null`.
|
|
10281
10280
|
#
|
|
@@ -10591,8 +10590,7 @@ module Aws::CloudFormation
|
|
|
10591
10590
|
#
|
|
10592
10591
|
# @!attribute [rw] parameters
|
|
10593
10592
|
# A list of `Parameter` structures that specify input parameters for
|
|
10594
|
-
# the stack. For more information, see the [
|
|
10595
|
-
# type.
|
|
10593
|
+
# the stack. For more information, see the [Parameter][1] data type.
|
|
10596
10594
|
#
|
|
10597
10595
|
#
|
|
10598
10596
|
#
|
|
@@ -10627,19 +10625,19 @@ module Aws::CloudFormation
|
|
|
10627
10625
|
# you review all permissions associated with them and edit their
|
|
10628
10626
|
# permissions if necessary.
|
|
10629
10627
|
#
|
|
10630
|
-
# * [
|
|
10628
|
+
# * [ AWS::IAM::AccessKey][1]
|
|
10631
10629
|
#
|
|
10632
|
-
# * [
|
|
10630
|
+
# * [ AWS::IAM::Group][2]
|
|
10633
10631
|
#
|
|
10634
|
-
# * [
|
|
10632
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
10635
10633
|
#
|
|
10636
|
-
# * [
|
|
10634
|
+
# * [AWS::IAM::Policy][4]
|
|
10637
10635
|
#
|
|
10638
|
-
# * [
|
|
10636
|
+
# * [ AWS::IAM::Role][5]
|
|
10639
10637
|
#
|
|
10640
|
-
# * [
|
|
10638
|
+
# * [ AWS::IAM::User][6]
|
|
10641
10639
|
#
|
|
10642
|
-
# * [
|
|
10640
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
10643
10641
|
#
|
|
10644
10642
|
# For more information, see [Acknowledging IAM Resources in
|
|
10645
10643
|
# CloudFormation Templates][8].
|
|
@@ -10655,9 +10653,9 @@ module Aws::CloudFormation
|
|
|
10655
10653
|
# your stack template contains one or more macros, and you choose to
|
|
10656
10654
|
# update a stack directly from the processed template, without first
|
|
10657
10655
|
# reviewing the resulting changes in a change set, you must
|
|
10658
|
-
# acknowledge this capability. This includes the [
|
|
10659
|
-
#
|
|
10660
|
-
#
|
|
10656
|
+
# acknowledge this capability. This includes the [AWS::Include][9]
|
|
10657
|
+
# and [AWS::Serverless][10] transforms, which are macros hosted by
|
|
10658
|
+
# CloudFormation.
|
|
10661
10659
|
#
|
|
10662
10660
|
# If you want to update a stack from a stack template that contains
|
|
10663
10661
|
# macros *and* nested stacks, you must update the stack directly
|
|
@@ -10904,11 +10902,11 @@ module Aws::CloudFormation
|
|
|
10904
10902
|
# the stack set; to add or delete a parameter itself, use
|
|
10905
10903
|
# `UpdateStackSet` to update the stack set template. If you add a
|
|
10906
10904
|
# parameter to a template, before you can override the parameter value
|
|
10907
|
-
# specified in the stack set you must first use [
|
|
10908
|
-
#
|
|
10909
|
-
#
|
|
10910
|
-
#
|
|
10911
|
-
#
|
|
10905
|
+
# specified in the stack set you must first use [UpdateStackSet][1] to
|
|
10906
|
+
# update all stack instances with the updated template and parameter
|
|
10907
|
+
# value specified in the stack set. Once a stack instance has been
|
|
10908
|
+
# updated with the new parameter, you can then override the parameter
|
|
10909
|
+
# value using `UpdateStackInstances`.
|
|
10912
10910
|
#
|
|
10913
10911
|
#
|
|
10914
10912
|
#
|
|
@@ -11080,19 +11078,19 @@ module Aws::CloudFormation
|
|
|
11080
11078
|
# you review all permissions associated with them and edit their
|
|
11081
11079
|
# permissions if necessary.
|
|
11082
11080
|
#
|
|
11083
|
-
# * [
|
|
11081
|
+
# * [AWS::IAM::AccessKey][1]
|
|
11084
11082
|
#
|
|
11085
|
-
# * [
|
|
11083
|
+
# * [AWS::IAM::Group][2]
|
|
11086
11084
|
#
|
|
11087
|
-
# * [
|
|
11085
|
+
# * [AWS::IAM::InstanceProfile][3]
|
|
11088
11086
|
#
|
|
11089
|
-
# * [
|
|
11087
|
+
# * [AWS::IAM::Policy][4]
|
|
11090
11088
|
#
|
|
11091
|
-
# * [
|
|
11089
|
+
# * [AWS::IAM::Role][5]
|
|
11092
11090
|
#
|
|
11093
|
-
# * [
|
|
11091
|
+
# * [AWS::IAM::User][6]
|
|
11094
11092
|
#
|
|
11095
|
-
# * [
|
|
11093
|
+
# * [AWS::IAM::UserToGroupAddition][7]
|
|
11096
11094
|
#
|
|
11097
11095
|
# For more information, see [Acknowledging IAM Resources in
|
|
11098
11096
|
# CloudFormation Templates][8].
|
|
@@ -11108,11 +11106,11 @@ module Aws::CloudFormation
|
|
|
11108
11106
|
# Processing on Templates][9].
|
|
11109
11107
|
#
|
|
11110
11108
|
# Stack sets with service-managed permissions do not currently
|
|
11111
|
-
# support the use of macros in templates. (This includes the
|
|
11112
|
-
#
|
|
11113
|
-
#
|
|
11114
|
-
#
|
|
11115
|
-
#
|
|
11109
|
+
# support the use of macros in templates. (This includes the
|
|
11110
|
+
# [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
|
|
11111
|
+
# macros hosted by CloudFormation.) Even if you specify this
|
|
11112
|
+
# capability for a stack set with service-managed permissions, if
|
|
11113
|
+
# you reference a macro in your template the stack set operation
|
|
11116
11114
|
# will fail.
|
|
11117
11115
|
#
|
|
11118
11116
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudformation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.103.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|