aws-sdk-cloudformation 1.133.0 → 1.134.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 +226 -125
- data/lib/aws-sdk-cloudformation/client_api.rb +2 -0
- data/lib/aws-sdk-cloudformation/event.rb +2 -2
- data/lib/aws-sdk-cloudformation/resource.rb +26 -23
- data/lib/aws-sdk-cloudformation/stack.rb +68 -61
- data/lib/aws-sdk-cloudformation/types.rb +190 -163
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +7 -6
- metadata +1 -1
@@ -741,7 +741,7 @@ module Aws::CloudFormation
|
|
741
741
|
# bucket or a Systems Manager document. CloudFormation generates the
|
742
742
|
# change set by comparing this template with the stack that you
|
743
743
|
# specified. The location for an Amazon S3 bucket must start with
|
744
|
-
# `https://`.
|
744
|
+
# `https://`. URLs from S3 static websites are not supported.
|
745
745
|
#
|
746
746
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
747
747
|
# @return [String]
|
@@ -835,14 +835,14 @@ module Aws::CloudFormation
|
|
835
835
|
#
|
836
836
|
#
|
837
837
|
#
|
838
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
839
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
840
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
841
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
842
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
843
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
844
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
845
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
838
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
839
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
840
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
841
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
842
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
843
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
844
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
845
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
846
846
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
847
847
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
848
848
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -981,22 +981,23 @@ module Aws::CloudFormation
|
|
981
981
|
# @return [String]
|
982
982
|
#
|
983
983
|
# @!attribute [rw] import_existing_resources
|
984
|
-
# Indicates if the change set imports resources that already
|
984
|
+
# Indicates if the change set auto-imports resources that already
|
985
|
+
# exist. For more information, see [Import Amazon Web Services
|
986
|
+
# resources into a CloudFormation stack automatically][1] in the
|
987
|
+
# *CloudFormation User Guide*.
|
985
988
|
#
|
986
989
|
# <note markdown="1"> This parameter can only import resources that have custom names in
|
987
|
-
# templates. For more information, see [name type][
|
990
|
+
# templates. For more information, see [name type][2] in the
|
988
991
|
# *CloudFormation User Guide*. To import resources that do not accept
|
989
|
-
# custom names, such as EC2 instances, use the
|
990
|
-
# instead.
|
991
|
-
# resources into a CloudFormation stack with a resource import][2] in
|
992
|
-
# the *CloudFormation User Guide*.
|
992
|
+
# custom names, such as EC2 instances, use the `ResourcesToImport`
|
993
|
+
# parameter instead.
|
993
994
|
#
|
994
995
|
# </note>
|
995
996
|
#
|
996
997
|
#
|
997
998
|
#
|
998
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
999
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
999
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/import-resources-automatically.html
|
1000
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
1000
1001
|
# @return [Boolean]
|
1001
1002
|
#
|
1002
1003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
|
@@ -1104,18 +1105,19 @@ module Aws::CloudFormation
|
|
1104
1105
|
# @return [String]
|
1105
1106
|
#
|
1106
1107
|
# @!attribute [rw] template_body
|
1107
|
-
# Structure
|
1108
|
+
# Structure that contains the template body with a minimum length of 1
|
1108
1109
|
# byte and a maximum length of 51,200 bytes.
|
1109
1110
|
#
|
1110
|
-
# Conditional: You must specify either
|
1111
|
-
# `TemplateURL
|
1111
|
+
# Conditional: You must specify either `TemplateBody` or
|
1112
|
+
# `TemplateURL`, but not both.
|
1112
1113
|
# @return [String]
|
1113
1114
|
#
|
1114
1115
|
# @!attribute [rw] template_url
|
1115
|
-
# The URL of a file
|
1116
|
-
# to a template (max size: 1 MB) that's located in an Amazon S3
|
1116
|
+
# The URL of a file that contains the template body. The URL must
|
1117
|
+
# point to a template (max size: 1 MB) that's located in an Amazon S3
|
1117
1118
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
1118
|
-
# bucket must start with `https://`.
|
1119
|
+
# bucket must start with `https://`. URLs from S3 static websites are
|
1120
|
+
# not supported.
|
1119
1121
|
#
|
1120
1122
|
# Conditional: You must specify either the `TemplateBody` or the
|
1121
1123
|
# `TemplateURL` parameter, but not both.
|
@@ -1237,14 +1239,14 @@ module Aws::CloudFormation
|
|
1237
1239
|
#
|
1238
1240
|
#
|
1239
1241
|
#
|
1240
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1241
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1242
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1243
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1244
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1245
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1246
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1247
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1242
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1243
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1244
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1245
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
1246
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1247
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1248
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1249
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1248
1250
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1249
1251
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
1250
1252
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -1303,7 +1305,7 @@ module Aws::CloudFormation
|
|
1303
1305
|
# @return [String]
|
1304
1306
|
#
|
1305
1307
|
# @!attribute [rw] stack_policy_body
|
1306
|
-
# Structure
|
1308
|
+
# Structure that contains the stack policy body. For more information,
|
1307
1309
|
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
1308
1310
|
# User Guide*. You can specify either the `StackPolicyBody` or the
|
1309
1311
|
# `StackPolicyURL` parameter, but not both.
|
@@ -1314,11 +1316,14 @@ module Aws::CloudFormation
|
|
1314
1316
|
# @return [String]
|
1315
1317
|
#
|
1316
1318
|
# @!attribute [rw] stack_policy_url
|
1317
|
-
# Location of a file
|
1318
|
-
# to a policy (maximum size: 16 KB) located in an S3 bucket in
|
1319
|
-
# same Region as the stack. The location for an Amazon S3 bucket
|
1320
|
-
# start with `https://`.
|
1321
|
-
#
|
1319
|
+
# Location of a file that contains the stack policy. The URL must
|
1320
|
+
# point to a policy (maximum size: 16 KB) located in an S3 bucket in
|
1321
|
+
# the same Region as the stack. The location for an Amazon S3 bucket
|
1322
|
+
# must start with `https://`. URLs from S3 static websites are not
|
1323
|
+
# supported.
|
1324
|
+
#
|
1325
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
1326
|
+
# parameter, but not both.
|
1322
1327
|
# @return [String]
|
1323
1328
|
#
|
1324
1329
|
# @!attribute [rw] tags
|
@@ -1611,18 +1616,19 @@ module Aws::CloudFormation
|
|
1611
1616
|
# The structure that contains the template body, with a minimum length
|
1612
1617
|
# of 1 byte and a maximum length of 51,200 bytes.
|
1613
1618
|
#
|
1614
|
-
# Conditional: You must specify either the TemplateBody or the
|
1615
|
-
# TemplateURL parameter, but not both.
|
1619
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1620
|
+
# `TemplateURL` parameter, but not both.
|
1616
1621
|
# @return [String]
|
1617
1622
|
#
|
1618
1623
|
# @!attribute [rw] template_url
|
1619
1624
|
# The URL of a file that contains the template body. The URL must
|
1620
1625
|
# point to a template (maximum size: 1 MB) that's located in an
|
1621
1626
|
# Amazon S3 bucket or a Systems Manager document. The location for an
|
1622
|
-
# Amazon S3 bucket must start with `https://`.
|
1627
|
+
# Amazon S3 bucket must start with `https://`. S3 static website URLs
|
1628
|
+
# are not supported.
|
1623
1629
|
#
|
1624
|
-
# Conditional: You must specify either the TemplateBody or the
|
1625
|
-
# TemplateURL parameter, but not both.
|
1630
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1631
|
+
# `TemplateURL` parameter, but not both.
|
1626
1632
|
# @return [String]
|
1627
1633
|
#
|
1628
1634
|
# @!attribute [rw] stack_id
|
@@ -1696,13 +1702,13 @@ module Aws::CloudFormation
|
|
1696
1702
|
#
|
1697
1703
|
#
|
1698
1704
|
#
|
1699
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1700
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1701
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1702
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1703
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1704
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1705
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1705
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1706
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1707
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1708
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1709
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1710
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1711
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1706
1712
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1707
1713
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1708
1714
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -2571,7 +2577,7 @@ module Aws::CloudFormation
|
|
2571
2577
|
#
|
2572
2578
|
#
|
2573
2579
|
#
|
2574
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
2580
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
2575
2581
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html
|
2576
2582
|
# @return [Boolean]
|
2577
2583
|
#
|
@@ -2933,7 +2939,9 @@ module Aws::CloudFormation
|
|
2933
2939
|
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
2934
2940
|
# template configuration.
|
2935
2941
|
#
|
2936
|
-
# * `UNKNOWN`:
|
2942
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for a
|
2943
|
+
# resource in the stack. See the `DetectionStatusReason` for
|
2944
|
+
# details.
|
2937
2945
|
# @return [String]
|
2938
2946
|
#
|
2939
2947
|
# @!attribute [rw] detection_status
|
@@ -3171,6 +3179,9 @@ module Aws::CloudFormation
|
|
3171
3179
|
#
|
3172
3180
|
# * `NOT_CHECKED`: CloudFormation doesn't currently return this
|
3173
3181
|
# value.
|
3182
|
+
#
|
3183
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for the
|
3184
|
+
# resource.
|
3174
3185
|
# @return [Array<String>]
|
3175
3186
|
#
|
3176
3187
|
# @!attribute [rw] next_token
|
@@ -3259,8 +3270,8 @@ module Aws::CloudFormation
|
|
3259
3270
|
# The output for a DescribeStackResource action.
|
3260
3271
|
#
|
3261
3272
|
# @!attribute [rw] stack_resource_detail
|
3262
|
-
# A `StackResourceDetail` structure
|
3263
|
-
# specified resource in the specified stack.
|
3273
|
+
# A `StackResourceDetail` structure that contains the description of
|
3274
|
+
# the specified resource in the specified stack.
|
3264
3275
|
# @return [Types::StackResourceDetail]
|
3265
3276
|
#
|
3266
3277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResourceOutput AWS API Documentation
|
@@ -4079,7 +4090,7 @@ module Aws::CloudFormation
|
|
4079
4090
|
# The input for an EstimateTemplateCost action.
|
4080
4091
|
#
|
4081
4092
|
# @!attribute [rw] template_body
|
4082
|
-
# Structure
|
4093
|
+
# Structure that contains the template body with a minimum length of 1
|
4083
4094
|
# byte and a maximum length of 51,200 bytes.
|
4084
4095
|
#
|
4085
4096
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
@@ -4087,10 +4098,11 @@ module Aws::CloudFormation
|
|
4087
4098
|
# @return [String]
|
4088
4099
|
#
|
4089
4100
|
# @!attribute [rw] template_url
|
4090
|
-
# The URL of a file
|
4091
|
-
# to a template that's located in an Amazon S3 bucket or a
|
4092
|
-
# Manager document. The location for an Amazon S3 bucket must
|
4093
|
-
# with `https://`.
|
4101
|
+
# The URL of a file that contains the template body. The URL must
|
4102
|
+
# point to a template that's located in an Amazon S3 bucket or a
|
4103
|
+
# Systems Manager document. The location for an Amazon S3 bucket must
|
4104
|
+
# start with `https://`. URLs from S3 static websites are not
|
4105
|
+
# supported.
|
4094
4106
|
#
|
4095
4107
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
4096
4108
|
# are passed, only `TemplateBody` is used.
|
@@ -4321,9 +4333,9 @@ module Aws::CloudFormation
|
|
4321
4333
|
# The output for the GetStackPolicy action.
|
4322
4334
|
#
|
4323
4335
|
# @!attribute [rw] stack_policy_body
|
4324
|
-
# Structure
|
4325
|
-
# see [Prevent updates to stack resources][1] in the
|
4326
|
-
# User Guide*.)
|
4336
|
+
# Structure that contains the stack policy body. (For more
|
4337
|
+
# information, see [Prevent updates to stack resources][1] in the
|
4338
|
+
# *CloudFormation User Guide*.)
|
4327
4339
|
#
|
4328
4340
|
#
|
4329
4341
|
#
|
@@ -4380,7 +4392,7 @@ module Aws::CloudFormation
|
|
4380
4392
|
# The output for GetTemplate action.
|
4381
4393
|
#
|
4382
4394
|
# @!attribute [rw] template_body
|
4383
|
-
# Structure
|
4395
|
+
# Structure that contains the template body.
|
4384
4396
|
#
|
4385
4397
|
# CloudFormation returns the same template that was used when the
|
4386
4398
|
# stack was created.
|
@@ -4406,7 +4418,7 @@ module Aws::CloudFormation
|
|
4406
4418
|
# The input for the GetTemplateSummary action.
|
4407
4419
|
#
|
4408
4420
|
# @!attribute [rw] template_body
|
4409
|
-
# Structure
|
4421
|
+
# Structure that contains the template body with a minimum length of 1
|
4410
4422
|
# byte and a maximum length of 51,200 bytes.
|
4411
4423
|
#
|
4412
4424
|
# Conditional: You must specify only one of the following parameters:
|
@@ -4414,8 +4426,8 @@ module Aws::CloudFormation
|
|
4414
4426
|
# @return [String]
|
4415
4427
|
#
|
4416
4428
|
# @!attribute [rw] template_url
|
4417
|
-
# The URL of a file
|
4418
|
-
# to a template (max size: 1 MB) that's located in an Amazon S3
|
4429
|
+
# The URL of a file that contains the template body. The URL must
|
4430
|
+
# point to a template (max size: 1 MB) that's located in an Amazon S3
|
4419
4431
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
4420
4432
|
# bucket must start with `https://`.
|
4421
4433
|
#
|
@@ -4542,7 +4554,7 @@ module Aws::CloudFormation
|
|
4542
4554
|
# @return [Array<Types::ResourceIdentifierSummary>]
|
4543
4555
|
#
|
4544
4556
|
# @!attribute [rw] warnings
|
4545
|
-
# An object
|
4557
|
+
# An object that contains any warnings returned.
|
4546
4558
|
# @return [Types::Warnings]
|
4547
4559
|
#
|
4548
4560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummaryOutput AWS API Documentation
|
@@ -5857,8 +5869,8 @@ module Aws::CloudFormation
|
|
5857
5869
|
# The output for ListStacks action.
|
5858
5870
|
#
|
5859
5871
|
# @!attribute [rw] stack_summaries
|
5860
|
-
# A list of `StackSummary` structures
|
5861
|
-
# specified stacks.
|
5872
|
+
# A list of `StackSummary` structures that contains information about
|
5873
|
+
# the specified stacks.
|
5862
5874
|
# @return [Array<Types::StackSummary>]
|
5863
5875
|
#
|
5864
5876
|
# @!attribute [rw] next_token
|
@@ -6238,7 +6250,7 @@ module Aws::CloudFormation
|
|
6238
6250
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html
|
6239
6251
|
#
|
6240
6252
|
# @!attribute [rw] type_hierarchy
|
6241
|
-
# A concatenated list of the module type or types
|
6253
|
+
# A concatenated list of the module type or types that contains the
|
6242
6254
|
# resource. Module types are listed starting with the inner-most
|
6243
6255
|
# nested module, and separated by `/`.
|
6244
6256
|
#
|
@@ -6250,8 +6262,8 @@ module Aws::CloudFormation
|
|
6250
6262
|
# @return [String]
|
6251
6263
|
#
|
6252
6264
|
# @!attribute [rw] logical_id_hierarchy
|
6253
|
-
# A concatenated list of the logical IDs of the module or modules
|
6254
|
-
#
|
6265
|
+
# A concatenated list of the logical IDs of the module or modules that
|
6266
|
+
# contains the resource. Modules are listed starting with the
|
6255
6267
|
# inner-most nested module, and separated by `/`.
|
6256
6268
|
#
|
6257
6269
|
# In the following example, the resource was created from a module,
|
@@ -6750,8 +6762,9 @@ module Aws::CloudFormation
|
|
6750
6762
|
# @return [String]
|
6751
6763
|
#
|
6752
6764
|
# @!attribute [rw] schema_handler_package
|
6753
|
-
# A URL to the S3 bucket
|
6754
|
-
# contains the necessary files for the extension you want to
|
6765
|
+
# A URL to the S3 bucket that contains the extension project package
|
6766
|
+
# that contains the necessary files for the extension you want to
|
6767
|
+
# register.
|
6755
6768
|
#
|
6756
6769
|
# For information about generating a schema handler package for the
|
6757
6770
|
# extension you want to register, see [submit][1] in the
|
@@ -6974,13 +6987,13 @@ module Aws::CloudFormation
|
|
6974
6987
|
# @return [Types::ModuleInfo]
|
6975
6988
|
#
|
6976
6989
|
# @!attribute [rw] before_context
|
6977
|
-
# An encoded JSON string
|
6978
|
-
# the change is executed.
|
6990
|
+
# An encoded JSON string that contains the context of the resource
|
6991
|
+
# before the change is executed.
|
6979
6992
|
# @return [String]
|
6980
6993
|
#
|
6981
6994
|
# @!attribute [rw] after_context
|
6982
|
-
# An encoded JSON string
|
6983
|
-
# the change is executed.
|
6995
|
+
# An encoded JSON string that contains the context of the resource
|
6996
|
+
# after the change is executed.
|
6984
6997
|
# @return [String]
|
6985
6998
|
#
|
6986
6999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceChange AWS API Documentation
|
@@ -7463,7 +7476,7 @@ module Aws::CloudFormation
|
|
7463
7476
|
include Aws::Structure
|
7464
7477
|
end
|
7465
7478
|
|
7466
|
-
# Structure
|
7479
|
+
# Structure that contains the rollback triggers for CloudFormation to
|
7467
7480
|
# monitor during stack creation and updating operations, and for the
|
7468
7481
|
# specified monitoring period afterwards.
|
7469
7482
|
#
|
@@ -7600,8 +7613,8 @@ module Aws::CloudFormation
|
|
7600
7613
|
#
|
7601
7614
|
#
|
7602
7615
|
#
|
7603
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7604
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7616
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudwatch-alarm.html
|
7617
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudwatch-compositealarm.html
|
7605
7618
|
# @return [String]
|
7606
7619
|
#
|
7607
7620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
|
@@ -7729,7 +7742,7 @@ module Aws::CloudFormation
|
|
7729
7742
|
# @return [String]
|
7730
7743
|
#
|
7731
7744
|
# @!attribute [rw] stack_policy_body
|
7732
|
-
# Structure
|
7745
|
+
# Structure that contains the stack policy body. For more information,
|
7733
7746
|
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
7734
7747
|
# User Guide*. You can specify either the `StackPolicyBody` or the
|
7735
7748
|
# `StackPolicyURL` parameter, but not both.
|
@@ -7740,12 +7753,14 @@ module Aws::CloudFormation
|
|
7740
7753
|
# @return [String]
|
7741
7754
|
#
|
7742
7755
|
# @!attribute [rw] stack_policy_url
|
7743
|
-
# Location of a file
|
7744
|
-
# to a policy (maximum size: 16 KB) located in an Amazon S3
|
7745
|
-
# the same Amazon Web Services Region as the stack. The
|
7746
|
-
# an Amazon S3 bucket must start with `https://`.
|
7747
|
-
#
|
7748
|
-
#
|
7756
|
+
# Location of a file that contains the stack policy. The URL must
|
7757
|
+
# point to a policy (maximum size: 16 KB) located in an Amazon S3
|
7758
|
+
# bucket in the same Amazon Web Services Region as the stack. The
|
7759
|
+
# location for an Amazon S3 bucket must start with `https://`. URLs
|
7760
|
+
# from S3 static websites are not supported.
|
7761
|
+
#
|
7762
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
7763
|
+
# parameter, but not both.
|
7749
7764
|
# @return [String]
|
7750
7765
|
#
|
7751
7766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetStackPolicyInput AWS API Documentation
|
@@ -8021,13 +8036,12 @@ module Aws::CloudFormation
|
|
8021
8036
|
# @return [Boolean]
|
8022
8037
|
#
|
8023
8038
|
# @!attribute [rw] parent_id
|
8024
|
-
# For nested stacks
|
8025
|
-
#
|
8026
|
-
#
|
8027
|
-
# stack.
|
8039
|
+
# For nested stacks, the stack ID of the direct parent of this stack.
|
8040
|
+
# For the first level of nested stacks, the root stack is also the
|
8041
|
+
# parent stack.
|
8028
8042
|
#
|
8029
|
-
# For more information, see [
|
8030
|
-
#
|
8043
|
+
# For more information, see [Nested stacks][1] in the *CloudFormation
|
8044
|
+
# User Guide*.
|
8031
8045
|
#
|
8032
8046
|
#
|
8033
8047
|
#
|
@@ -8035,12 +8049,11 @@ module Aws::CloudFormation
|
|
8035
8049
|
# @return [String]
|
8036
8050
|
#
|
8037
8051
|
# @!attribute [rw] root_id
|
8038
|
-
# For nested stacks
|
8039
|
-
#
|
8040
|
-
# ultimately belongs.
|
8052
|
+
# For nested stacks, the stack ID of the top-level stack to which the
|
8053
|
+
# nested stack ultimately belongs.
|
8041
8054
|
#
|
8042
|
-
# For more information, see [
|
8043
|
-
#
|
8055
|
+
# For more information, see [Nested stacks][1] in the *CloudFormation
|
8056
|
+
# User Guide*.
|
8044
8057
|
#
|
8045
8058
|
#
|
8046
8059
|
#
|
@@ -8167,7 +8180,8 @@ module Aws::CloudFormation
|
|
8167
8180
|
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
8168
8181
|
# template configuration.
|
8169
8182
|
#
|
8170
|
-
# * `UNKNOWN`:
|
8183
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for a
|
8184
|
+
# resource in the stack.
|
8171
8185
|
# @return [String]
|
8172
8186
|
#
|
8173
8187
|
# @!attribute [rw] last_check_timestamp
|
@@ -8205,7 +8219,8 @@ module Aws::CloudFormation
|
|
8205
8219
|
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
8206
8220
|
# template configuration.
|
8207
8221
|
#
|
8208
|
-
# * `UNKNOWN`:
|
8222
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for a
|
8223
|
+
# resource in the stack.
|
8209
8224
|
# @return [String]
|
8210
8225
|
#
|
8211
8226
|
# @!attribute [rw] last_check_timestamp
|
@@ -8317,8 +8332,8 @@ module Aws::CloudFormation
|
|
8317
8332
|
# @return [String]
|
8318
8333
|
#
|
8319
8334
|
# @!attribute [rw] detailed_status
|
8320
|
-
# An optional field
|
8321
|
-
# of the stack event.
|
8335
|
+
# An optional field that contains information about the detailed
|
8336
|
+
# status of the stack event.
|
8322
8337
|
#
|
8323
8338
|
# * `CONFIGURATION_COMPLETE` - all of the resources in the stack have
|
8324
8339
|
# reached that event. For more information, see [Understand
|
@@ -9110,7 +9125,7 @@ module Aws::CloudFormation
|
|
9110
9125
|
# @return [String]
|
9111
9126
|
#
|
9112
9127
|
# @!attribute [rw] expected_properties
|
9113
|
-
# A JSON structure
|
9128
|
+
# A JSON structure that contains the expected property values of the
|
9114
9129
|
# stack resource, as defined in the stack template and any values
|
9115
9130
|
# specified as template parameters.
|
9116
9131
|
#
|
@@ -9119,8 +9134,8 @@ module Aws::CloudFormation
|
|
9119
9134
|
# @return [String]
|
9120
9135
|
#
|
9121
9136
|
# @!attribute [rw] actual_properties
|
9122
|
-
# A JSON structure
|
9123
|
-
# resource.
|
9137
|
+
# A JSON structure that contains the actual property values of the
|
9138
|
+
# stack resource.
|
9124
9139
|
#
|
9125
9140
|
# For resources whose `StackResourceDriftStatus` is `DELETED`, this
|
9126
9141
|
# structure will not be present.
|
@@ -9148,6 +9163,9 @@ module Aws::CloudFormation
|
|
9148
9163
|
#
|
9149
9164
|
# * `NOT_CHECKED`: CloudFormation does not currently return this
|
9150
9165
|
# value.
|
9166
|
+
#
|
9167
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for the
|
9168
|
+
# resource. See the `DriftStatusReason` for details.
|
9151
9169
|
# @return [String]
|
9152
9170
|
#
|
9153
9171
|
# @!attribute [rw] timestamp
|
@@ -9161,6 +9179,10 @@ module Aws::CloudFormation
|
|
9161
9179
|
# stack template.
|
9162
9180
|
# @return [Types::ModuleInfo]
|
9163
9181
|
#
|
9182
|
+
# @!attribute [rw] drift_status_reason
|
9183
|
+
# The reason for the drift status.
|
9184
|
+
# @return [String]
|
9185
|
+
#
|
9164
9186
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceDrift AWS API Documentation
|
9165
9187
|
#
|
9166
9188
|
class StackResourceDrift < Struct.new(
|
@@ -9174,7 +9196,8 @@ module Aws::CloudFormation
|
|
9174
9196
|
:property_differences,
|
9175
9197
|
:stack_resource_drift_status,
|
9176
9198
|
:timestamp,
|
9177
|
-
:module_info
|
9199
|
+
:module_info,
|
9200
|
+
:drift_status_reason)
|
9178
9201
|
SENSITIVE = []
|
9179
9202
|
include Aws::Structure
|
9180
9203
|
end
|
@@ -9823,8 +9846,8 @@ module Aws::CloudFormation
|
|
9823
9846
|
# the operation is stopped in a Region, CloudFormation doesn't
|
9824
9847
|
# attempt the operation in any subsequent Regions.
|
9825
9848
|
#
|
9826
|
-
#
|
9827
|
-
# `FailureTolerancePercentage
|
9849
|
+
# You can specify either `FailureToleranceCount` or
|
9850
|
+
# `FailureTolerancePercentage`, but not both.
|
9828
9851
|
#
|
9829
9852
|
# By default, `0` is specified.
|
9830
9853
|
# @return [Integer]
|
@@ -9838,7 +9861,7 @@ module Aws::CloudFormation
|
|
9838
9861
|
# When calculating the number of accounts based on the specified
|
9839
9862
|
# percentage, CloudFormation rounds *down* to the next whole number.
|
9840
9863
|
#
|
9841
|
-
#
|
9864
|
+
# You can specify either `FailureToleranceCount` or
|
9842
9865
|
# `FailureTolerancePercentage`, but not both.
|
9843
9866
|
#
|
9844
9867
|
# By default, `0` is specified.
|
@@ -9856,7 +9879,7 @@ module Aws::CloudFormation
|
|
9856
9879
|
# actual number of accounts acted upon concurrently may be lower due
|
9857
9880
|
# to service throttling.
|
9858
9881
|
#
|
9859
|
-
#
|
9882
|
+
# You can specify either `MaxConcurrentCount` or
|
9860
9883
|
# `MaxConcurrentPercentage`, but not both.
|
9861
9884
|
#
|
9862
9885
|
# By default, `1` is specified.
|
@@ -9876,7 +9899,7 @@ module Aws::CloudFormation
|
|
9876
9899
|
# actual number of accounts acted upon concurrently may be lower due
|
9877
9900
|
# to service throttling.
|
9878
9901
|
#
|
9879
|
-
#
|
9902
|
+
# You can specify either `MaxConcurrentCount` or
|
9880
9903
|
# `MaxConcurrentPercentage`, but not both.
|
9881
9904
|
#
|
9882
9905
|
# By default, `1` is specified.
|
@@ -10232,13 +10255,12 @@ module Aws::CloudFormation
|
|
10232
10255
|
# @return [String]
|
10233
10256
|
#
|
10234
10257
|
# @!attribute [rw] parent_id
|
10235
|
-
# For nested stacks
|
10236
|
-
#
|
10237
|
-
#
|
10238
|
-
# stack.
|
10258
|
+
# For nested stacks, the stack ID of the direct parent of this stack.
|
10259
|
+
# For the first level of nested stacks, the root stack is also the
|
10260
|
+
# parent stack.
|
10239
10261
|
#
|
10240
|
-
# For more information, see [
|
10241
|
-
#
|
10262
|
+
# For more information, see [Nested stacks][1] in the *CloudFormation
|
10263
|
+
# User Guide*.
|
10242
10264
|
#
|
10243
10265
|
#
|
10244
10266
|
#
|
@@ -10246,12 +10268,11 @@ module Aws::CloudFormation
|
|
10246
10268
|
# @return [String]
|
10247
10269
|
#
|
10248
10270
|
# @!attribute [rw] root_id
|
10249
|
-
# For nested stacks
|
10250
|
-
#
|
10251
|
-
# ultimately belongs.
|
10271
|
+
# For nested stacks, the stack ID of the top-level stack to which the
|
10272
|
+
# nested stack ultimately belongs.
|
10252
10273
|
#
|
10253
|
-
# For more information, see [
|
10254
|
-
#
|
10274
|
+
# For more information, see [Nested stacks][1] in the *CloudFormation
|
10275
|
+
# User Guide*.
|
10255
10276
|
#
|
10256
10277
|
#
|
10257
10278
|
#
|
@@ -10387,7 +10408,7 @@ module Aws::CloudFormation
|
|
10387
10408
|
# @return [String]
|
10388
10409
|
#
|
10389
10410
|
# @!attribute [rw] value
|
10390
|
-
# *Required*. A string
|
10411
|
+
# *Required*. A string that contains the value for this tag. You can
|
10391
10412
|
# specify a maximum of 256 characters for a tag value.
|
10392
10413
|
# @return [String]
|
10393
10414
|
#
|
@@ -11147,7 +11168,7 @@ module Aws::CloudFormation
|
|
11147
11168
|
# @return [String]
|
11148
11169
|
#
|
11149
11170
|
# @!attribute [rw] template_body
|
11150
|
-
# Structure
|
11171
|
+
# Structure that contains the template body with a minimum length of 1
|
11151
11172
|
# byte and a maximum length of 51,200 bytes.
|
11152
11173
|
#
|
11153
11174
|
# Conditional: You must specify only one of the following parameters:
|
@@ -11156,10 +11177,10 @@ module Aws::CloudFormation
|
|
11156
11177
|
# @return [String]
|
11157
11178
|
#
|
11158
11179
|
# @!attribute [rw] template_url
|
11159
|
-
# The URL of a file
|
11160
|
-
# to a template that's located in an Amazon S3 bucket or a
|
11161
|
-
# Manager document. The location for an Amazon S3 bucket must
|
11162
|
-
# with `https://`.
|
11180
|
+
# The URL of a file that contains the template body. The URL must
|
11181
|
+
# point to a template that's located in an Amazon S3 bucket or a
|
11182
|
+
# Systems Manager document. The location for an Amazon S3 bucket must
|
11183
|
+
# start with `https://`.
|
11163
11184
|
#
|
11164
11185
|
# Conditional: You must specify only one of the following parameters:
|
11165
11186
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -11176,8 +11197,8 @@ module Aws::CloudFormation
|
|
11176
11197
|
# @return [Boolean]
|
11177
11198
|
#
|
11178
11199
|
# @!attribute [rw] stack_policy_during_update_body
|
11179
|
-
# Structure
|
11180
|
-
# can specify either the `StackPolicyDuringUpdateBody` or the
|
11200
|
+
# Structure that contains the temporary overriding stack policy body.
|
11201
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
11181
11202
|
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
11182
11203
|
#
|
11183
11204
|
# If you want to update protected resources, specify a temporary
|
@@ -11187,12 +11208,14 @@ module Aws::CloudFormation
|
|
11187
11208
|
# @return [String]
|
11188
11209
|
#
|
11189
11210
|
# @!attribute [rw] stack_policy_during_update_url
|
11190
|
-
# Location of a file
|
11191
|
-
# The URL must point to a policy (max size: 16KB) located in
|
11192
|
-
# bucket in the same Region as the stack. The location for an
|
11193
|
-
# S3 bucket must start with `https://`.
|
11194
|
-
#
|
11195
|
-
#
|
11211
|
+
# Location of a file that contains the temporary overriding stack
|
11212
|
+
# policy. The URL must point to a policy (max size: 16KB) located in
|
11213
|
+
# an S3 bucket in the same Region as the stack. The location for an
|
11214
|
+
# Amazon S3 bucket must start with `https://`. URLs from S3 static
|
11215
|
+
# websites are not supported.
|
11216
|
+
#
|
11217
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
11218
|
+
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
11196
11219
|
#
|
11197
11220
|
# If you want to update protected resources, specify a temporary
|
11198
11221
|
# overriding stack policy during this update. If you don't specify a
|
@@ -11290,14 +11313,14 @@ module Aws::CloudFormation
|
|
11290
11313
|
#
|
11291
11314
|
#
|
11292
11315
|
#
|
11293
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11294
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11295
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11296
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11297
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11298
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11299
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11300
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11316
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
11317
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
11318
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
11319
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
11320
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
11321
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
11322
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
11323
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
11301
11324
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
11302
11325
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
11303
11326
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -11348,9 +11371,9 @@ module Aws::CloudFormation
|
|
11348
11371
|
# @return [Types::RollbackConfiguration]
|
11349
11372
|
#
|
11350
11373
|
# @!attribute [rw] stack_policy_body
|
11351
|
-
# Structure
|
11352
|
-
# the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
11353
|
-
# both.
|
11374
|
+
# Structure that contains a new stack policy body. You can specify
|
11375
|
+
# either the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
11376
|
+
# not both.
|
11354
11377
|
#
|
11355
11378
|
# You might update the stack policy, for example, in order to protect
|
11356
11379
|
# a new resource that you created during a stack update. If you don't
|
@@ -11359,11 +11382,14 @@ module Aws::CloudFormation
|
|
11359
11382
|
# @return [String]
|
11360
11383
|
#
|
11361
11384
|
# @!attribute [rw] stack_policy_url
|
11362
|
-
# Location of a file
|
11363
|
-
# point to a policy (max size: 16KB) located in an S3 bucket in
|
11364
|
-
# same Region as the stack. The location for an Amazon S3 bucket
|
11365
|
-
# start with `https://`.
|
11366
|
-
#
|
11385
|
+
# Location of a file that contains the updated stack policy. The URL
|
11386
|
+
# must point to a policy (max size: 16KB) located in an S3 bucket in
|
11387
|
+
# the same Region as the stack. The location for an Amazon S3 bucket
|
11388
|
+
# must start with `https://`. URLs from S3 static websites are not
|
11389
|
+
# supported.
|
11390
|
+
#
|
11391
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
11392
|
+
# parameter, but not both.
|
11367
11393
|
#
|
11368
11394
|
# You might update the stack policy, for example, in order to protect
|
11369
11395
|
# a new resource that you created during a stack update. If you don't
|
@@ -11630,7 +11656,8 @@ module Aws::CloudFormation
|
|
11630
11656
|
# The URL of a file that contains the template body. The URL must
|
11631
11657
|
# point to a template (maximum size: 1 MB) that is located in an
|
11632
11658
|
# Amazon S3 bucket or a Systems Manager document. The location for an
|
11633
|
-
# Amazon S3 bucket must start with `https://`.
|
11659
|
+
# Amazon S3 bucket must start with `https://`. S3 static website URLs
|
11660
|
+
# are not supported.
|
11634
11661
|
#
|
11635
11662
|
# Conditional: You must specify only one of the following parameters:
|
11636
11663
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to
|
@@ -11712,13 +11739,13 @@ module Aws::CloudFormation
|
|
11712
11739
|
#
|
11713
11740
|
#
|
11714
11741
|
#
|
11715
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11716
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11717
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11718
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11719
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11720
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11721
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
11742
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
11743
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
11744
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
11745
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
11746
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
11747
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
11748
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
11722
11749
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
11723
11750
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
11724
11751
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -12014,7 +12041,7 @@ module Aws::CloudFormation
|
|
12014
12041
|
# The input for ValidateTemplate action.
|
12015
12042
|
#
|
12016
12043
|
# @!attribute [rw] template_body
|
12017
|
-
# Structure
|
12044
|
+
# Structure that contains the template body with a minimum length of 1
|
12018
12045
|
# byte and a maximum length of 51,200 bytes.
|
12019
12046
|
#
|
12020
12047
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
@@ -12022,8 +12049,8 @@ module Aws::CloudFormation
|
|
12022
12049
|
# @return [String]
|
12023
12050
|
#
|
12024
12051
|
# @!attribute [rw] template_url
|
12025
|
-
# The URL of a file
|
12026
|
-
# to a template (max size: 1 MB) that is located in an Amazon S3
|
12052
|
+
# The URL of a file that contains the template body. The URL must
|
12053
|
+
# point to a template (max size: 1 MB) that is located in an Amazon S3
|
12027
12054
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
12028
12055
|
# bucket must start with `https://`.
|
12029
12056
|
#
|