aws-sdk-cloudformation 1.133.0 → 1.135.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +244 -133
- data/lib/aws-sdk-cloudformation/client_api.rb +2 -0
- data/lib/aws-sdk-cloudformation/errors.rb +0 -1
- 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 +3 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +7 -6
- metadata +3 -3
@@ -95,7 +95,7 @@ module Aws::CloudFormation
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::CloudFormation
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::CloudFormation
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::CloudFormation
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::CloudFormation
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -880,7 +890,7 @@ module Aws::CloudFormation
|
|
880
890
|
# bucket or a Systems Manager document. CloudFormation generates the
|
881
891
|
# change set by comparing this template with the stack that you
|
882
892
|
# specified. The location for an Amazon S3 bucket must start with
|
883
|
-
# `https://`.
|
893
|
+
# `https://`. URLs from S3 static websites are not supported.
|
884
894
|
#
|
885
895
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
886
896
|
#
|
@@ -971,14 +981,14 @@ module Aws::CloudFormation
|
|
971
981
|
#
|
972
982
|
#
|
973
983
|
#
|
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/
|
984
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
985
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
986
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
987
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
988
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
989
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
990
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
991
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
982
992
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
983
993
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
984
994
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -1104,22 +1114,23 @@ module Aws::CloudFormation
|
|
1104
1114
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
|
1105
1115
|
#
|
1106
1116
|
# @option params [Boolean] :import_existing_resources
|
1107
|
-
# Indicates if the change set imports resources that already exist.
|
1117
|
+
# Indicates if the change set auto-imports resources that already exist.
|
1118
|
+
# For more information, see [Import Amazon Web Services resources into a
|
1119
|
+
# CloudFormation stack automatically][1] in the *CloudFormation User
|
1120
|
+
# Guide*.
|
1108
1121
|
#
|
1109
1122
|
# <note markdown="1"> This parameter can only import resources that have custom names in
|
1110
|
-
# templates. For more information, see [name type][
|
1123
|
+
# templates. For more information, see [name type][2] in the
|
1111
1124
|
# *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*.
|
1125
|
+
# custom names, such as EC2 instances, use the `ResourcesToImport`
|
1126
|
+
# parameter instead.
|
1116
1127
|
#
|
1117
1128
|
# </note>
|
1118
1129
|
#
|
1119
1130
|
#
|
1120
1131
|
#
|
1121
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1122
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
1132
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/import-resources-automatically.html
|
1133
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
1123
1134
|
#
|
1124
1135
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1125
1136
|
#
|
@@ -1303,17 +1314,18 @@ module Aws::CloudFormation
|
|
1303
1314
|
# </note>
|
1304
1315
|
#
|
1305
1316
|
# @option params [String] :template_body
|
1306
|
-
# Structure
|
1307
|
-
# and a maximum length of 51,200 bytes.
|
1317
|
+
# Structure that contains the template body with a minimum length of 1
|
1318
|
+
# byte and a maximum length of 51,200 bytes.
|
1308
1319
|
#
|
1309
|
-
# Conditional: You must specify either
|
1310
|
-
#
|
1320
|
+
# Conditional: You must specify either `TemplateBody` or `TemplateURL`,
|
1321
|
+
# but not both.
|
1311
1322
|
#
|
1312
1323
|
# @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://`.
|
1324
|
+
# The URL of a file that contains the template body. The URL must point
|
1325
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
1326
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
1327
|
+
# must start with `https://`. URLs from S3 static websites are not
|
1328
|
+
# supported.
|
1317
1329
|
#
|
1318
1330
|
# Conditional: You must specify either the `TemplateBody` or the
|
1319
1331
|
# `TemplateURL` parameter, but not both.
|
@@ -1429,14 +1441,14 @@ module Aws::CloudFormation
|
|
1429
1441
|
#
|
1430
1442
|
#
|
1431
1443
|
#
|
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/
|
1444
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1445
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1446
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1447
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
1448
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1449
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1450
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1451
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1440
1452
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1441
1453
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
1442
1454
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -1491,9 +1503,9 @@ module Aws::CloudFormation
|
|
1491
1503
|
# Default: `ROLLBACK`
|
1492
1504
|
#
|
1493
1505
|
# @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
|
1506
|
+
# Structure that contains the stack policy body. For more information,
|
1507
|
+
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
1508
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
1497
1509
|
# `StackPolicyURL` parameter, but not both.
|
1498
1510
|
#
|
1499
1511
|
#
|
@@ -1501,11 +1513,13 @@ module Aws::CloudFormation
|
|
1501
1513
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
1502
1514
|
#
|
1503
1515
|
# @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
|
1516
|
+
# Location of a file that contains the stack policy. The URL must point
|
1517
|
+
# to a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
1506
1518
|
# Region as the stack. The location for an Amazon S3 bucket must start
|
1507
|
-
# with `https://`.
|
1508
|
-
#
|
1519
|
+
# with `https://`. URLs from S3 static websites are not supported.
|
1520
|
+
#
|
1521
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
1522
|
+
# parameter, but not both.
|
1509
1523
|
#
|
1510
1524
|
# @option params [Array<Types::Tag>] :tags
|
1511
1525
|
# Key-value pairs to associate with this stack. CloudFormation also
|
@@ -1622,6 +1636,20 @@ module Aws::CloudFormation
|
|
1622
1636
|
# value for either `Accounts` or `DeploymentTargets`, and you must
|
1623
1637
|
# specify at least one value for `Regions`.
|
1624
1638
|
#
|
1639
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
1640
|
+
# `CreateStackInstances` operation is 50.
|
1641
|
+
#
|
1642
|
+
# If you need more than 50, consider the following options:
|
1643
|
+
#
|
1644
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
1645
|
+
# split up the operations into multiple calls with less than 50 OUs
|
1646
|
+
# each.
|
1647
|
+
#
|
1648
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
1649
|
+
# target a parent OU that contains all desired child OUs.
|
1650
|
+
#
|
1651
|
+
# </note>
|
1652
|
+
#
|
1625
1653
|
# @option params [required, String] :stack_set_name
|
1626
1654
|
# The name or unique ID of the stack set that you want to create stack
|
1627
1655
|
# instances from.
|
@@ -1851,17 +1879,18 @@ module Aws::CloudFormation
|
|
1851
1879
|
# The structure that contains the template body, with a minimum length
|
1852
1880
|
# of 1 byte and a maximum length of 51,200 bytes.
|
1853
1881
|
#
|
1854
|
-
# Conditional: You must specify either the TemplateBody or the
|
1855
|
-
# TemplateURL parameter, but not both.
|
1882
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1883
|
+
# `TemplateURL` parameter, but not both.
|
1856
1884
|
#
|
1857
1885
|
# @option params [String] :template_url
|
1858
1886
|
# The URL of a file that contains the template body. The URL must point
|
1859
1887
|
# to a template (maximum size: 1 MB) that's located in an Amazon S3
|
1860
1888
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
1861
|
-
# bucket must start with `https://`.
|
1889
|
+
# bucket must start with `https://`. S3 static website URLs are not
|
1890
|
+
# supported.
|
1862
1891
|
#
|
1863
|
-
# Conditional: You must specify either the TemplateBody or the
|
1864
|
-
# TemplateURL parameter, but not both.
|
1892
|
+
# Conditional: You must specify either the `TemplateBody` or the
|
1893
|
+
# `TemplateURL` parameter, but not both.
|
1865
1894
|
#
|
1866
1895
|
# @option params [String] :stack_id
|
1867
1896
|
# The stack ID you are importing into a new stack set. Specify the
|
@@ -1932,13 +1961,13 @@ module Aws::CloudFormation
|
|
1932
1961
|
#
|
1933
1962
|
#
|
1934
1963
|
#
|
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/
|
1964
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
1965
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
1966
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
1967
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
1968
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
1969
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
1970
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
1942
1971
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
1943
1972
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1944
1973
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -2330,6 +2359,20 @@ module Aws::CloudFormation
|
|
2330
2359
|
# Deletes stack instances for the specified accounts, in the specified
|
2331
2360
|
# Amazon Web Services Regions.
|
2332
2361
|
#
|
2362
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
2363
|
+
# `DeleteStackInstances` operation is 50.
|
2364
|
+
#
|
2365
|
+
# If you need more than 50, consider the following options:
|
2366
|
+
#
|
2367
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
2368
|
+
# split up the operations into multiple calls with less than 50 OUs
|
2369
|
+
# each.
|
2370
|
+
#
|
2371
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
2372
|
+
# target a parent OU that contains all desired child OUs.
|
2373
|
+
#
|
2374
|
+
# </note>
|
2375
|
+
#
|
2333
2376
|
# @option params [required, String] :stack_set_name
|
2334
2377
|
# The name or unique ID of the stack set that you want to delete stack
|
2335
2378
|
# instances for.
|
@@ -3450,7 +3493,7 @@ module Aws::CloudFormation
|
|
3450
3493
|
# resp.stack_resource_detail.resource_status_reason #=> String
|
3451
3494
|
# resp.stack_resource_detail.description #=> String
|
3452
3495
|
# 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"
|
3496
|
+
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3454
3497
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
3455
3498
|
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
3456
3499
|
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
@@ -3502,6 +3545,9 @@ module Aws::CloudFormation
|
|
3502
3545
|
#
|
3503
3546
|
# * `NOT_CHECKED`: CloudFormation doesn't currently return this value.
|
3504
3547
|
#
|
3548
|
+
# * `UNKNOWN`: CloudFormation could not run drift detection for the
|
3549
|
+
# resource.
|
3550
|
+
#
|
3505
3551
|
# @option params [String] :next_token
|
3506
3552
|
# A string that identifies the next page of stack resource drift
|
3507
3553
|
# results.
|
@@ -3523,7 +3569,7 @@ module Aws::CloudFormation
|
|
3523
3569
|
#
|
3524
3570
|
# resp = client.describe_stack_resource_drifts({
|
3525
3571
|
# stack_name: "StackNameOrId", # required
|
3526
|
-
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
3572
|
+
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
3527
3573
|
# next_token: "NextToken",
|
3528
3574
|
# max_results: 1,
|
3529
3575
|
# })
|
@@ -3545,10 +3591,11 @@ module Aws::CloudFormation
|
|
3545
3591
|
# resp.stack_resource_drifts[0].property_differences[0].expected_value #=> String
|
3546
3592
|
# resp.stack_resource_drifts[0].property_differences[0].actual_value #=> String
|
3547
3593
|
# 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"
|
3594
|
+
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3549
3595
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
3550
3596
|
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
3551
3597
|
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
3598
|
+
# resp.stack_resource_drifts[0].drift_status_reason #=> String
|
3552
3599
|
# resp.next_token #=> String
|
3553
3600
|
#
|
3554
3601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResourceDrifts AWS API Documentation
|
@@ -3640,7 +3687,7 @@ module Aws::CloudFormation
|
|
3640
3687
|
# 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
3688
|
# resp.stack_resources[0].resource_status_reason #=> String
|
3642
3689
|
# 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"
|
3690
|
+
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
3644
3691
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
3645
3692
|
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
3646
3693
|
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
@@ -3656,6 +3703,11 @@ module Aws::CloudFormation
|
|
3656
3703
|
|
3657
3704
|
# Returns the description of the specified StackSet.
|
3658
3705
|
#
|
3706
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
3707
|
+
# return the most up-to-date data.
|
3708
|
+
#
|
3709
|
+
# </note>
|
3710
|
+
#
|
3659
3711
|
# @option params [required, String] :stack_set_name
|
3660
3712
|
# The name or unique ID of the stack set whose description you want.
|
3661
3713
|
#
|
@@ -3740,6 +3792,11 @@ module Aws::CloudFormation
|
|
3740
3792
|
|
3741
3793
|
# Returns the description of the specified StackSet operation.
|
3742
3794
|
#
|
3795
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
3796
|
+
# return the most up-to-date data.
|
3797
|
+
#
|
3798
|
+
# </note>
|
3799
|
+
#
|
3743
3800
|
# @option params [required, String] :stack_set_name
|
3744
3801
|
# The name or the unique stack ID of the stack set for the stack
|
3745
3802
|
# operation.
|
@@ -4248,10 +4305,11 @@ module Aws::CloudFormation
|
|
4248
4305
|
# resp.stack_resource_drift.property_differences[0].expected_value #=> String
|
4249
4306
|
# resp.stack_resource_drift.property_differences[0].actual_value #=> String
|
4250
4307
|
# 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"
|
4308
|
+
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
4252
4309
|
# resp.stack_resource_drift.timestamp #=> Time
|
4253
4310
|
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
4254
4311
|
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
4312
|
+
# resp.stack_resource_drift.drift_status_reason #=> String
|
4255
4313
|
#
|
4256
4314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DetectStackResourceDrift AWS API Documentation
|
4257
4315
|
#
|
@@ -4383,17 +4441,17 @@ module Aws::CloudFormation
|
|
4383
4441
|
# string that describes the resources required to run the template.
|
4384
4442
|
#
|
4385
4443
|
# @option params [String] :template_body
|
4386
|
-
# Structure
|
4387
|
-
# and a maximum length of 51,200 bytes.
|
4444
|
+
# Structure that contains the template body with a minimum length of 1
|
4445
|
+
# byte and a maximum length of 51,200 bytes.
|
4388
4446
|
#
|
4389
4447
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
4390
4448
|
# are passed, only `TemplateBody` is used.
|
4391
4449
|
#
|
4392
4450
|
# @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://`.
|
4451
|
+
# The URL of a file that contains the template body. The URL must point
|
4452
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
4453
|
+
# Manager document. The location for an Amazon S3 bucket must start with
|
4454
|
+
# `https://`. URLs from S3 static websites are not supported.
|
4397
4455
|
#
|
4398
4456
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
4399
4457
|
# are passed, only `TemplateBody` is used.
|
@@ -4720,17 +4778,17 @@ module Aws::CloudFormation
|
|
4720
4778
|
# template doesn't exist, a `ValidationError` is returned.
|
4721
4779
|
#
|
4722
4780
|
# @option params [String] :template_body
|
4723
|
-
# Structure
|
4724
|
-
# and a maximum length of 51,200 bytes.
|
4781
|
+
# Structure that contains the template body with a minimum length of 1
|
4782
|
+
# byte and a maximum length of 51,200 bytes.
|
4725
4783
|
#
|
4726
4784
|
# Conditional: You must specify only one of the following parameters:
|
4727
4785
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
4728
4786
|
#
|
4729
4787
|
# @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://`.
|
4788
|
+
# The URL of a file that contains the template body. The URL must point
|
4789
|
+
# to a template (max size: 1 MB) that's located in an Amazon S3 bucket
|
4790
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
4791
|
+
# must start with `https://`.
|
4734
4792
|
#
|
4735
4793
|
# Conditional: You must specify only one of the following parameters:
|
4736
4794
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -5641,7 +5699,7 @@ module Aws::CloudFormation
|
|
5641
5699
|
# stack_set_name: "StackSetNameOrId", # required
|
5642
5700
|
# next_token: "NextToken",
|
5643
5701
|
# max_results: 1,
|
5644
|
-
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
5702
|
+
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
5645
5703
|
# stack_instance_account: "Account", # required
|
5646
5704
|
# stack_instance_region: "Region", # required
|
5647
5705
|
# operation_id: "ClientRequestToken", # required
|
@@ -5663,7 +5721,7 @@ module Aws::CloudFormation
|
|
5663
5721
|
# resp.summaries[0].property_differences[0].expected_value #=> String
|
5664
5722
|
# resp.summaries[0].property_differences[0].actual_value #=> String
|
5665
5723
|
# 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"
|
5724
|
+
# resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
5667
5725
|
# resp.summaries[0].timestamp #=> Time
|
5668
5726
|
# resp.next_token #=> String
|
5669
5727
|
#
|
@@ -5941,7 +5999,7 @@ module Aws::CloudFormation
|
|
5941
5999
|
# resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
|
5942
6000
|
# 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
6001
|
# 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"
|
6002
|
+
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
|
5945
6003
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
5946
6004
|
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
5947
6005
|
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
@@ -6028,6 +6086,11 @@ module Aws::CloudFormation
|
|
6028
6086
|
# Returns summary information about the results of a stack set
|
6029
6087
|
# operation.
|
6030
6088
|
#
|
6089
|
+
# <note markdown="1"> This API provides *eventually consistent* reads meaning it may take
|
6090
|
+
# some time but will eventually return the most up-to-date data.
|
6091
|
+
#
|
6092
|
+
# </note>
|
6093
|
+
#
|
6031
6094
|
# @option params [required, String] :stack_set_name
|
6032
6095
|
# The name or unique ID of the stack set that you want to get operation
|
6033
6096
|
# results for.
|
@@ -6120,6 +6183,11 @@ module Aws::CloudFormation
|
|
6120
6183
|
|
6121
6184
|
# Returns summary information about operations performed on a stack set.
|
6122
6185
|
#
|
6186
|
+
# <note markdown="1"> This API provides *eventually consistent* reads meaning it may take
|
6187
|
+
# some time but will eventually return the most up-to-date data.
|
6188
|
+
#
|
6189
|
+
# </note>
|
6190
|
+
#
|
6123
6191
|
# @option params [required, String] :stack_set_name
|
6124
6192
|
# The name or unique ID of the stack set that you want to get operation
|
6125
6193
|
# summaries for.
|
@@ -6209,6 +6277,11 @@ module Aws::CloudFormation
|
|
6209
6277
|
# Returns summary information about stack sets that are associated with
|
6210
6278
|
# the user.
|
6211
6279
|
#
|
6280
|
+
# <note markdown="1"> This API provides *strongly consistent* reads meaning it will always
|
6281
|
+
# return the most up-to-date data.
|
6282
|
+
#
|
6283
|
+
# </note>
|
6284
|
+
#
|
6212
6285
|
# * \[Self-managed permissions\] If you set the `CallAs` parameter to
|
6213
6286
|
# `SELF` while signed in to your Amazon Web Services account,
|
6214
6287
|
# `ListStackSets` returns all self-managed stack sets in your Amazon
|
@@ -6947,8 +7020,9 @@ module Aws::CloudFormation
|
|
6947
7020
|
# </note>
|
6948
7021
|
#
|
6949
7022
|
# @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
|
7023
|
+
# A URL to the S3 bucket that contains the extension project package
|
7024
|
+
# that contains the necessary files for the extension you want to
|
7025
|
+
# register.
|
6952
7026
|
#
|
6953
7027
|
# For information about generating a schema handler package for the
|
6954
7028
|
# extension you want to register, see [submit][1] in the *CloudFormation
|
@@ -7104,9 +7178,9 @@ module Aws::CloudFormation
|
|
7104
7178
|
# The name or unique stack ID that you want to associate a policy with.
|
7105
7179
|
#
|
7106
7180
|
# @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
|
7181
|
+
# Structure that contains the stack policy body. For more information,
|
7182
|
+
# see [Prevent updates to stack resources][1] in the *CloudFormation
|
7183
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
7110
7184
|
# `StackPolicyURL` parameter, but not both.
|
7111
7185
|
#
|
7112
7186
|
#
|
@@ -7114,11 +7188,14 @@ module Aws::CloudFormation
|
|
7114
7188
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
7115
7189
|
#
|
7116
7190
|
# @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
|
-
#
|
7191
|
+
# Location of a file that contains the stack policy. The URL must point
|
7192
|
+
# to a policy (maximum size: 16 KB) located in an Amazon S3 bucket in
|
7193
|
+
# the same Amazon Web Services Region as the stack. The location for an
|
7194
|
+
# Amazon S3 bucket must start with `https://`. URLs from S3 static
|
7195
|
+
# websites are not supported.
|
7196
|
+
#
|
7197
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
7198
|
+
# parameter, but not both.
|
7122
7199
|
#
|
7123
7200
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7124
7201
|
#
|
@@ -7691,17 +7768,17 @@ module Aws::CloudFormation
|
|
7691
7768
|
# The name or unique stack ID of the stack to update.
|
7692
7769
|
#
|
7693
7770
|
# @option params [String] :template_body
|
7694
|
-
# Structure
|
7695
|
-
# and a maximum length of 51,200 bytes.
|
7771
|
+
# Structure that contains the template body with a minimum length of 1
|
7772
|
+
# byte and a maximum length of 51,200 bytes.
|
7696
7773
|
#
|
7697
7774
|
# Conditional: You must specify only one of the following parameters:
|
7698
7775
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
7699
7776
|
# `true`.
|
7700
7777
|
#
|
7701
7778
|
# @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
|
7779
|
+
# The URL of a file that contains the template body. The URL must point
|
7780
|
+
# to a template that's located in an Amazon S3 bucket or a Systems
|
7781
|
+
# Manager document. The location for an Amazon S3 bucket must start with
|
7705
7782
|
# `https://`.
|
7706
7783
|
#
|
7707
7784
|
# Conditional: You must specify only one of the following parameters:
|
@@ -7717,8 +7794,8 @@ module Aws::CloudFormation
|
|
7717
7794
|
# `true`.
|
7718
7795
|
#
|
7719
7796
|
# @option params [String] :stack_policy_during_update_body
|
7720
|
-
# Structure
|
7721
|
-
# can specify either the `StackPolicyDuringUpdateBody` or the
|
7797
|
+
# Structure that contains the temporary overriding stack policy body.
|
7798
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
7722
7799
|
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
7723
7800
|
#
|
7724
7801
|
# If you want to update protected resources, specify a temporary
|
@@ -7727,12 +7804,14 @@ module Aws::CloudFormation
|
|
7727
7804
|
# will be used.
|
7728
7805
|
#
|
7729
7806
|
# @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
|
-
#
|
7807
|
+
# Location of a file that contains the temporary overriding stack
|
7808
|
+
# policy. The URL must point to a policy (max size: 16KB) located in an
|
7809
|
+
# S3 bucket in the same Region as the stack. The location for an Amazon
|
7810
|
+
# S3 bucket must start with `https://`. URLs from S3 static websites are
|
7811
|
+
# not supported.
|
7812
|
+
#
|
7813
|
+
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
7814
|
+
# `StackPolicyDuringUpdateURL` parameter, but not both.
|
7736
7815
|
#
|
7737
7816
|
# If you want to update protected resources, specify a temporary
|
7738
7817
|
# overriding stack policy during this update. If you don't specify a
|
@@ -7828,14 +7907,14 @@ module Aws::CloudFormation
|
|
7828
7907
|
#
|
7829
7908
|
#
|
7830
7909
|
#
|
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/
|
7910
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
7911
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
7912
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
7913
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-managedpolicy.html
|
7914
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
7915
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
7916
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
7917
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
7839
7918
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
7840
7919
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
7841
7920
|
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -7882,8 +7961,9 @@ module Aws::CloudFormation
|
|
7882
7961
|
# period afterwards.
|
7883
7962
|
#
|
7884
7963
|
# @option params [String] :stack_policy_body
|
7885
|
-
# Structure
|
7886
|
-
# the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
7964
|
+
# Structure that contains a new stack policy body. You can specify
|
7965
|
+
# either the `StackPolicyBody` or the `StackPolicyURL` parameter, but
|
7966
|
+
# not both.
|
7887
7967
|
#
|
7888
7968
|
# You might update the stack policy, for example, in order to protect a
|
7889
7969
|
# new resource that you created during a stack update. If you don't
|
@@ -7891,11 +7971,13 @@ module Aws::CloudFormation
|
|
7891
7971
|
# stack is unchanged.
|
7892
7972
|
#
|
7893
7973
|
# @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
|
-
#
|
7974
|
+
# Location of a file that contains the updated stack policy. The URL
|
7975
|
+
# must point to a policy (max size: 16KB) located in an S3 bucket in the
|
7976
|
+
# same Region as the stack. The location for an Amazon S3 bucket must
|
7977
|
+
# start with `https://`. URLs from S3 static websites are not supported.
|
7978
|
+
#
|
7979
|
+
# You can specify either the `StackPolicyBody` or the `StackPolicyURL`
|
7980
|
+
# parameter, but not both.
|
7899
7981
|
#
|
7900
7982
|
# You might update the stack policy, for example, in order to protect a
|
7901
7983
|
# new resource that you created during a stack update. If you don't
|
@@ -8031,6 +8113,20 @@ module Aws::CloudFormation
|
|
8031
8113
|
# updated with the new parameter, you can then override the parameter
|
8032
8114
|
# value using `UpdateStackInstances`.
|
8033
8115
|
#
|
8116
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
8117
|
+
# `UpdateStackInstances` operation is 50.
|
8118
|
+
#
|
8119
|
+
# If you need more than 50, consider the following options:
|
8120
|
+
#
|
8121
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
8122
|
+
# split up the operations into multiple calls with less than 50 OUs
|
8123
|
+
# each.
|
8124
|
+
#
|
8125
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
8126
|
+
# target a parent OU that contains all desired child OUs.
|
8127
|
+
#
|
8128
|
+
# </note>
|
8129
|
+
#
|
8034
8130
|
#
|
8035
8131
|
#
|
8036
8132
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html
|
@@ -8204,6 +8300,20 @@ module Aws::CloudFormation
|
|
8204
8300
|
# CreateStackInstances calls on the specified stack set use the updated
|
8205
8301
|
# stack set.
|
8206
8302
|
#
|
8303
|
+
# <note markdown="1"> The maximum number of organizational unit (OUs) supported by a
|
8304
|
+
# `UpdateStackSet` operation is 50.
|
8305
|
+
#
|
8306
|
+
# If you need more than 50, consider the following options:
|
8307
|
+
#
|
8308
|
+
# * *Batch processing:* If you don't want to expose your OU hierarchy,
|
8309
|
+
# split up the operations into multiple calls with less than 50 OUs
|
8310
|
+
# each.
|
8311
|
+
#
|
8312
|
+
# * *Parent OU strategy:* If you don't mind exposing the OU hierarchy,
|
8313
|
+
# target a parent OU that contains all desired child OUs.
|
8314
|
+
#
|
8315
|
+
# </note>
|
8316
|
+
#
|
8207
8317
|
# @option params [required, String] :stack_set_name
|
8208
8318
|
# The name or unique ID of the stack set that you want to update.
|
8209
8319
|
#
|
@@ -8221,7 +8331,8 @@ module Aws::CloudFormation
|
|
8221
8331
|
# The URL of a file that contains the template body. The URL must point
|
8222
8332
|
# to a template (maximum size: 1 MB) that is located in an Amazon S3
|
8223
8333
|
# bucket or a Systems Manager document. The location for an Amazon S3
|
8224
|
-
# bucket must start with `https://`.
|
8334
|
+
# bucket must start with `https://`. S3 static website URLs are not
|
8335
|
+
# supported.
|
8225
8336
|
#
|
8226
8337
|
# Conditional: You must specify only one of the following parameters:
|
8227
8338
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
|
@@ -8298,13 +8409,13 @@ module Aws::CloudFormation
|
|
8298
8409
|
#
|
8299
8410
|
#
|
8300
8411
|
#
|
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/
|
8412
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-accesskey.html
|
8413
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-group.html
|
8414
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-instanceprofile.html
|
8415
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-policy.html
|
8416
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-role.html
|
8417
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-user.html
|
8418
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-iam-usertogroupaddition.html
|
8308
8419
|
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities
|
8309
8420
|
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
8310
8421
|
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-include.html
|
@@ -8632,17 +8743,17 @@ module Aws::CloudFormation
|
|
8632
8743
|
# returns a template validation error.
|
8633
8744
|
#
|
8634
8745
|
# @option params [String] :template_body
|
8635
|
-
# Structure
|
8636
|
-
# and a maximum length of 51,200 bytes.
|
8746
|
+
# Structure that contains the template body with a minimum length of 1
|
8747
|
+
# byte and a maximum length of 51,200 bytes.
|
8637
8748
|
#
|
8638
8749
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8639
8750
|
# are passed, only `TemplateBody` is used.
|
8640
8751
|
#
|
8641
8752
|
# @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://`.
|
8753
|
+
# The URL of a file that contains the template body. The URL must point
|
8754
|
+
# to a template (max size: 1 MB) that is located in an Amazon S3 bucket
|
8755
|
+
# or a Systems Manager document. The location for an Amazon S3 bucket
|
8756
|
+
# must start with `https://`.
|
8646
8757
|
#
|
8647
8758
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8648
8759
|
# are passed, only `TemplateBody` is used.
|
@@ -8703,7 +8814,7 @@ module Aws::CloudFormation
|
|
8703
8814
|
tracer: tracer
|
8704
8815
|
)
|
8705
8816
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8706
|
-
context[:gem_version] = '1.
|
8817
|
+
context[:gem_version] = '1.135.0'
|
8707
8818
|
Seahorse::Client::Request.new(handlers, context)
|
8708
8819
|
end
|
8709
8820
|
|