aws-sdk-cloudformation 1.120.0 → 1.121.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 +241 -306
- data/lib/aws-sdk-cloudformation/event.rb +6 -4
- data/lib/aws-sdk-cloudformation/resource.rb +35 -46
- data/lib/aws-sdk-cloudformation/stack.rb +78 -102
- data/lib/aws-sdk-cloudformation/stack_resource.rb +6 -5
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +5 -4
- data/lib/aws-sdk-cloudformation/types.rb +312 -407
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +2 -2
@@ -463,20 +463,16 @@ module Aws::CloudFormation
|
|
463
463
|
end
|
464
464
|
|
465
465
|
# Activates a public third-party extension, making it available for use
|
466
|
-
# in stack templates.
|
467
|
-
#
|
468
|
-
#
|
469
|
-
#
|
470
|
-
#
|
471
|
-
# properties for the extension. For more information, see [Configuring
|
472
|
-
# extensions at the account level][3] in the *CloudFormation User
|
473
|
-
# Guide*.
|
466
|
+
# in stack templates. Once you have activated a public third-party
|
467
|
+
# extension in your account and Region, use [SetTypeConfiguration][1] to
|
468
|
+
# specify configuration properties for the extension. For more
|
469
|
+
# information, see [Using public extensions][2] in the *CloudFormation
|
470
|
+
# User Guide*.
|
474
471
|
#
|
475
472
|
#
|
476
473
|
#
|
477
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
478
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
479
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-private.html#registry-set-configuration
|
474
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html
|
475
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html
|
480
476
|
#
|
481
477
|
# @option params [String] :type
|
482
478
|
# The extension type.
|
@@ -585,12 +581,12 @@ module Aws::CloudFormation
|
|
585
581
|
# extensions, from the CloudFormation registry for the account and
|
586
582
|
# Region.
|
587
583
|
#
|
588
|
-
# For more information, see [
|
589
|
-
#
|
584
|
+
# For more information, see [Edit configuration data for extensions in
|
585
|
+
# your account][1] in the *CloudFormation User Guide*.
|
590
586
|
#
|
591
587
|
#
|
592
588
|
#
|
593
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-
|
589
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html
|
594
590
|
#
|
595
591
|
# @option params [required, Array<Types::TypeConfigurationIdentifier>] :type_configuration_identifiers
|
596
592
|
# The list of identifiers for the desired extension configurations.
|
@@ -700,7 +696,7 @@ module Aws::CloudFormation
|
|
700
696
|
|
701
697
|
# For a specified stack that's in the `UPDATE_ROLLBACK_FAILED` state,
|
702
698
|
# continues rolling it back to the `UPDATE_ROLLBACK_COMPLETE` state.
|
703
|
-
# Depending on the cause of the failure, you can manually [
|
699
|
+
# Depending on the cause of the failure, you can manually [fix the
|
704
700
|
# error][1] and continue the rollback. By continuing the rollback, you
|
705
701
|
# can return your stack to a working state (the
|
706
702
|
# `UPDATE_ROLLBACK_COMPLETE` state), and then try to update the stack
|
@@ -730,13 +726,13 @@ module Aws::CloudFormation
|
|
730
726
|
# </note>
|
731
727
|
#
|
732
728
|
# @option params [String] :role_arn
|
733
|
-
# The Amazon Resource Name (ARN) of an
|
734
|
-
#
|
735
|
-
#
|
736
|
-
#
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
729
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
730
|
+
# assumes to roll back the stack. CloudFormation uses the role's
|
731
|
+
# credentials to make calls on your behalf. CloudFormation always uses
|
732
|
+
# this role for all future operations on the stack. Provided that users
|
733
|
+
# have permission to operate on the stack, CloudFormation uses this role
|
734
|
+
# even if the users don't have permission to pass it. Ensure that the
|
735
|
+
# role grants least permission.
|
740
736
|
#
|
741
737
|
# If you don't specify a value, CloudFormation uses the role that was
|
742
738
|
# previously associated with the stack. If no role is available,
|
@@ -777,8 +773,8 @@ module Aws::CloudFormation
|
|
777
773
|
#
|
778
774
|
# <note markdown="1"> Don't confuse a child stack's name with its corresponding logical ID
|
779
775
|
# defined in the parent stack. For an example of a continue update
|
780
|
-
# rollback operation with nested stacks, see [
|
781
|
-
#
|
776
|
+
# rollback operation with nested stacks, see [Continue rolling back from
|
777
|
+
# failed nested stack updates][2].
|
782
778
|
#
|
783
779
|
# </note>
|
784
780
|
#
|
@@ -883,9 +879,8 @@ module Aws::CloudFormation
|
|
883
879
|
#
|
884
880
|
# Some stack templates might include resources that can affect
|
885
881
|
# permissions in your Amazon Web Services account; for example, by
|
886
|
-
# creating new
|
887
|
-
#
|
888
|
-
# these capabilities.
|
882
|
+
# creating new IAM users. For those stacks, you must explicitly
|
883
|
+
# acknowledge this by specifying one of these capabilities.
|
889
884
|
#
|
890
885
|
# The following IAM resources require you to specify either the
|
891
886
|
# `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
|
@@ -944,8 +939,8 @@ module Aws::CloudFormation
|
|
944
939
|
#
|
945
940
|
# </note>
|
946
941
|
#
|
947
|
-
# For more information about macros, see [
|
948
|
-
#
|
942
|
+
# For more information about macros, see [Perform custom processing on
|
943
|
+
# CloudFormation templates with template macros][11].
|
949
944
|
#
|
950
945
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
951
946
|
# specified.
|
@@ -954,14 +949,14 @@ module Aws::CloudFormation
|
|
954
949
|
#
|
955
950
|
#
|
956
951
|
#
|
957
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
958
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
952
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
953
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
959
954
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
960
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
955
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
961
956
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
962
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
963
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
964
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
957
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
958
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
959
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#using-iam-capabilities
|
965
960
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
966
961
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
967
962
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
@@ -973,11 +968,10 @@ module Aws::CloudFormation
|
|
973
968
|
#
|
974
969
|
# If the list of resource types doesn't include a resource type that
|
975
970
|
# you're updating, the stack update fails. By default, CloudFormation
|
976
|
-
# grants permissions to all resource types.
|
977
|
-
#
|
978
|
-
#
|
979
|
-
#
|
980
|
-
# User Guide*.
|
971
|
+
# grants permissions to all resource types. IAM uses this parameter for
|
972
|
+
# condition keys in IAM policies for CloudFormation. For more
|
973
|
+
# information, see [Control access with Identity and Access
|
974
|
+
# Management][1] in the *CloudFormation User Guide*.
|
981
975
|
#
|
982
976
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
983
977
|
# specified.
|
@@ -989,13 +983,13 @@ module Aws::CloudFormation
|
|
989
983
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
990
984
|
#
|
991
985
|
# @option params [String] :role_arn
|
992
|
-
# The Amazon Resource Name (ARN) of an
|
993
|
-
#
|
994
|
-
#
|
995
|
-
#
|
996
|
-
#
|
997
|
-
#
|
998
|
-
#
|
986
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
987
|
+
# assumes when executing the change set. CloudFormation uses the role's
|
988
|
+
# credentials to make calls on your behalf. CloudFormation uses this
|
989
|
+
# role for all future operations on the stack. Provided that users have
|
990
|
+
# permission to operate on the stack, CloudFormation uses this role even
|
991
|
+
# if the users don't have permission to pass it. Ensure that the role
|
992
|
+
# grants least permission.
|
999
993
|
#
|
1000
994
|
# If you don't specify a value, CloudFormation uses the role that was
|
1001
995
|
# previously associated with the stack. If no role is available,
|
@@ -1008,9 +1002,9 @@ module Aws::CloudFormation
|
|
1008
1002
|
# period afterwards.
|
1009
1003
|
#
|
1010
1004
|
# @option params [Array<String>] :notification_arns
|
1011
|
-
# The Amazon Resource Names (ARNs) of Amazon
|
1012
|
-
#
|
1013
|
-
#
|
1005
|
+
# The Amazon Resource Names (ARNs) of Amazon SNS topics that
|
1006
|
+
# CloudFormation associates with the stack. To remove all associated
|
1007
|
+
# notification topics, specify an empty list.
|
1014
1008
|
#
|
1015
1009
|
# @option params [Array<Types::Tag>] :tags
|
1016
1010
|
# Key-value pairs to associate with this stack. CloudFormation also
|
@@ -1043,17 +1037,13 @@ module Aws::CloudFormation
|
|
1043
1037
|
#
|
1044
1038
|
# If you create a change set for a new stack, CloudFormation creates a
|
1045
1039
|
# stack with a unique stack ID, but no template or resources. The stack
|
1046
|
-
# will be in the
|
1047
|
-
#
|
1040
|
+
# will be in the `REVIEW_IN_PROGRESS` state until you execute the change
|
1041
|
+
# set.
|
1048
1042
|
#
|
1049
1043
|
# By default, CloudFormation specifies `UPDATE`. You can't use the
|
1050
1044
|
# `UPDATE` type to create a change set for a new stack or the `CREATE`
|
1051
1045
|
# type to create a change set for an existing stack.
|
1052
1046
|
#
|
1053
|
-
#
|
1054
|
-
#
|
1055
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html#d0e11995
|
1056
|
-
#
|
1057
1047
|
# @option params [Array<Types::ResourceToImport>] :resources_to_import
|
1058
1048
|
# The resources to import into your stack.
|
1059
1049
|
#
|
@@ -1097,8 +1087,9 @@ module Aws::CloudFormation
|
|
1097
1087
|
# templates. For more information, see [name type][1] in the
|
1098
1088
|
# *CloudFormation User Guide*. To import resources that do not accept
|
1099
1089
|
# custom names, such as EC2 instances, use the resource import feature
|
1100
|
-
# instead. For more information, see [
|
1101
|
-
# CloudFormation
|
1090
|
+
# instead. For more information, see [Import Amazon Web Services
|
1091
|
+
# resources into a CloudFormation stack with a resource import][2] in
|
1092
|
+
# the *CloudFormation User Guide*.
|
1102
1093
|
#
|
1103
1094
|
# </note>
|
1104
1095
|
#
|
@@ -1270,6 +1261,14 @@ module Aws::CloudFormation
|
|
1270
1261
|
# successfully, the stack creation starts. You can check the status of
|
1271
1262
|
# the stack through the DescribeStacks operation.
|
1272
1263
|
#
|
1264
|
+
# For more information about creating a stack and monitoring stack
|
1265
|
+
# progress, see [Managing Amazon Web Services resources as a single unit
|
1266
|
+
# with CloudFormation stacks][1] in the *CloudFormation User Guide*.
|
1267
|
+
#
|
1268
|
+
#
|
1269
|
+
#
|
1270
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
|
1271
|
+
#
|
1273
1272
|
# @option params [required, String] :stack_name
|
1274
1273
|
# The name that's associated with the stack. The name must be unique in
|
1275
1274
|
# the Region in which you are creating the stack.
|
@@ -1282,30 +1281,20 @@ module Aws::CloudFormation
|
|
1282
1281
|
#
|
1283
1282
|
# @option params [String] :template_body
|
1284
1283
|
# Structure containing the template body with a minimum length of 1 byte
|
1285
|
-
# and a maximum length of 51,200 bytes.
|
1286
|
-
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
1284
|
+
# and a maximum length of 51,200 bytes.
|
1287
1285
|
#
|
1288
1286
|
# Conditional: You must specify either the `TemplateBody` or the
|
1289
1287
|
# `TemplateURL` parameter, but not both.
|
1290
1288
|
#
|
1291
|
-
#
|
1292
|
-
#
|
1293
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1294
|
-
#
|
1295
1289
|
# @option params [String] :template_url
|
1296
1290
|
# Location of file containing the template body. The URL must point to a
|
1297
1291
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
1298
|
-
# bucket or a Systems Manager document.
|
1299
|
-
#
|
1300
|
-
# for an Amazon S3 bucket must start with `https://`.
|
1292
|
+
# bucket or a Systems Manager document. The location for an Amazon S3
|
1293
|
+
# bucket must start with `https://`.
|
1301
1294
|
#
|
1302
1295
|
# Conditional: You must specify either the `TemplateBody` or the
|
1303
1296
|
# `TemplateURL` parameter, but not both.
|
1304
1297
|
#
|
1305
|
-
#
|
1306
|
-
#
|
1307
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1308
|
-
#
|
1309
1298
|
# @option params [Array<Types::Parameter>] :parameters
|
1310
1299
|
# A list of `Parameter` structures that specify input parameters for the
|
1311
1300
|
# stack. For more information, see the [Parameter][1] data type.
|
@@ -1332,9 +1321,9 @@ module Aws::CloudFormation
|
|
1332
1321
|
# the stack will be rolled back.
|
1333
1322
|
#
|
1334
1323
|
# @option params [Array<String>] :notification_arns
|
1335
|
-
# The Amazon
|
1336
|
-
#
|
1337
|
-
#
|
1324
|
+
# The Amazon SNS topic ARNs to publish stack related events. You can
|
1325
|
+
# find your Amazon SNS topic ARNs using the Amazon SNS console or your
|
1326
|
+
# Command Line Interface (CLI).
|
1338
1327
|
#
|
1339
1328
|
# @option params [Array<String>] :capabilities
|
1340
1329
|
# In some cases, you must explicitly acknowledge that your stack
|
@@ -1345,9 +1334,8 @@ module Aws::CloudFormation
|
|
1345
1334
|
#
|
1346
1335
|
# Some stack templates might include resources that can affect
|
1347
1336
|
# permissions in your Amazon Web Services account; for example, by
|
1348
|
-
# creating new
|
1349
|
-
#
|
1350
|
-
# these capabilities.
|
1337
|
+
# creating new IAM users. For those stacks, you must explicitly
|
1338
|
+
# acknowledge this by specifying one of these capabilities.
|
1351
1339
|
#
|
1352
1340
|
# The following IAM resources require you to specify either the
|
1353
1341
|
# `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
|
@@ -1378,8 +1366,8 @@ module Aws::CloudFormation
|
|
1378
1366
|
#
|
1379
1367
|
# * [AWS::IAM::UserToGroupAddition][7]
|
1380
1368
|
#
|
1381
|
-
# For more information, see [Acknowledging IAM
|
1382
|
-
# CloudFormation
|
1369
|
+
# For more information, see [Acknowledging IAM resources in
|
1370
|
+
# CloudFormation templates][8].
|
1383
1371
|
#
|
1384
1372
|
# * `CAPABILITY_AUTO_EXPAND`
|
1385
1373
|
#
|
@@ -1408,8 +1396,8 @@ module Aws::CloudFormation
|
|
1408
1396
|
# can update the function operation without CloudFormation being
|
1409
1397
|
# notified.
|
1410
1398
|
#
|
1411
|
-
# For more information, see [
|
1412
|
-
#
|
1399
|
+
# For more information, see [Perform custom processing on
|
1400
|
+
# CloudFormation templates with template macros][11].
|
1413
1401
|
#
|
1414
1402
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
1415
1403
|
# specified.
|
@@ -1418,14 +1406,14 @@ module Aws::CloudFormation
|
|
1418
1406
|
#
|
1419
1407
|
#
|
1420
1408
|
#
|
1421
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1422
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1409
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
1410
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
1423
1411
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
1424
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1412
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
1425
1413
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1426
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1427
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1428
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
1414
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
1415
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
1416
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#using-iam-capabilities
|
1429
1417
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
1430
1418
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
1431
1419
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
@@ -1443,10 +1431,10 @@ module Aws::CloudFormation
|
|
1443
1431
|
#
|
1444
1432
|
# If the list of resource types doesn't include a resource that you're
|
1445
1433
|
# creating, the stack creation fails. By default, CloudFormation grants
|
1446
|
-
# permissions to all resource types.
|
1447
|
-
#
|
1448
|
-
#
|
1449
|
-
#
|
1434
|
+
# permissions to all resource types. IAM uses this parameter for
|
1435
|
+
# CloudFormation-specific condition keys in IAM policies. For more
|
1436
|
+
# information, see [Control access with Identity and Access
|
1437
|
+
# Management][1].
|
1450
1438
|
#
|
1451
1439
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
1452
1440
|
# specified.
|
@@ -1458,13 +1446,13 @@ module Aws::CloudFormation
|
|
1458
1446
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
1459
1447
|
#
|
1460
1448
|
# @option params [String] :role_arn
|
1461
|
-
# The Amazon Resource Name (ARN) of an
|
1462
|
-
#
|
1463
|
-
#
|
1464
|
-
#
|
1465
|
-
#
|
1466
|
-
#
|
1467
|
-
#
|
1449
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
1450
|
+
# assumes to create the stack. CloudFormation uses the role's
|
1451
|
+
# credentials to make calls on your behalf. CloudFormation always uses
|
1452
|
+
# this role for all future operations on the stack. Provided that users
|
1453
|
+
# have permission to operate on the stack, CloudFormation uses this role
|
1454
|
+
# even if the users don't have permission to pass it. Ensure that the
|
1455
|
+
# role grants least privilege.
|
1468
1456
|
#
|
1469
1457
|
# If you don't specify a value, CloudFormation uses the role that was
|
1470
1458
|
# previously associated with the stack. If no role is available,
|
@@ -1479,9 +1467,9 @@ module Aws::CloudFormation
|
|
1479
1467
|
# Default: `ROLLBACK`
|
1480
1468
|
#
|
1481
1469
|
# @option params [String] :stack_policy_body
|
1482
|
-
# Structure containing the stack policy body. For more information,
|
1483
|
-
#
|
1484
|
-
#
|
1470
|
+
# Structure containing the stack policy body. For more information, see
|
1471
|
+
# [Prevent updates to stack resources][1] in the *CloudFormation User
|
1472
|
+
# Guide*. You can specify either the `StackPolicyBody` or the
|
1485
1473
|
# `StackPolicyURL` parameter, but not both.
|
1486
1474
|
#
|
1487
1475
|
#
|
@@ -1525,9 +1513,9 @@ module Aws::CloudFormation
|
|
1525
1513
|
# Whether to enable termination protection on the specified stack. If a
|
1526
1514
|
# user attempts to delete a stack with termination protection enabled,
|
1527
1515
|
# the operation fails and the stack remains unchanged. For more
|
1528
|
-
# information, see [
|
1529
|
-
# *CloudFormation User Guide*. Termination protection is
|
1530
|
-
# stacks by default.
|
1516
|
+
# information, see [Protect CloudFormation stacks from being deleted][1]
|
1517
|
+
# in the *CloudFormation User Guide*. Termination protection is
|
1518
|
+
# deactivated on stacks by default.
|
1531
1519
|
#
|
1532
1520
|
# For [nested stacks][2], termination protection is set on the root
|
1533
1521
|
# stack and can't be changed directly on the nested stack.
|
@@ -1778,30 +1766,19 @@ module Aws::CloudFormation
|
|
1778
1766
|
#
|
1779
1767
|
# @option params [String] :template_body
|
1780
1768
|
# The structure that contains the template body, with a minimum length
|
1781
|
-
# of 1 byte and a maximum length of 51,200 bytes.
|
1782
|
-
# see [Template Anatomy][1] in the *CloudFormation User Guide*.
|
1769
|
+
# of 1 byte and a maximum length of 51,200 bytes.
|
1783
1770
|
#
|
1784
1771
|
# Conditional: You must specify either the TemplateBody or the
|
1785
1772
|
# TemplateURL parameter, but not both.
|
1786
1773
|
#
|
1787
|
-
#
|
1788
|
-
#
|
1789
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1790
|
-
#
|
1791
1774
|
# @option params [String] :template_url
|
1792
1775
|
# The location of the file that contains the template body. The URL must
|
1793
1776
|
# point to a template (maximum size: 460,800 bytes) that's located in
|
1794
|
-
# an Amazon S3 bucket or a Systems Manager document.
|
1795
|
-
# information, see [Template Anatomy][1] in the *CloudFormation User
|
1796
|
-
# Guide*.
|
1777
|
+
# an Amazon S3 bucket or a Systems Manager document.
|
1797
1778
|
#
|
1798
1779
|
# Conditional: You must specify either the TemplateBody or the
|
1799
1780
|
# TemplateURL parameter, but not both.
|
1800
1781
|
#
|
1801
|
-
#
|
1802
|
-
#
|
1803
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1804
|
-
#
|
1805
1782
|
# @option params [String] :stack_id
|
1806
1783
|
# The stack ID you are importing into a new stack set. Specify the
|
1807
1784
|
# Amazon Resource Name (ARN) of the stack.
|
@@ -1818,9 +1795,8 @@ module Aws::CloudFormation
|
|
1818
1795
|
#
|
1819
1796
|
# Some stack templates might include resources that can affect
|
1820
1797
|
# permissions in your Amazon Web Services account; for example, by
|
1821
|
-
# creating new
|
1822
|
-
#
|
1823
|
-
# of these capabilities.
|
1798
|
+
# creating new IAM users. For those stack sets, you must explicitly
|
1799
|
+
# acknowledge this by specifying one of these capabilities.
|
1824
1800
|
#
|
1825
1801
|
# The following IAM resources require you to specify either the
|
1826
1802
|
# `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
|
@@ -1851,8 +1827,8 @@ module Aws::CloudFormation
|
|
1851
1827
|
#
|
1852
1828
|
# * [AWS::IAM::UserToGroupAddition][7]
|
1853
1829
|
#
|
1854
|
-
# For more information, see [Acknowledging IAM
|
1855
|
-
# CloudFormation
|
1830
|
+
# For more information, see [Acknowledging IAM resources in
|
1831
|
+
# CloudFormation templates][8].
|
1856
1832
|
#
|
1857
1833
|
# * `CAPABILITY_AUTO_EXPAND`
|
1858
1834
|
#
|
@@ -1874,14 +1850,14 @@ module Aws::CloudFormation
|
|
1874
1850
|
#
|
1875
1851
|
#
|
1876
1852
|
#
|
1877
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1878
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1853
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
1854
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
1879
1855
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
1880
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1856
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
1881
1857
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1882
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1883
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
1884
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
1858
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
1859
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
1860
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#using-iam-capabilities
|
1885
1861
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1886
1862
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
1887
1863
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -2174,6 +2150,13 @@ module Aws::CloudFormation
|
|
2174
2150
|
# deletion starts. Deleted stacks don't show up in the DescribeStacks
|
2175
2151
|
# operation if the deletion has been completed successfully.
|
2176
2152
|
#
|
2153
|
+
# For more information about deleting a stack, see [Delete a stack from
|
2154
|
+
# the CloudFormation console][1] in the *CloudFormation User Guide*.
|
2155
|
+
#
|
2156
|
+
#
|
2157
|
+
#
|
2158
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-console-delete-stack.html
|
2159
|
+
#
|
2177
2160
|
# @option params [required, String] :stack_name
|
2178
2161
|
# The name or the unique stack ID that's associated with the stack.
|
2179
2162
|
#
|
@@ -2187,10 +2170,9 @@ module Aws::CloudFormation
|
|
2187
2170
|
# as a non-empty S3 bucket, but you want to delete the stack.
|
2188
2171
|
#
|
2189
2172
|
# @option params [String] :role_arn
|
2190
|
-
# The Amazon Resource Name (ARN) of an
|
2191
|
-
#
|
2192
|
-
#
|
2193
|
-
# behalf.
|
2173
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
2174
|
+
# assumes to delete the stack. CloudFormation uses the role's
|
2175
|
+
# credentials to make calls on your behalf.
|
2194
2176
|
#
|
2195
2177
|
# If you don't specify a value, CloudFormation uses the role that was
|
2196
2178
|
# previously associated with the stack. If no role is available,
|
@@ -2283,7 +2265,7 @@ module Aws::CloudFormation
|
|
2283
2265
|
#
|
2284
2266
|
#
|
2285
2267
|
#
|
2286
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
2268
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/what-is-cfnstacksets.html#stackset-ops-options
|
2287
2269
|
#
|
2288
2270
|
# @option params [String] :operation_id
|
2289
2271
|
# The unique identifier for this stack set operation.
|
@@ -2481,8 +2463,8 @@ module Aws::CloudFormation
|
|
2481
2463
|
|
2482
2464
|
# Retrieves your account's CloudFormation limits, such as the maximum
|
2483
2465
|
# number of stacks that you can create in your account. For more
|
2484
|
-
# information about account limits, see [CloudFormation
|
2485
|
-
# the *CloudFormation User Guide*.
|
2466
|
+
# information about account limits, see [Understand CloudFormation
|
2467
|
+
# quotas][1] in the *CloudFormation User Guide*.
|
2486
2468
|
#
|
2487
2469
|
#
|
2488
2470
|
#
|
@@ -2523,8 +2505,8 @@ module Aws::CloudFormation
|
|
2523
2505
|
|
2524
2506
|
# Returns the inputs for the change set and a list of changes that
|
2525
2507
|
# CloudFormation will make if you execute the change set. For more
|
2526
|
-
# information, see [
|
2527
|
-
# *CloudFormation User Guide*.
|
2508
|
+
# information, see [Update CloudFormation stacks using change sets][1]
|
2509
|
+
# in the *CloudFormation User Guide*.
|
2528
2510
|
#
|
2529
2511
|
#
|
2530
2512
|
#
|
@@ -2879,7 +2861,7 @@ module Aws::CloudFormation
|
|
2879
2861
|
# * [RegisterPublisher][1]
|
2880
2862
|
#
|
2881
2863
|
# * [Publishing extensions to make them available for public use][2] in
|
2882
|
-
# the *CloudFormation CLI User Guide*
|
2864
|
+
# the *CloudFormation Command Line Interface (CLI) User Guide*
|
2883
2865
|
#
|
2884
2866
|
#
|
2885
2867
|
#
|
@@ -3068,8 +3050,9 @@ module Aws::CloudFormation
|
|
3068
3050
|
# configuration, as defined in the stack template and any values
|
3069
3051
|
# specified as template parameters. A stack is considered to have
|
3070
3052
|
# drifted if one or more of its resources have drifted. For more
|
3071
|
-
# information about stack and resource drift, see [
|
3072
|
-
#
|
3053
|
+
# information about stack and resource drift, see [Detect unmanaged
|
3054
|
+
# configuration changes to stacks and resources with drift
|
3055
|
+
# detection][1].
|
3073
3056
|
#
|
3074
3057
|
# Use DetectStackDrift to initiate a stack drift detection operation.
|
3075
3058
|
# `DetectStackDrift` returns a `StackDriftDetectionId` you can use to
|
@@ -3127,8 +3110,8 @@ module Aws::CloudFormation
|
|
3127
3110
|
|
3128
3111
|
# Returns all stack related events for a specified stack in reverse
|
3129
3112
|
# chronological order. For more information about a stack's event
|
3130
|
-
# history, see [CloudFormation stack creation events][1] in
|
3131
|
-
# *CloudFormation User Guide*.
|
3113
|
+
# history, see [Understand CloudFormation stack creation events][1] in
|
3114
|
+
# the *CloudFormation User Guide*.
|
3132
3115
|
#
|
3133
3116
|
# <note markdown="1"> You can list events for stacks that have failed to create or have been
|
3134
3117
|
# deleted by specifying the unique stack identifier (stack ID).
|
@@ -3348,7 +3331,7 @@ module Aws::CloudFormation
|
|
3348
3331
|
# haven't yet been checked for drift aren't included. Resources that
|
3349
3332
|
# don't currently support drift detection aren't checked, and so not
|
3350
3333
|
# included. For a list of resources that support drift detection, see
|
3351
|
-
# [
|
3334
|
+
# [Resource type support for imports and drift detection][1].
|
3352
3335
|
#
|
3353
3336
|
# Use DetectStackResourceDrift to detect drift on individual resources,
|
3354
3337
|
# or DetectStackDrift to detect drift on all supported resources for a
|
@@ -3356,7 +3339,7 @@ module Aws::CloudFormation
|
|
3356
3339
|
#
|
3357
3340
|
#
|
3358
3341
|
#
|
3359
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
3342
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
3360
3343
|
#
|
3361
3344
|
# @option params [required, String] :stack_name
|
3362
3345
|
# The name of the stack for which you want drift information.
|
@@ -3451,8 +3434,8 @@ module Aws::CloudFormation
|
|
3451
3434
|
# You must specify either `StackName` or `PhysicalResourceId`, but not
|
3452
3435
|
# both. In addition, you can specify `LogicalResourceId` to filter the
|
3453
3436
|
# returned result. For more information about resources, the
|
3454
|
-
# `LogicalResourceId` and `PhysicalResourceId`,
|
3455
|
-
#
|
3437
|
+
# `LogicalResourceId` and `PhysicalResourceId`, see the [CloudFormation
|
3438
|
+
# User Guide][1].
|
3456
3439
|
#
|
3457
3440
|
# <note markdown="1"> A `ValidationError` is returned if you specify both `StackName` and
|
3458
3441
|
# `PhysicalResourceId` in the same request.
|
@@ -3708,8 +3691,8 @@ module Aws::CloudFormation
|
|
3708
3691
|
|
3709
3692
|
# Returns the description for the specified stack; if no stack name was
|
3710
3693
|
# specified, then it returns the description for all the stacks created.
|
3711
|
-
# For more information about a stack's event history, see
|
3712
|
-
#
|
3694
|
+
# For more information about a stack's event history, see [Understand
|
3695
|
+
# CloudFormation stack creation events][1] in the *CloudFormation User
|
3713
3696
|
# Guide*.
|
3714
3697
|
#
|
3715
3698
|
# <note markdown="1"> If the stack doesn't exist, a `ValidationError` is returned.
|
@@ -4017,15 +4000,16 @@ module Aws::CloudFormation
|
|
4017
4000
|
# template configuration. Only resource properties explicitly defined in
|
4018
4001
|
# the stack template are checked for drift. A stack is considered to
|
4019
4002
|
# have drifted if one or more of its resources differ from their
|
4020
|
-
# expected template configurations. For more information, see [
|
4021
|
-
#
|
4003
|
+
# expected template configurations. For more information, see [Detect
|
4004
|
+
# unmanaged configuration changes to stacks and resources with drift
|
4005
|
+
# detection][1].
|
4022
4006
|
#
|
4023
4007
|
# Use `DetectStackDrift` to detect drift on all supported resources for
|
4024
4008
|
# a given stack, or DetectStackResourceDrift to detect drift on
|
4025
4009
|
# individual resources.
|
4026
4010
|
#
|
4027
4011
|
# For a list of stack resources that currently support drift detection,
|
4028
|
-
# see [
|
4012
|
+
# see [Resource type support for imports and drift detection][2].
|
4029
4013
|
#
|
4030
4014
|
# `DetectStackDrift` can take up to several minutes, depending on the
|
4031
4015
|
# number of resources contained within the stack. Use
|
@@ -4041,7 +4025,7 @@ module Aws::CloudFormation
|
|
4041
4025
|
#
|
4042
4026
|
#
|
4043
4027
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
4044
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
4028
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
4045
4029
|
#
|
4046
4030
|
# @option params [required, String] :stack_name
|
4047
4031
|
# The name of the stack for which you want to detect drift.
|
@@ -4080,8 +4064,8 @@ module Aws::CloudFormation
|
|
4080
4064
|
# resources in which CloudFormation detects drift. Only resource
|
4081
4065
|
# properties explicitly defined in the stack template are checked for
|
4082
4066
|
# drift. For more information about stack and resource drift, see
|
4083
|
-
# [
|
4084
|
-
#
|
4067
|
+
# [Detect unmanaged configuration changes to stacks and resources with
|
4068
|
+
# drift detection][1].
|
4085
4069
|
#
|
4086
4070
|
# Use `DetectStackResourceDrift` to detect drift on individual
|
4087
4071
|
# resources, or DetectStackDrift to detect drift on all resources in a
|
@@ -4089,12 +4073,12 @@ module Aws::CloudFormation
|
|
4089
4073
|
#
|
4090
4074
|
# Resources that don't currently support drift detection can't be
|
4091
4075
|
# checked. For a list of resources that support drift detection, see
|
4092
|
-
# [
|
4076
|
+
# [Resource type support for imports and drift detection][2].
|
4093
4077
|
#
|
4094
4078
|
#
|
4095
4079
|
#
|
4096
4080
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
4097
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
4081
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
4098
4082
|
#
|
4099
4083
|
# @option params [required, String] :stack_name
|
4100
4084
|
# The name of the stack to which the resource belongs.
|
@@ -4199,7 +4183,7 @@ module Aws::CloudFormation
|
|
4199
4183
|
#
|
4200
4184
|
#
|
4201
4185
|
#
|
4202
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
4186
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/what-is-cfnstacksets.html#stackset-ops-options
|
4203
4187
|
#
|
4204
4188
|
# @option params [String] :operation_id
|
4205
4189
|
# *The ID of the stack set operation.*
|
@@ -4269,30 +4253,20 @@ module Aws::CloudFormation
|
|
4269
4253
|
#
|
4270
4254
|
# @option params [String] :template_body
|
4271
4255
|
# Structure containing the template body with a minimum length of 1 byte
|
4272
|
-
# and a maximum length of 51,200 bytes.
|
4273
|
-
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
4256
|
+
# and a maximum length of 51,200 bytes.
|
4274
4257
|
#
|
4275
4258
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
4276
4259
|
# are passed, only `TemplateBody` is used.
|
4277
4260
|
#
|
4278
|
-
#
|
4279
|
-
#
|
4280
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4281
|
-
#
|
4282
4261
|
# @option params [String] :template_url
|
4283
4262
|
# Location of file containing the template body. The URL must point to a
|
4284
4263
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
4285
|
-
# document.
|
4286
|
-
#
|
4287
|
-
# start with `https://`.
|
4264
|
+
# document. The location for an Amazon S3 bucket must start with
|
4265
|
+
# `https://`.
|
4288
4266
|
#
|
4289
4267
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
4290
4268
|
# are passed, only `TemplateBody` is used.
|
4291
4269
|
#
|
4292
|
-
#
|
4293
|
-
#
|
4294
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4295
|
-
#
|
4296
4270
|
# @option params [Array<Types::Parameter>] :parameters
|
4297
4271
|
# A list of `Parameter` structures that specify input parameters.
|
4298
4272
|
#
|
@@ -4595,32 +4569,20 @@ module Aws::CloudFormation
|
|
4595
4569
|
#
|
4596
4570
|
# @option params [String] :template_body
|
4597
4571
|
# Structure containing the template body with a minimum length of 1 byte
|
4598
|
-
# and a maximum length of 51,200 bytes.
|
4599
|
-
# templates, see [Template anatomy][1] in the *CloudFormation User
|
4600
|
-
# Guide*.
|
4572
|
+
# and a maximum length of 51,200 bytes.
|
4601
4573
|
#
|
4602
4574
|
# Conditional: You must specify only one of the following parameters:
|
4603
4575
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
4604
4576
|
#
|
4605
|
-
#
|
4606
|
-
#
|
4607
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4608
|
-
#
|
4609
4577
|
# @option params [String] :template_url
|
4610
4578
|
# Location of file containing the template body. The URL must point to a
|
4611
4579
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
4612
|
-
# bucket or a Systems Manager document.
|
4613
|
-
#
|
4614
|
-
# Guide*. The location for an Amazon S3 bucket must start with
|
4615
|
-
# `https://`.
|
4580
|
+
# bucket or a Systems Manager document. The location for an Amazon S3
|
4581
|
+
# bucket must start with `https://`.
|
4616
4582
|
#
|
4617
4583
|
# Conditional: You must specify only one of the following parameters:
|
4618
4584
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
4619
4585
|
#
|
4620
|
-
#
|
4621
|
-
#
|
4622
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4623
|
-
#
|
4624
4586
|
# @option params [String] :stack_name
|
4625
4587
|
# The name or the stack ID that's associated with the stack, which
|
4626
4588
|
# aren't always interchangeable. For running stacks, you can specify
|
@@ -4760,7 +4722,7 @@ module Aws::CloudFormation
|
|
4760
4722
|
#
|
4761
4723
|
#
|
4762
4724
|
#
|
4763
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
4725
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/what-is-cfnstacksets.html#stackset-ops-options
|
4764
4726
|
#
|
4765
4727
|
# @option params [String] :operation_id
|
4766
4728
|
# A unique, user defined, identifier for the stack set operation.
|
@@ -4871,8 +4833,8 @@ module Aws::CloudFormation
|
|
4871
4833
|
# values that you can import into other stacks. To import values, use
|
4872
4834
|
# the [ Fn::ImportValue][1] function.
|
4873
4835
|
#
|
4874
|
-
# For more information, see [
|
4875
|
-
#
|
4836
|
+
# For more information, see [Get exported outputs from a deployed
|
4837
|
+
# CloudFormation stack][2].
|
4876
4838
|
#
|
4877
4839
|
#
|
4878
4840
|
#
|
@@ -6360,7 +6322,8 @@ module Aws::CloudFormation
|
|
6360
6322
|
# public extension in this Region. Public extensions are available for
|
6361
6323
|
# use by all CloudFormation users. For more information about publishing
|
6362
6324
|
# extensions, see [Publishing extensions to make them available for
|
6363
|
-
# public use][1] in the *CloudFormation
|
6325
|
+
# public use][1] in the *CloudFormation Command Line Interface (CLI)
|
6326
|
+
# User Guide*.
|
6364
6327
|
#
|
6365
6328
|
# To publish an extension, you must be registered as a publisher with
|
6366
6329
|
# CloudFormation. For more information, see [RegisterPublisher][2].
|
@@ -6519,8 +6482,9 @@ module Aws::CloudFormation
|
|
6519
6482
|
# all Amazon Web Services Regions.
|
6520
6483
|
#
|
6521
6484
|
# For information about requirements for registering as a public
|
6522
|
-
# extension publisher, see [Registering your account to
|
6523
|
-
# CloudFormation extensions][1] in the *CloudFormation
|
6485
|
+
# extension publisher, see [Prerequisite: Registering your account to
|
6486
|
+
# publish CloudFormation extensions][1] in the *CloudFormation Command
|
6487
|
+
# Line Interface (CLI) User Guide*.
|
6524
6488
|
#
|
6525
6489
|
#
|
6526
6490
|
#
|
@@ -6545,8 +6509,9 @@ module Aws::CloudFormation
|
|
6545
6509
|
# verification, the Amazon Resource Name (ARN) for your connection to
|
6546
6510
|
# that account.
|
6547
6511
|
#
|
6548
|
-
# For more information, see [Registering your account to
|
6549
|
-
# CloudFormation extensions][1] in the *CloudFormation
|
6512
|
+
# For more information, see [Prerequisite: Registering your account to
|
6513
|
+
# publish CloudFormation extensions][1] in the *CloudFormation Command
|
6514
|
+
# Line Interface (CLI) User Guide*.
|
6550
6515
|
#
|
6551
6516
|
#
|
6552
6517
|
#
|
@@ -6588,8 +6553,9 @@ module Aws::CloudFormation
|
|
6588
6553
|
# * Making the extension available for use in your account.
|
6589
6554
|
#
|
6590
6555
|
# For more information about how to develop extensions and ready them
|
6591
|
-
# for registration, see [Creating
|
6592
|
-
#
|
6556
|
+
# for registration, see [Creating resource types using the
|
6557
|
+
# CloudFormation CLI][1] in the *CloudFormation Command Line Interface
|
6558
|
+
# (CLI) User Guide*.
|
6593
6559
|
#
|
6594
6560
|
# You can have a maximum of 50 resource extension versions registered at
|
6595
6561
|
# a time. This maximum is per account and per Region. Use
|
@@ -6602,16 +6568,16 @@ module Aws::CloudFormation
|
|
6602
6568
|
#
|
6603
6569
|
# Once you have registered a private extension in your account and
|
6604
6570
|
# Region, use [SetTypeConfiguration][3] to specify configuration
|
6605
|
-
# properties for the extension. For more information, see [
|
6606
|
-
# extensions
|
6607
|
-
# Guide*.
|
6571
|
+
# properties for the extension. For more information, see [Edit
|
6572
|
+
# configuration data for extensions in your account][4] in the
|
6573
|
+
# *CloudFormation User Guide*.
|
6608
6574
|
#
|
6609
6575
|
#
|
6610
6576
|
#
|
6611
6577
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html
|
6612
6578
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeregisterType.html
|
6613
6579
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html
|
6614
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-
|
6580
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html
|
6615
6581
|
#
|
6616
6582
|
# @option params [String] :type
|
6617
6583
|
# The kind of extension.
|
@@ -6621,11 +6587,11 @@ module Aws::CloudFormation
|
|
6621
6587
|
#
|
6622
6588
|
# We suggest that extension names adhere to the following patterns:
|
6623
6589
|
#
|
6624
|
-
# * For resource types,
|
6590
|
+
# * For resource types, `company_or_organization::service::type`.
|
6625
6591
|
#
|
6626
|
-
# * For modules,
|
6592
|
+
# * For modules, `company_or_organization::service::type::MODULE`.
|
6627
6593
|
#
|
6628
|
-
# * For hooks,
|
6594
|
+
# * For hooks, `MyCompany::Testing::MyTestHook`.
|
6629
6595
|
#
|
6630
6596
|
# <note markdown="1"> The following organization namespaces are reserved and can't be used
|
6631
6597
|
# in your extension names:
|
@@ -6650,7 +6616,7 @@ module Aws::CloudFormation
|
|
6650
6616
|
#
|
6651
6617
|
# For information about generating a schema handler package for the
|
6652
6618
|
# extension you want to register, see [submit][1] in the *CloudFormation
|
6653
|
-
# CLI User Guide*.
|
6619
|
+
# Command Line Interface (CLI) User Guide*.
|
6654
6620
|
#
|
6655
6621
|
# <note markdown="1"> The user registering the extension must be able to access the package
|
6656
6622
|
# in the S3 bucket. That's, the user needs to have [GetObject][2]
|
@@ -6757,8 +6723,8 @@ module Aws::CloudFormation
|
|
6757
6723
|
# The name that's associated with the stack.
|
6758
6724
|
#
|
6759
6725
|
# @option params [String] :role_arn
|
6760
|
-
# The Amazon Resource Name (ARN) of an
|
6761
|
-
#
|
6726
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
6727
|
+
# assumes to rollback the stack.
|
6762
6728
|
#
|
6763
6729
|
# @option params [String] :client_request_token
|
6764
6730
|
# A unique identifier for this `RollbackStack` request.
|
@@ -6802,9 +6768,9 @@ module Aws::CloudFormation
|
|
6802
6768
|
# The name or unique stack ID that you want to associate a policy with.
|
6803
6769
|
#
|
6804
6770
|
# @option params [String] :stack_policy_body
|
6805
|
-
# Structure containing the stack policy body. For more information,
|
6806
|
-
#
|
6807
|
-
#
|
6771
|
+
# Structure containing the stack policy body. For more information, see
|
6772
|
+
# [Prevent updates to stack resources][1] in the *CloudFormation User
|
6773
|
+
# Guide*. You can specify either the `StackPolicyBody` or the
|
6808
6774
|
# `StackPolicyURL` parameter, but not both.
|
6809
6775
|
#
|
6810
6776
|
#
|
@@ -6842,19 +6808,20 @@ module Aws::CloudFormation
|
|
6842
6808
|
#
|
6843
6809
|
# To view the current configuration data for an extension, refer to the
|
6844
6810
|
# `ConfigurationSchema` element of [DescribeType][1]. For more
|
6845
|
-
# information, see [
|
6846
|
-
# the *CloudFormation User Guide*.
|
6811
|
+
# information, see [Edit configuration data for extensions in your
|
6812
|
+
# account][2] in the *CloudFormation User Guide*.
|
6847
6813
|
#
|
6848
6814
|
# It's strongly recommended that you use dynamic references to restrict
|
6849
6815
|
# sensitive configuration definitions, such as third-party credentials.
|
6850
|
-
# For more details on dynamic references, see [
|
6851
|
-
#
|
6816
|
+
# For more details on dynamic references, see [Specify values stored in
|
6817
|
+
# other services using dynamic references][3] in the *CloudFormation
|
6818
|
+
# User Guide*.
|
6852
6819
|
#
|
6853
6820
|
#
|
6854
6821
|
#
|
6855
6822
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
6856
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-
|
6857
|
-
# [3]: https://docs.aws.amazon.com/
|
6823
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html
|
6824
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html
|
6858
6825
|
#
|
6859
6826
|
# @option params [String] :type_arn
|
6860
6827
|
# The Amazon Resource Name (ARN) for the extension, in this account and
|
@@ -6879,9 +6846,9 @@ module Aws::CloudFormation
|
|
6879
6846
|
#
|
6880
6847
|
# The configuration data must be formatted as JSON, and validate against
|
6881
6848
|
# the schema returned in the `ConfigurationSchema` response element of
|
6882
|
-
# [DescribeType][1]. For more information, see [Defining
|
6883
|
-
# configuration
|
6884
|
-
# User Guide*.
|
6849
|
+
# [DescribeType][1]. For more information, see [Defining the
|
6850
|
+
# account-level configuration of an extension][2] in the *CloudFormation
|
6851
|
+
# Command Line Interface (CLI) User Guide*.
|
6885
6852
|
#
|
6886
6853
|
#
|
6887
6854
|
#
|
@@ -7130,8 +7097,9 @@ module Aws::CloudFormation
|
|
7130
7097
|
# * For modules, this includes determining if the module's model meets
|
7131
7098
|
# all necessary requirements.
|
7132
7099
|
#
|
7133
|
-
# For more information, see [Testing your public extension
|
7134
|
-
# publishing][1] in the *CloudFormation
|
7100
|
+
# For more information, see [Testing your public extension before
|
7101
|
+
# publishing][1] in the *CloudFormation Command Line Interface (CLI)
|
7102
|
+
# User Guide*.
|
7135
7103
|
#
|
7136
7104
|
# If you don't specify a version, CloudFormation uses the default
|
7137
7105
|
# version of the extension in your account and Region for testing.
|
@@ -7147,8 +7115,8 @@ module Aws::CloudFormation
|
|
7147
7115
|
#
|
7148
7116
|
# An extension must have a test status of `PASSED` before it can be
|
7149
7117
|
# published. For more information, see [Publishing extensions to make
|
7150
|
-
# them available for public use][4] in the *CloudFormation
|
7151
|
-
# Guide*.
|
7118
|
+
# them available for public use][4] in the *CloudFormation Command Line
|
7119
|
+
# Interface (CLI) User Guide*.
|
7152
7120
|
#
|
7153
7121
|
#
|
7154
7122
|
#
|
@@ -7198,8 +7166,7 @@ module Aws::CloudFormation
|
|
7198
7166
|
# * `PutObject`
|
7199
7167
|
#
|
7200
7168
|
# For more information, see [Actions, Resources, and Condition Keys for
|
7201
|
-
# Amazon S3][1] in the *
|
7202
|
-
# Management User Guide*.
|
7169
|
+
# Amazon S3][1] in the *Identity and Access Management User Guide*.
|
7203
7170
|
#
|
7204
7171
|
#
|
7205
7172
|
#
|
@@ -7367,45 +7334,36 @@ module Aws::CloudFormation
|
|
7367
7334
|
# To get a copy of the template for an existing stack, you can use the
|
7368
7335
|
# GetTemplate action.
|
7369
7336
|
#
|
7370
|
-
# For more information about
|
7371
|
-
#
|
7372
|
-
#
|
7337
|
+
# For more information about updating a stack and monitoring the
|
7338
|
+
# progress of the update, see [Managing Amazon Web Services resources as
|
7339
|
+
# a single unit with CloudFormation stacks][1] in the *CloudFormation
|
7340
|
+
# User Guide*.
|
7373
7341
|
#
|
7374
7342
|
#
|
7375
7343
|
#
|
7376
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
7344
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
|
7377
7345
|
#
|
7378
7346
|
# @option params [required, String] :stack_name
|
7379
7347
|
# The name or unique stack ID of the stack to update.
|
7380
7348
|
#
|
7381
7349
|
# @option params [String] :template_body
|
7382
7350
|
# Structure containing the template body with a minimum length of 1 byte
|
7383
|
-
# and a maximum length of 51,200 bytes.
|
7384
|
-
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
7351
|
+
# and a maximum length of 51,200 bytes.
|
7385
7352
|
#
|
7386
7353
|
# Conditional: You must specify only one of the following parameters:
|
7387
7354
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
7388
7355
|
# `true`.
|
7389
7356
|
#
|
7390
|
-
#
|
7391
|
-
#
|
7392
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
7393
|
-
#
|
7394
7357
|
# @option params [String] :template_url
|
7395
7358
|
# Location of file containing the template body. The URL must point to a
|
7396
7359
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
7397
|
-
# document.
|
7398
|
-
#
|
7399
|
-
# start with `https://`.
|
7360
|
+
# document. The location for an Amazon S3 bucket must start with
|
7361
|
+
# `https://`.
|
7400
7362
|
#
|
7401
7363
|
# Conditional: You must specify only one of the following parameters:
|
7402
7364
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
7403
7365
|
# `true`.
|
7404
7366
|
#
|
7405
|
-
#
|
7406
|
-
#
|
7407
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
7408
|
-
#
|
7409
7367
|
# @option params [Boolean] :use_previous_template
|
7410
7368
|
# Reuse the existing template that is associated with the stack that you
|
7411
7369
|
# are updating.
|
@@ -7453,10 +7411,9 @@ module Aws::CloudFormation
|
|
7453
7411
|
# * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
|
7454
7412
|
#
|
7455
7413
|
# Some stack templates might include resources that can affect
|
7456
|
-
# permissions in your Amazon Web Services account
|
7457
|
-
# creating new
|
7458
|
-
#
|
7459
|
-
# these capabilities.
|
7414
|
+
# permissions in your Amazon Web Services account, for example, by
|
7415
|
+
# creating new IAM users. For those stacks, you must explicitly
|
7416
|
+
# acknowledge this by specifying one of these capabilities.
|
7460
7417
|
#
|
7461
7418
|
# The following IAM resources require you to specify either the
|
7462
7419
|
# `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
|
@@ -7487,8 +7444,8 @@ module Aws::CloudFormation
|
|
7487
7444
|
#
|
7488
7445
|
# * [AWS::IAM::UserToGroupAddition][7]
|
7489
7446
|
#
|
7490
|
-
# For more information, see [Acknowledging IAM
|
7491
|
-
# CloudFormation
|
7447
|
+
# For more information, see [Acknowledging IAM resources in
|
7448
|
+
# CloudFormation templates][8].
|
7492
7449
|
#
|
7493
7450
|
# * `CAPABILITY_AUTO_EXPAND`
|
7494
7451
|
#
|
@@ -7517,8 +7474,8 @@ module Aws::CloudFormation
|
|
7517
7474
|
# can update the function operation without CloudFormation being
|
7518
7475
|
# notified.
|
7519
7476
|
#
|
7520
|
-
# For more information, see [
|
7521
|
-
#
|
7477
|
+
# For more information, see [Perform custom processing on
|
7478
|
+
# CloudFormation templates with template macros][11].
|
7522
7479
|
#
|
7523
7480
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
7524
7481
|
# specified.
|
@@ -7527,14 +7484,14 @@ module Aws::CloudFormation
|
|
7527
7484
|
#
|
7528
7485
|
#
|
7529
7486
|
#
|
7530
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7531
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7487
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
7488
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
7532
7489
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
7533
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7490
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
7534
7491
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
7535
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7536
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7537
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
7492
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
7493
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
7494
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#using-iam-capabilities
|
7538
7495
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
7539
7496
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
7540
7497
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
@@ -7546,10 +7503,10 @@ module Aws::CloudFormation
|
|
7546
7503
|
#
|
7547
7504
|
# If the list of resource types doesn't include a resource that you're
|
7548
7505
|
# updating, the stack update fails. By default, CloudFormation grants
|
7549
|
-
# permissions to all resource types.
|
7550
|
-
#
|
7551
|
-
#
|
7552
|
-
#
|
7506
|
+
# permissions to all resource types. IAM uses this parameter for
|
7507
|
+
# CloudFormation-specific condition keys in IAM policies. For more
|
7508
|
+
# information, see [Control access with Identity and Access
|
7509
|
+
# Management][1].
|
7553
7510
|
#
|
7554
7511
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
7555
7512
|
# specified.
|
@@ -7561,13 +7518,13 @@ module Aws::CloudFormation
|
|
7561
7518
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
7562
7519
|
#
|
7563
7520
|
# @option params [String] :role_arn
|
7564
|
-
# The Amazon Resource Name (ARN) of an
|
7565
|
-
#
|
7566
|
-
#
|
7567
|
-
#
|
7568
|
-
#
|
7569
|
-
#
|
7570
|
-
#
|
7521
|
+
# The Amazon Resource Name (ARN) of an IAM role that CloudFormation
|
7522
|
+
# assumes to update the stack. CloudFormation uses the role's
|
7523
|
+
# credentials to make calls on your behalf. CloudFormation always uses
|
7524
|
+
# this role for all future operations on the stack. Provided that users
|
7525
|
+
# have permission to operate on the stack, CloudFormation uses this role
|
7526
|
+
# even if the users don't have permission to pass it. Ensure that the
|
7527
|
+
# role grants least privilege.
|
7571
7528
|
#
|
7572
7529
|
# If you don't specify a value, CloudFormation uses the role that was
|
7573
7530
|
# previously associated with the stack. If no role is available,
|
@@ -7910,30 +7867,19 @@ module Aws::CloudFormation
|
|
7910
7867
|
#
|
7911
7868
|
# @option params [String] :template_body
|
7912
7869
|
# The structure that contains the template body, with a minimum length
|
7913
|
-
# of 1 byte and a maximum length of 51,200 bytes.
|
7914
|
-
# see [Template Anatomy][1] in the *CloudFormation User Guide*.
|
7870
|
+
# of 1 byte and a maximum length of 51,200 bytes.
|
7915
7871
|
#
|
7916
7872
|
# Conditional: You must specify only one of the following parameters:
|
7917
7873
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
|
7918
7874
|
#
|
7919
|
-
#
|
7920
|
-
#
|
7921
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
7922
|
-
#
|
7923
7875
|
# @option params [String] :template_url
|
7924
7876
|
# The location of the file that contains the template body. The URL must
|
7925
7877
|
# point to a template (maximum size: 460,800 bytes) that is located in
|
7926
|
-
# an Amazon S3 bucket or a Systems Manager document.
|
7927
|
-
# information, see [Template Anatomy][1] in the *CloudFormation User
|
7928
|
-
# Guide*.
|
7878
|
+
# an Amazon S3 bucket or a Systems Manager document.
|
7929
7879
|
#
|
7930
7880
|
# Conditional: You must specify only one of the following parameters:
|
7931
7881
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
|
7932
7882
|
#
|
7933
|
-
#
|
7934
|
-
#
|
7935
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
7936
|
-
#
|
7937
7883
|
# @option params [Boolean] :use_previous_template
|
7938
7884
|
# Use the existing template that's associated with the stack set that
|
7939
7885
|
# you're updating.
|
@@ -7952,10 +7898,9 @@ module Aws::CloudFormation
|
|
7952
7898
|
# * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
|
7953
7899
|
#
|
7954
7900
|
# Some stack templates might include resources that can affect
|
7955
|
-
# permissions in your Amazon Web Services account
|
7956
|
-
# creating new
|
7957
|
-
#
|
7958
|
-
# of these capabilities.
|
7901
|
+
# permissions in your Amazon Web Services account, for example, by
|
7902
|
+
# creating new IAM users. For those stacks sets, you must explicitly
|
7903
|
+
# acknowledge this by specifying one of these capabilities.
|
7959
7904
|
#
|
7960
7905
|
# The following IAM resources require you to specify either the
|
7961
7906
|
# `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
|
@@ -7986,8 +7931,8 @@ module Aws::CloudFormation
|
|
7986
7931
|
#
|
7987
7932
|
# * [AWS::IAM::UserToGroupAddition][7]
|
7988
7933
|
#
|
7989
|
-
# For more information, see [Acknowledging IAM
|
7990
|
-
# CloudFormation
|
7934
|
+
# For more information, see [Acknowledging IAM resources in
|
7935
|
+
# CloudFormation templates][8].
|
7991
7936
|
#
|
7992
7937
|
# * `CAPABILITY_AUTO_EXPAND`
|
7993
7938
|
#
|
@@ -8009,14 +7954,14 @@ module Aws::CloudFormation
|
|
8009
7954
|
#
|
8010
7955
|
#
|
8011
7956
|
#
|
8012
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
8013
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7957
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-accesskey.html
|
7958
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-group.html
|
8014
7959
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
8015
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
7960
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
|
8016
7961
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
8017
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
8018
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
8019
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
7962
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-user.html
|
7963
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html
|
7964
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#using-iam-capabilities
|
8020
7965
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
8021
7966
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
8022
7967
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -8288,8 +8233,8 @@ module Aws::CloudFormation
|
|
8288
8233
|
# Updates termination protection for the specified stack. If a user
|
8289
8234
|
# attempts to delete a stack with termination protection enabled, the
|
8290
8235
|
# operation fails and the stack remains unchanged. For more information,
|
8291
|
-
# see [
|
8292
|
-
# User Guide*.
|
8236
|
+
# see [Protect a CloudFormation stack from being deleted][1] in the
|
8237
|
+
# *CloudFormation User Guide*.
|
8293
8238
|
#
|
8294
8239
|
# For [nested stacks][2], termination protection is set on the root
|
8295
8240
|
# stack and can't be changed directly on the nested stack.
|
@@ -8337,30 +8282,20 @@ module Aws::CloudFormation
|
|
8337
8282
|
#
|
8338
8283
|
# @option params [String] :template_body
|
8339
8284
|
# Structure containing the template body with a minimum length of 1 byte
|
8340
|
-
# and a maximum length of 51,200 bytes.
|
8341
|
-
# [Template Anatomy][1] in the *CloudFormation User Guide*.
|
8285
|
+
# and a maximum length of 51,200 bytes.
|
8342
8286
|
#
|
8343
8287
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8344
8288
|
# are passed, only `TemplateBody` is used.
|
8345
8289
|
#
|
8346
|
-
#
|
8347
|
-
#
|
8348
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
8349
|
-
#
|
8350
8290
|
# @option params [String] :template_url
|
8351
8291
|
# Location of file containing the template body. The URL must point to a
|
8352
8292
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
8353
|
-
# bucket or a Systems Manager document.
|
8354
|
-
#
|
8355
|
-
# for an Amazon S3 bucket must start with `https://`.
|
8293
|
+
# bucket or a Systems Manager document. The location for an Amazon S3
|
8294
|
+
# bucket must start with `https://`.
|
8356
8295
|
#
|
8357
8296
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8358
8297
|
# are passed, only `TemplateBody` is used.
|
8359
8298
|
#
|
8360
|
-
#
|
8361
|
-
#
|
8362
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
8363
|
-
#
|
8364
8299
|
# @return [Types::ValidateTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8365
8300
|
#
|
8366
8301
|
# * {Types::ValidateTemplateOutput#parameters #parameters} => Array<Types::TemplateParameter>
|
@@ -8417,7 +8352,7 @@ module Aws::CloudFormation
|
|
8417
8352
|
tracer: tracer
|
8418
8353
|
)
|
8419
8354
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8420
|
-
context[:gem_version] = '1.
|
8355
|
+
context[:gem_version] = '1.121.0'
|
8421
8356
|
Seahorse::Client::Request.new(handlers, context)
|
8422
8357
|
end
|
8423
8358
|
|