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
@@ -880,7 +880,7 @@ module Aws::CloudFormation
|
|
880
880
|
# bucket or a Systems Manager document. CloudFormation generates the
|
881
881
|
# change set by comparing this template with the stack that you
|
882
882
|
# specified. The location for an Amazon S3 bucket must start with
|
883
|
-
# `https://`.
|
883
|
+
# `https://`. URLs from S3 static websites are not supported.
|
884
884
|
#
|
885
885
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
886
886
|
#
|
@@ -971,14 +971,14 @@ module Aws::CloudFormation
|
|
971
971
|
#
|
972
972
|
#
|
973
973
|
#
|
974
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
975
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
976
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
977
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
978
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
979
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
980
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
981
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
974
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
975
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
976
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
977
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
978
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
979
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
980
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
981
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
982
982
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
983
983
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
984
984
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -1104,22 +1104,23 @@ module Aws::CloudFormation
|
|
1104
1104
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
|
1105
1105
|
#
|
1106
1106
|
# @option params [Boolean] :import_existing_resources
|
1107
|
-
# Indicates if the change set imports resources that already exist.
|
1107
|
+
# Indicates if the change set auto-imports resources that already exist.
|
1108
|
+
# For more information, see [Import Amazon Web Services resources into a
|
1109
|
+
# CloudFormation stack automatically][1] in the *CloudFormation User
|
1110
|
+
# Guide*.
|
1108
1111
|
#
|
1109
1112
|
# <note markdown="1"> This parameter can only import resources that have custom names in
|
1110
|
-
# templates. For more information, see [name type][
|
1113
|
+
# templates. For more information, see [name type][2] in the
|
1111
1114
|
# *CloudFormation User Guide*. To import resources that do not accept
|
1112
|
-
# custom names, such as EC2 instances, use the
|
1113
|
-
# instead.
|
1114
|
-
# resources into a CloudFormation stack with a resource import][2] in
|
1115
|
-
# the *CloudFormation User Guide*.
|
1115
|
+
# custom names, such as EC2 instances, use the `ResourcesToImport`
|
1116
|
+
# parameter instead.
|
1116
1117
|
#
|
1117
1118
|
# </note>
|
1118
1119
|
#
|
1119
1120
|
#
|
1120
1121
|
#
|
1121
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1122
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1122
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/import-resources-automatically.html
|
1123
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
1123
1124
|
#
|
1124
1125
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1125
1126
|
#
|
@@ -1303,17 +1304,18 @@ module Aws::CloudFormation
|
|
1303
1304
|
# </note>
|
1304
1305
|
#
|
1305
1306
|
# @option params [String] :template_body
|
1306
|
-
# Structure
|
1307
|
-
# and a maximum length of 51,200 bytes.
|
1307
|
+
# Structure that contains the template body with a minimum length of 1
|
1308
|
+
# byte and a maximum length of 51,200 bytes.
|
1308
1309
|
#
|
1309
|
-
# Conditional: You must specify either
|
1310
|
-
#
|
1310
|
+
# Conditional: You must specify either `TemplateBody` or `TemplateURL`,
|
1311
|
+
# but not both.
|
1311
1312
|
#
|
1312
1313
|
# @option params [String] :template_url
|
1313
|
-
# The URL of a file
|
1314
|
-
# a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
1315
|
-
# a Systems Manager document. The location for an Amazon S3 bucket
|
1316
|
-
# start with `https://`.
|
1314
|
+
# The URL of a file that contains the template body. The URL must point
|
1315
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
1316
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
1317
|
+
# must start with `https://`. URLs from S3 static websites are not
|
1318
|
+
# supported.
|
1317
1319
|
#
|
1318
1320
|
# Conditional: You must specify either the `TemplateBody` or the
|
1319
1321
|
# `TemplateURL` parameter, but not both.
|
@@ -1429,14 +1431,14 @@ module Aws::CloudFormation
|
|
1429
1431
|
#
|
1430
1432
|
#
|
1431
1433
|
#
|
1432
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1433
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1434
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1435
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1436
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1437
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1438
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1439
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1434
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1435
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1436
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1437
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
1438
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1439
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1440
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1441
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1440
1442
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1441
1443
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
1442
1444
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -1491,9 +1493,9 @@ module Aws::CloudFormation
|
|
1491
1493
|
# Default: `ROLLBACK`
|
1492
1494
|
#
|
1493
1495
|
# @option params [String] :stack_policy_body
|
1494
|
-
# Structure
|
1495
|
-
# [Prevent updates to stack resources][1] in the *CloudFormation
|
1496
|
-
# Guide*. You can specify either the `StackPolicyBody` or the
|
1496
|
+
# Structure that contains the stack policy body. For more information,
|
1497
|
+
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
1498
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
1497
1499
|
# `StackPolicyURL` parameter, but not both.
|
1498
1500
|
#
|
1499
1501
|
#
|
@@ -1501,11 +1503,13 @@ module Aws::CloudFormation
|
|
1501
1503
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
1502
1504
|
#
|
1503
1505
|
# @option params [String] :stack_policy_url
|
1504
|
-
# Location of a file
|
1505
|
-
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
1506
|
+
# Location of a file that contains the stack policy. The URL must point
|
1507
|
+
# to a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
1506
1508
|
# Region as the stack. The location for an Amazon S3 bucket must start
|
1507
|
-
# with `https://`.
|
1508
|
-
#
|
1509
|
+
# with `https://`. URLs from S3 static websites are not supported.
|
1510
|
+
#
|
1511
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
1512
|
+
# parameter, but not both.
|
1509
1513
|
#
|
1510
1514
|
# @option params [Array<Types::Tag>] :tags
|
1511
1515
|
# Key-value pairs to associate with this stack. CloudFormation also
|
@@ -1622,6 +1626,20 @@ module Aws::CloudFormation
|
|
1622
1626
|
# value for either `Accounts` or `DeploymentTargets`, and you must
|
1623
1627
|
# specify at least one value for `Regions`.
|
1624
1628
|
#
|
1629
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
1630
|
+
# `CreateStackInstances` operation is 50.
|
1631
|
+
#
|
1632
|
+
# If you need more than 50, consider the following options:
|
1633
|
+
#
|
1634
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
1635
|
+
# split up the operations into multiple calls with less than 50 OUs
|
1636
|
+
# each.
|
1637
|
+
#
|
1638
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
1639
|
+
# target a parent OU that contains all desired child OUs.
|
1640
|
+
#
|
1641
|
+
# </note>
|
1642
|
+
#
|
1625
1643
|
# @option params [required, String] :stack_set_name
|
1626
1644
|
# The name or unique ID of the stack set that you want to create stack
|
1627
1645
|
# instances from.
|
@@ -1851,17 +1869,18 @@ module Aws::CloudFormation
|
|
1851
1869
|
# The structure that contains the template body, with a minimum length
|
1852
1870
|
# of 1 byte and a maximum length of 51,200 bytes.
|
1853
1871
|
#
|
1854
|
-
# Conditional: You must specify either the TemplateBody or the
|
1855
|
-
# TemplateURL parameter, but not both.
|
1872
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1873
|
+
# `TemplateURL` parameter, but not both.
|
1856
1874
|
#
|
1857
1875
|
# @option params [String] :template_url
|
1858
1876
|
# The URL of a file that contains the template body. The URL must point
|
1859
1877
|
# to a template (maximum size: 1 MB) that's located in an Amazon S3
|
1860
1878
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
1861
|
-
# bucket must start with `https://`.
|
1879
|
+
# bucket must start with `https://`. S3 static website URLs are not
|
1880
|
+
# supported.
|
1862
1881
|
#
|
1863
|
-
# Conditional: You must specify either the TemplateBody or the
|
1864
|
-
# TemplateURL parameter, but not both.
|
1882
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1883
|
+
# `TemplateURL` parameter, but not both.
|
1865
1884
|
#
|
1866
1885
|
# @option params [String] :stack_id
|
1867
1886
|
# The stack ID you are importing into a new stack set. Specify the
|
@@ -1932,13 +1951,13 @@ module Aws::CloudFormation
|
|
1932
1951
|
#
|
1933
1952
|
#
|
1934
1953
|
#
|
1935
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1936
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1937
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1938
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1939
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1940
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1941
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1954
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1955
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1956
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1957
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1958
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1959
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1960
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1942
1961
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1943
1962
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1944
1963
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -2330,6 +2349,20 @@ module Aws::CloudFormation
|
|
2330
2349
|
# Deletes stack instances for the specified accounts, in the specified
|
2331
2350
|
# Amazon Web Services Regions.
|
2332
2351
|
#
|
2352
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
2353
|
+
# `DeleteStackInstances` operation is 50.
|
2354
|
+
#
|
2355
|
+
# If you need more than 50, consider the following options:
|
2356
|
+
#
|
2357
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
2358
|
+
# split up the operations into multiple calls with less than 50 OUs
|
2359
|
+
# each.
|
2360
|
+
#
|
2361
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
2362
|
+
# target a parent OU that contains all desired child OUs.
|
2363
|
+
#
|
2364
|
+
# </note>
|
2365
|
+
#
|
2333
2366
|
# @option params [required, String] :stack_set_name
|
2334
2367
|
# The name or unique ID of the stack set that you want to delete stack
|
2335
2368
|
# instances for.
|
@@ -3450,7 +3483,7 @@ module Aws::CloudFormation
|
|
3450
3483
|
# resp.stack_resource_detail.resource_status_reason #=> String
|
3451
3484
|
# resp.stack_resource_detail.description #=> String
|
3452
3485
|
# resp.stack_resource_detail.metadata #=> String
|
3453
|
-
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
3486
|
+
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3454
3487
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
3455
3488
|
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
3456
3489
|
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
@@ -3502,6 +3535,9 @@ module Aws::CloudFormation
|
|
3502
3535
|
#
|
3503
3536
|
# * `NOT_CHECKED`: CloudFormation doesn't currently return this value.
|
3504
3537
|
#
|
3538
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for the
|
3539
|
+
# resource.
|
3540
|
+
#
|
3505
3541
|
# @option params [String] :next_token
|
3506
3542
|
# A string that identifies the next page of stack resource drift
|
3507
3543
|
# results.
|
@@ -3523,7 +3559,7 @@ module Aws::CloudFormation
|
|
3523
3559
|
#
|
3524
3560
|
# resp = client.describe_stack_resource_drifts({
|
3525
3561
|
# stack_name: "StackNameOrId", # required
|
3526
|
-
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
3562
|
+
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
3527
3563
|
# next_token: "NextToken",
|
3528
3564
|
# max_results: 1,
|
3529
3565
|
# })
|
@@ -3545,10 +3581,11 @@ module Aws::CloudFormation
|
|
3545
3581
|
# resp.stack_resource_drifts[0].property_differences[0].expected_value #=> String
|
3546
3582
|
# resp.stack_resource_drifts[0].property_differences[0].actual_value #=> String
|
3547
3583
|
# resp.stack_resource_drifts[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
3548
|
-
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
3584
|
+
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3549
3585
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
3550
3586
|
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
3551
3587
|
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
3588
|
+
# resp.stack_resource_drifts[0].drift_status_reason #=> String
|
3552
3589
|
# resp.next_token #=> String
|
3553
3590
|
#
|
3554
3591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResourceDrifts AWS API Documentation
|
@@ -3640,7 +3677,7 @@ module Aws::CloudFormation
|
|
3640
3677
|
# resp.stack_resources[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "EXPORT_FAILED", "EXPORT_COMPLETE", "EXPORT_IN_PROGRESS", "EXPORT_ROLLBACK_IN_PROGRESS", "EXPORT_ROLLBACK_FAILED", "EXPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
|
3641
3678
|
# resp.stack_resources[0].resource_status_reason #=> String
|
3642
3679
|
# resp.stack_resources[0].description #=> String
|
3643
|
-
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
3680
|
+
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3644
3681
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
3645
3682
|
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
3646
3683
|
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
@@ -3656,6 +3693,11 @@ module Aws::CloudFormation
|
|
3656
3693
|
|
3657
3694
|
# Returns the description of the specified StackSet.
|
3658
3695
|
#
|
3696
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
3697
|
+
# return the most up-to-date data.
|
3698
|
+
#
|
3699
|
+
# </note>
|
3700
|
+
#
|
3659
3701
|
# @option params [required, String] :stack_set_name
|
3660
3702
|
# The name or unique ID of the stack set whose description you want.
|
3661
3703
|
#
|
@@ -3740,6 +3782,11 @@ module Aws::CloudFormation
|
|
3740
3782
|
|
3741
3783
|
# Returns the description of the specified StackSet operation.
|
3742
3784
|
#
|
3785
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
3786
|
+
# return the most up-to-date data.
|
3787
|
+
#
|
3788
|
+
# </note>
|
3789
|
+
#
|
3743
3790
|
# @option params [required, String] :stack_set_name
|
3744
3791
|
# The name or the unique stack ID of the stack set for the stack
|
3745
3792
|
# operation.
|
@@ -4248,10 +4295,11 @@ module Aws::CloudFormation
|
|
4248
4295
|
# resp.stack_resource_drift.property_differences[0].expected_value #=> String
|
4249
4296
|
# resp.stack_resource_drift.property_differences[0].actual_value #=> String
|
4250
4297
|
# resp.stack_resource_drift.property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
4251
|
-
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
4298
|
+
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
4252
4299
|
# resp.stack_resource_drift.timestamp #=> Time
|
4253
4300
|
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
4254
4301
|
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
4302
|
+
# resp.stack_resource_drift.drift_status_reason #=> String
|
4255
4303
|
#
|
4256
4304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DetectStackResourceDrift AWS API Documentation
|
4257
4305
|
#
|
@@ -4383,17 +4431,17 @@ module Aws::CloudFormation
|
|
4383
4431
|
# string that describes the resources required to run the template.
|
4384
4432
|
#
|
4385
4433
|
# @option params [String] :template_body
|
4386
|
-
# Structure
|
4387
|
-
# and a maximum length of 51,200 bytes.
|
4434
|
+
# Structure that contains the template body with a minimum length of 1
|
4435
|
+
# byte and a maximum length of 51,200 bytes.
|
4388
4436
|
#
|
4389
4437
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
4390
4438
|
# are passed, only `TemplateBody` is used.
|
4391
4439
|
#
|
4392
4440
|
# @option params [String] :template_url
|
4393
|
-
# The URL of a file
|
4394
|
-
# a template that's located in an Amazon S3 bucket or a Systems
|
4395
|
-
# document. The location for an Amazon S3 bucket must start with
|
4396
|
-
# `https://`.
|
4441
|
+
# The URL of a file that contains the template body. The URL must point
|
4442
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
4443
|
+
# Manager document. The location for an Amazon S3 bucket must start with
|
4444
|
+
# `https://`. URLs from S3 static websites are not supported.
|
4397
4445
|
#
|
4398
4446
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
4399
4447
|
# are passed, only `TemplateBody` is used.
|
@@ -4720,17 +4768,17 @@ module Aws::CloudFormation
|
|
4720
4768
|
# template doesn't exist, a `ValidationError` is returned.
|
4721
4769
|
#
|
4722
4770
|
# @option params [String] :template_body
|
4723
|
-
# Structure
|
4724
|
-
# and a maximum length of 51,200 bytes.
|
4771
|
+
# Structure that contains the template body with a minimum length of 1
|
4772
|
+
# byte and a maximum length of 51,200 bytes.
|
4725
4773
|
#
|
4726
4774
|
# Conditional: You must specify only one of the following parameters:
|
4727
4775
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
4728
4776
|
#
|
4729
4777
|
# @option params [String] :template_url
|
4730
|
-
# The URL of a file
|
4731
|
-
# a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
4732
|
-
# a Systems Manager document. The location for an Amazon S3 bucket
|
4733
|
-
# start with `https://`.
|
4778
|
+
# The URL of a file that contains the template body. The URL must point
|
4779
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
4780
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
4781
|
+
# must start with `https://`.
|
4734
4782
|
#
|
4735
4783
|
# Conditional: You must specify only one of the following parameters:
|
4736
4784
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -5641,7 +5689,7 @@ module Aws::CloudFormation
|
|
5641
5689
|
# stack_set_name: "StackSetNameOrId", # required
|
5642
5690
|
# next_token: "NextToken",
|
5643
5691
|
# max_results: 1,
|
5644
|
-
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
5692
|
+
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
5645
5693
|
# stack_instance_account: "Account", # required
|
5646
5694
|
# stack_instance_region: "Region", # required
|
5647
5695
|
# operation_id: "ClientRequestToken", # required
|
@@ -5663,7 +5711,7 @@ module Aws::CloudFormation
|
|
5663
5711
|
# resp.summaries[0].property_differences[0].expected_value #=> String
|
5664
5712
|
# resp.summaries[0].property_differences[0].actual_value #=> String
|
5665
5713
|
# resp.summaries[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
5666
|
-
# resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
5714
|
+
# resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
5667
5715
|
# resp.summaries[0].timestamp #=> Time
|
5668
5716
|
# resp.next_token #=> String
|
5669
5717
|
#
|
@@ -5941,7 +5989,7 @@ module Aws::CloudFormation
|
|
5941
5989
|
# resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
|
5942
5990
|
# resp.stack_resource_summaries[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "EXPORT_FAILED", "EXPORT_COMPLETE", "EXPORT_IN_PROGRESS", "EXPORT_ROLLBACK_IN_PROGRESS", "EXPORT_ROLLBACK_FAILED", "EXPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
|
5943
5991
|
# resp.stack_resource_summaries[0].resource_status_reason #=> String
|
5944
|
-
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
5992
|
+
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
5945
5993
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
5946
5994
|
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
5947
5995
|
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
@@ -6028,6 +6076,11 @@ module Aws::CloudFormation
|
|
6028
6076
|
# Returns summary information about the results of a stack set
|
6029
6077
|
# operation.
|
6030
6078
|
#
|
6079
|
+
# <note markdown="1"> This API provides *eventually consistent* reads meaning it may take
|
6080
|
+
# some time but will eventually return the most up-to-date data.
|
6081
|
+
#
|
6082
|
+
# </note>
|
6083
|
+
#
|
6031
6084
|
# @option params [required, String] :stack_set_name
|
6032
6085
|
# The name or unique ID of the stack set that you want to get operation
|
6033
6086
|
# results for.
|
@@ -6120,6 +6173,11 @@ module Aws::CloudFormation
|
|
6120
6173
|
|
6121
6174
|
# Returns summary information about operations performed on a stack set.
|
6122
6175
|
#
|
6176
|
+
# <note markdown="1"> This API provides *eventually consistent* reads meaning it may take
|
6177
|
+
# some time but will eventually return the most up-to-date data.
|
6178
|
+
#
|
6179
|
+
# </note>
|
6180
|
+
#
|
6123
6181
|
# @option params [required, String] :stack_set_name
|
6124
6182
|
# The name or unique ID of the stack set that you want to get operation
|
6125
6183
|
# summaries for.
|
@@ -6209,6 +6267,11 @@ module Aws::CloudFormation
|
|
6209
6267
|
# Returns summary information about stack sets that are associated with
|
6210
6268
|
# the user.
|
6211
6269
|
#
|
6270
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
6271
|
+
# return the most up-to-date data.
|
6272
|
+
#
|
6273
|
+
# </note>
|
6274
|
+
#
|
6212
6275
|
# * \[Self-managed permissions\] If you set the `CallAs` parameter to
|
6213
6276
|
# `SELF` while signed in to your Amazon Web Services account,
|
6214
6277
|
# `ListStackSets` returns all self-managed stack sets in your Amazon
|
@@ -6947,8 +7010,9 @@ module Aws::CloudFormation
|
|
6947
7010
|
# </note>
|
6948
7011
|
#
|
6949
7012
|
# @option params [required, String] :schema_handler_package
|
6950
|
-
# A URL to the S3 bucket
|
6951
|
-
# contains the necessary files for the extension you want to
|
7013
|
+
# A URL to the S3 bucket that contains the extension project package
|
7014
|
+
# that contains the necessary files for the extension you want to
|
7015
|
+
# register.
|
6952
7016
|
#
|
6953
7017
|
# For information about generating a schema handler package for the
|
6954
7018
|
# extension you want to register, see [submit][1] in the *CloudFormation
|
@@ -7104,9 +7168,9 @@ module Aws::CloudFormation
|
|
7104
7168
|
# The name or unique stack ID that you want to associate a policy with.
|
7105
7169
|
#
|
7106
7170
|
# @option params [String] :stack_policy_body
|
7107
|
-
# Structure
|
7108
|
-
# [Prevent updates to stack resources][1] in the *CloudFormation
|
7109
|
-
# Guide*. You can specify either the `StackPolicyBody` or the
|
7171
|
+
# Structure that contains the stack policy body. For more information,
|
7172
|
+
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
7173
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
7110
7174
|
# `StackPolicyURL` parameter, but not both.
|
7111
7175
|
#
|
7112
7176
|
#
|
@@ -7114,11 +7178,14 @@ module Aws::CloudFormation
|
|
7114
7178
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
7115
7179
|
#
|
7116
7180
|
# @option params [String] :stack_policy_url
|
7117
|
-
# Location of a file
|
7118
|
-
# a policy (maximum size: 16 KB) located in an Amazon S3 bucket in
|
7119
|
-
# same Amazon Web Services Region as the stack. The location for an
|
7120
|
-
# Amazon S3 bucket must start with `https://`.
|
7121
|
-
#
|
7181
|
+
# Location of a file that contains the stack policy. The URL must point
|
7182
|
+
# to a policy (maximum size: 16 KB) located in an Amazon S3 bucket in
|
7183
|
+
# the same Amazon Web Services Region as the stack. The location for an
|
7184
|
+
# Amazon S3 bucket must start with `https://`. URLs from S3 static
|
7185
|
+
# websites are not supported.
|
7186
|
+
#
|
7187
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
7188
|
+
# parameter, but not both.
|
7122
7189
|
#
|
7123
7190
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7124
7191
|
#
|
@@ -7691,17 +7758,17 @@ module Aws::CloudFormation
|
|
7691
7758
|
# The name or unique stack ID of the stack to update.
|
7692
7759
|
#
|
7693
7760
|
# @option params [String] :template_body
|
7694
|
-
# Structure
|
7695
|
-
# and a maximum length of 51,200 bytes.
|
7761
|
+
# Structure that contains the template body with a minimum length of 1
|
7762
|
+
# byte and a maximum length of 51,200 bytes.
|
7696
7763
|
#
|
7697
7764
|
# Conditional: You must specify only one of the following parameters:
|
7698
7765
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
7699
7766
|
# `true`.
|
7700
7767
|
#
|
7701
7768
|
# @option params [String] :template_url
|
7702
|
-
# The URL of a file
|
7703
|
-
# a template that's located in an Amazon S3 bucket or a Systems
|
7704
|
-
# document. The location for an Amazon S3 bucket must start with
|
7769
|
+
# The URL of a file that contains the template body. The URL must point
|
7770
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
7771
|
+
# Manager document. The location for an Amazon S3 bucket must start with
|
7705
7772
|
# `https://`.
|
7706
7773
|
#
|
7707
7774
|
# Conditional: You must specify only one of the following parameters:
|
@@ -7717,8 +7784,8 @@ module Aws::CloudFormation
|
|
7717
7784
|
# `true`.
|
7718
7785
|
#
|
7719
7786
|
# @option params [String] :stack_policy_during_update_body
|
7720
|
-
# Structure
|
7721
|
-
# can specify either the `StackPolicyDuringUpdateBody` or the
|
7787
|
+
# Structure that contains the temporary overriding stack policy body.
|
7788
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
7722
7789
|
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
7723
7790
|
#
|
7724
7791
|
# If you want to update protected resources, specify a temporary
|
@@ -7727,12 +7794,14 @@ module Aws::CloudFormation
|
|
7727
7794
|
# will be used.
|
7728
7795
|
#
|
7729
7796
|
# @option params [String] :stack_policy_during_update_url
|
7730
|
-
# Location of a file
|
7731
|
-
# The URL must point to a policy (max size: 16KB) located in an
|
7732
|
-
# bucket in the same Region as the stack. The location for an Amazon
|
7733
|
-
# bucket must start with `https://`.
|
7734
|
-
#
|
7735
|
-
#
|
7797
|
+
# Location of a file that contains the temporary overriding stack
|
7798
|
+
# policy. The URL must point to a policy (max size: 16KB) located in an
|
7799
|
+
# S3 bucket in the same Region as the stack. The location for an Amazon
|
7800
|
+
# S3 bucket must start with `https://`. URLs from S3 static websites are
|
7801
|
+
# not supported.
|
7802
|
+
#
|
7803
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
7804
|
+
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
7736
7805
|
#
|
7737
7806
|
# If you want to update protected resources, specify a temporary
|
7738
7807
|
# overriding stack policy during this update. If you don't specify a
|
@@ -7828,14 +7897,14 @@ module Aws::CloudFormation
|
|
7828
7897
|
#
|
7829
7898
|
#
|
7830
7899
|
#
|
7831
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7832
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7833
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7834
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7835
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7836
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7837
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7838
|
-
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
7900
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
7901
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
7902
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
7903
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
7904
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
7905
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
7906
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
7907
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
7839
7908
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
7840
7909
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
7841
7910
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -7882,8 +7951,9 @@ module Aws::CloudFormation
|
|
7882
7951
|
# period afterwards.
|
7883
7952
|
#
|
7884
7953
|
# @option params [String] :stack_policy_body
|
7885
|
-
# Structure
|
7886
|
-
# the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
7954
|
+
# Structure that contains a new stack policy body. You can specify
|
7955
|
+
# either the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
7956
|
+
# not both.
|
7887
7957
|
#
|
7888
7958
|
# You might update the stack policy, for example, in order to protect a
|
7889
7959
|
# new resource that you created during a stack update. If you don't
|
@@ -7891,11 +7961,13 @@ module Aws::CloudFormation
|
|
7891
7961
|
# stack is unchanged.
|
7892
7962
|
#
|
7893
7963
|
# @option params [String] :stack_policy_url
|
7894
|
-
# Location of a file
|
7895
|
-
# point to a policy (max size: 16KB) located in an S3 bucket in the
|
7896
|
-
# Region as the stack. The location for an Amazon S3 bucket must
|
7897
|
-
# with `https://`.
|
7898
|
-
#
|
7964
|
+
# Location of a file that contains the updated stack policy. The URL
|
7965
|
+
# must point to a policy (max size: 16KB) located in an S3 bucket in the
|
7966
|
+
# same Region as the stack. The location for an Amazon S3 bucket must
|
7967
|
+
# start with `https://`. URLs from S3 static websites are not supported.
|
7968
|
+
#
|
7969
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
7970
|
+
# parameter, but not both.
|
7899
7971
|
#
|
7900
7972
|
# You might update the stack policy, for example, in order to protect a
|
7901
7973
|
# new resource that you created during a stack update. If you don't
|
@@ -8031,6 +8103,20 @@ module Aws::CloudFormation
|
|
8031
8103
|
# updated with the new parameter, you can then override the parameter
|
8032
8104
|
# value using `UpdateStackInstances`.
|
8033
8105
|
#
|
8106
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
8107
|
+
# `UpdateStackInstances` operation is 50.
|
8108
|
+
#
|
8109
|
+
# If you need more than 50, consider the following options:
|
8110
|
+
#
|
8111
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
8112
|
+
# split up the operations into multiple calls with less than 50 OUs
|
8113
|
+
# each.
|
8114
|
+
#
|
8115
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
8116
|
+
# target a parent OU that contains all desired child OUs.
|
8117
|
+
#
|
8118
|
+
# </note>
|
8119
|
+
#
|
8034
8120
|
#
|
8035
8121
|
#
|
8036
8122
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html
|
@@ -8204,6 +8290,20 @@ module Aws::CloudFormation
|
|
8204
8290
|
# CreateStackInstances calls on the specified stack set use the updated
|
8205
8291
|
# stack set.
|
8206
8292
|
#
|
8293
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
8294
|
+
# `UpdateStackSet` operation is 50.
|
8295
|
+
#
|
8296
|
+
# If you need more than 50, consider the following options:
|
8297
|
+
#
|
8298
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
8299
|
+
# split up the operations into multiple calls with less than 50 OUs
|
8300
|
+
# each.
|
8301
|
+
#
|
8302
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
8303
|
+
# target a parent OU that contains all desired child OUs.
|
8304
|
+
#
|
8305
|
+
# </note>
|
8306
|
+
#
|
8207
8307
|
# @option params [required, String] :stack_set_name
|
8208
8308
|
# The name or unique ID of the stack set that you want to update.
|
8209
8309
|
#
|
@@ -8221,7 +8321,8 @@ module Aws::CloudFormation
|
|
8221
8321
|
# The URL of a file that contains the template body. The URL must point
|
8222
8322
|
# to a template (maximum size: 1 MB) that is located in an Amazon S3
|
8223
8323
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
8224
|
-
# bucket must start with `https://`.
|
8324
|
+
# bucket must start with `https://`. S3 static website URLs are not
|
8325
|
+
# supported.
|
8225
8326
|
#
|
8226
8327
|
# Conditional: You must specify only one of the following parameters:
|
8227
8328
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
|
@@ -8298,13 +8399,13 @@ module Aws::CloudFormation
|
|
8298
8399
|
#
|
8299
8400
|
#
|
8300
8401
|
#
|
8301
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8302
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8303
|
-
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8304
|
-
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8305
|
-
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8306
|
-
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8307
|
-
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
8402
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
8403
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
8404
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
8405
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
8406
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
8407
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
8408
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
8308
8409
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
8309
8410
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
8310
8411
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -8632,17 +8733,17 @@ module Aws::CloudFormation
|
|
8632
8733
|
# returns a template validation error.
|
8633
8734
|
#
|
8634
8735
|
# @option params [String] :template_body
|
8635
|
-
# Structure
|
8636
|
-
# and a maximum length of 51,200 bytes.
|
8736
|
+
# Structure that contains the template body with a minimum length of 1
|
8737
|
+
# byte and a maximum length of 51,200 bytes.
|
8637
8738
|
#
|
8638
8739
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8639
8740
|
# are passed, only `TemplateBody` is used.
|
8640
8741
|
#
|
8641
8742
|
# @option params [String] :template_url
|
8642
|
-
# The URL of a file
|
8643
|
-
# a template (max size: 1 MB) that is located in an Amazon S3 bucket
|
8644
|
-
# a Systems Manager document. The location for an Amazon S3 bucket
|
8645
|
-
# start with `https://`.
|
8743
|
+
# The URL of a file that contains the template body. The URL must point
|
8744
|
+
# to a template (max size: 1 MB) that is located in an Amazon S3 bucket
|
8745
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
8746
|
+
# must start with `https://`.
|
8646
8747
|
#
|
8647
8748
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8648
8749
|
# are passed, only `TemplateBody` is used.
|
@@ -8703,7 +8804,7 @@ module Aws::CloudFormation
|
|
8703
8804
|
tracer: tracer
|
8704
8805
|
)
|
8705
8806
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8706
|
-
context[:gem_version] = '1.
|
8807
|
+
context[:gem_version] = '1.134.0'
|
8707
8808
|
Seahorse::Client::Request.new(handlers, context)
|
8708
8809
|
end
|
8709
8810
|
|