aws-sdk-cloudformation 1.31.0 → 1.32.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 +5 -5
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +112 -68
- data/lib/aws-sdk-cloudformation/event.rb +13 -11
- data/lib/aws-sdk-cloudformation/resource.rb +8 -3
- data/lib/aws-sdk-cloudformation/stack.rb +19 -15
- data/lib/aws-sdk-cloudformation/stack_resource.rb +13 -11
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +13 -11
- data/lib/aws-sdk-cloudformation/types.rb +97 -105
- data/lib/aws-sdk-cloudformation/waiters.rb +67 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: da0f45284bff4822ec8d61bd4a7447d44ae60f01368b24a85b5090dccad7bf61
|
4
|
+
data.tar.gz: b3ec52e3525ea1e0d3671e9cd2b09ec9933334c5cab6673c6b01332f856e8106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d13091dce2dc5dd166cbcbf3f635ca2708b01e4ad7ea78390cde6d055bdbd1b0b222f7261b0c042d4f1994b1338580b0f9e1a578ec0d578be7be993515be66e
|
7
|
+
data.tar.gz: a9c50569fa7c653e2d55cc96f86bd6c6a9caf517d10933ba045fdebc834b6b486d30772d35c2c2011c51d6d0dba29a4f30923b32f80e4b75839aabc1263350ac
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudformation)
|
|
32
32
|
module Aws::CloudFormation
|
33
33
|
# An API client for CloudFormation. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::CloudFormation::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::CloudFormation
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::CloudFormation
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::CloudFormation
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -762,7 +765,7 @@ module Aws::CloudFormation
|
|
762
765
|
#
|
763
766
|
# @option params [required, String] :stack_name
|
764
767
|
# The name that is associated with the stack. The name must be unique in
|
765
|
-
# the
|
768
|
+
# the Region in which you are creating the stack.
|
766
769
|
#
|
767
770
|
# <note markdown="1"> A stack name can contain only alphanumeric characters (case sensitive)
|
768
771
|
# and hyphens. It must start with an alphabetic character and cannot be
|
@@ -971,7 +974,7 @@ module Aws::CloudFormation
|
|
971
974
|
# @option params [String] :stack_policy_url
|
972
975
|
# Location of a file containing the stack policy. The URL must point to
|
973
976
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
974
|
-
#
|
977
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
975
978
|
# the `StackPolicyURL` parameter, but not both.
|
976
979
|
#
|
977
980
|
# @option params [Array<Types::Tag>] :tags
|
@@ -1076,8 +1079,8 @@ module Aws::CloudFormation
|
|
1076
1079
|
end
|
1077
1080
|
|
1078
1081
|
# Creates stack instances for the specified accounts, within the
|
1079
|
-
# specified
|
1080
|
-
# account and
|
1082
|
+
# specified Regions. A stack instance refers to a stack in a specific
|
1083
|
+
# account and Region. You must specify at least one value for either
|
1081
1084
|
# `Accounts` or `DeploymentTargets`, and you must specify at least one
|
1082
1085
|
# value for `Regions`.
|
1083
1086
|
#
|
@@ -1086,8 +1089,8 @@ module Aws::CloudFormation
|
|
1086
1089
|
# instances from.
|
1087
1090
|
#
|
1088
1091
|
# @option params [Array<String>] :accounts
|
1089
|
-
# \[Self-managed permissions\] The names of one or more AWS accounts
|
1090
|
-
# that you want to create stack instances in the specified
|
1092
|
+
# \[`Self-managed` permissions\] The names of one or more AWS accounts
|
1093
|
+
# that you want to create stack instances in the specified Region(s)
|
1091
1094
|
# for.
|
1092
1095
|
#
|
1093
1096
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1099,7 +1102,7 @@ module Aws::CloudFormation
|
|
1099
1102
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1100
1103
|
#
|
1101
1104
|
# @option params [required, Array<String>] :regions
|
1102
|
-
# The names of one or more
|
1105
|
+
# The names of one or more Regions where you want to create stack
|
1103
1106
|
# instances using the specified AWS account(s).
|
1104
1107
|
#
|
1105
1108
|
# @option params [Array<Types::Parameter>] :parameter_overrides
|
@@ -1107,7 +1110,7 @@ module Aws::CloudFormation
|
|
1107
1110
|
# the selected stack instances.
|
1108
1111
|
#
|
1109
1112
|
# Any overridden parameter values will be applied to all stack instances
|
1110
|
-
# in the specified accounts and
|
1113
|
+
# in the specified accounts and Regions. When specifying parameters and
|
1111
1114
|
# their values, be aware of how AWS CloudFormation sets parameter values
|
1112
1115
|
# during stack instance operations:
|
1113
1116
|
#
|
@@ -1212,7 +1215,7 @@ module Aws::CloudFormation
|
|
1212
1215
|
#
|
1213
1216
|
# @option params [required, String] :stack_set_name
|
1214
1217
|
# The name to associate with the stack set. The name must be unique in
|
1215
|
-
# the
|
1218
|
+
# the Region where you create your stack set.
|
1216
1219
|
#
|
1217
1220
|
# <note markdown="1"> A stack name can contain only alphanumeric characters (case-sensitive)
|
1218
1221
|
# and hyphens. It must start with an alphabetic character and can't be
|
@@ -1386,9 +1389,6 @@ module Aws::CloudFormation
|
|
1386
1389
|
# accounts that are added to the target organization or organizational
|
1387
1390
|
# unit (OU). Specify only if `PermissionModel` is `SERVICE_MANAGED`.
|
1388
1391
|
#
|
1389
|
-
# If you specify `AutoDeployment`, do not specify `DeploymentTargets` or
|
1390
|
-
# `Regions`.
|
1391
|
-
#
|
1392
1392
|
# @option params [String] :client_request_token
|
1393
1393
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1394
1394
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1552,14 +1552,14 @@ module Aws::CloudFormation
|
|
1552
1552
|
end
|
1553
1553
|
|
1554
1554
|
# Deletes stack instances for the specified accounts, in the specified
|
1555
|
-
#
|
1555
|
+
# Regions.
|
1556
1556
|
#
|
1557
1557
|
# @option params [required, String] :stack_set_name
|
1558
1558
|
# The name or unique ID of the stack set that you want to delete stack
|
1559
1559
|
# instances for.
|
1560
1560
|
#
|
1561
1561
|
# @option params [Array<String>] :accounts
|
1562
|
-
# \[Self-managed permissions\] The names of the AWS accounts that you
|
1562
|
+
# \[`Self-managed` permissions\] The names of the AWS accounts that you
|
1563
1563
|
# want to delete stack instances for.
|
1564
1564
|
#
|
1565
1565
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1571,7 +1571,7 @@ module Aws::CloudFormation
|
|
1571
1571
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1572
1572
|
#
|
1573
1573
|
# @option params [required, Array<String>] :regions
|
1574
|
-
# The
|
1574
|
+
# The Regions where you want to delete stack set instances.
|
1575
1575
|
#
|
1576
1576
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
1577
1577
|
# Preferences for how AWS CloudFormation performs this stack set
|
@@ -1857,6 +1857,11 @@ module Aws::CloudFormation
|
|
1857
1857
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
1858
1858
|
# resp.next_token #=> String
|
1859
1859
|
#
|
1860
|
+
#
|
1861
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
1862
|
+
#
|
1863
|
+
# * change_set_create_complete
|
1864
|
+
#
|
1860
1865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet AWS API Documentation
|
1861
1866
|
#
|
1862
1867
|
# @overload describe_change_set(params = {})
|
@@ -1962,6 +1967,8 @@ module Aws::CloudFormation
|
|
1962
1967
|
# * {Types::DescribeStackEventsOutput#stack_events #stack_events} => Array<Types::StackEvent>
|
1963
1968
|
# * {Types::DescribeStackEventsOutput#next_token #next_token} => String
|
1964
1969
|
#
|
1970
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1971
|
+
#
|
1965
1972
|
# @example Request syntax with placeholder values
|
1966
1973
|
#
|
1967
1974
|
# resp = client.describe_stack_events({
|
@@ -1995,7 +2002,7 @@ module Aws::CloudFormation
|
|
1995
2002
|
end
|
1996
2003
|
|
1997
2004
|
# Returns the stack instance that's associated with the specified stack
|
1998
|
-
# set, AWS account, and
|
2005
|
+
# set, AWS account, and Region.
|
1999
2006
|
#
|
2000
2007
|
# For a list of stack instances that are associated with a specific
|
2001
2008
|
# stack set, use ListStackInstances.
|
@@ -2008,7 +2015,7 @@ module Aws::CloudFormation
|
|
2008
2015
|
# The ID of an AWS account that's associated with this stack instance.
|
2009
2016
|
#
|
2010
2017
|
# @option params [required, String] :stack_instance_region
|
2011
|
-
# The name of a
|
2018
|
+
# The name of a Region that's associated with this stack instance.
|
2012
2019
|
#
|
2013
2020
|
# @return [Types::DescribeStackInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2014
2021
|
#
|
@@ -2159,6 +2166,8 @@ module Aws::CloudFormation
|
|
2159
2166
|
# * {Types::DescribeStackResourceDriftsOutput#stack_resource_drifts #stack_resource_drifts} => Array<Types::StackResourceDrift>
|
2160
2167
|
# * {Types::DescribeStackResourceDriftsOutput#next_token #next_token} => String
|
2161
2168
|
#
|
2169
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2170
|
+
#
|
2162
2171
|
# @example Request syntax with placeholder values
|
2163
2172
|
#
|
2164
2173
|
# resp = client.describe_stack_resource_drifts({
|
@@ -2441,6 +2450,8 @@ module Aws::CloudFormation
|
|
2441
2450
|
# * {Types::DescribeStacksOutput#stacks #stacks} => Array<Types::Stack>
|
2442
2451
|
# * {Types::DescribeStacksOutput#next_token #next_token} => String
|
2443
2452
|
#
|
2453
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2454
|
+
#
|
2444
2455
|
# @example Request syntax with placeholder values
|
2445
2456
|
#
|
2446
2457
|
# resp = client.describe_stacks({
|
@@ -2491,6 +2502,15 @@ module Aws::CloudFormation
|
|
2491
2502
|
# resp.stacks[0].drift_information.last_check_timestamp #=> Time
|
2492
2503
|
# resp.next_token #=> String
|
2493
2504
|
#
|
2505
|
+
#
|
2506
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2507
|
+
#
|
2508
|
+
# * stack_create_complete
|
2509
|
+
# * stack_delete_complete
|
2510
|
+
# * stack_exists
|
2511
|
+
# * stack_import_complete
|
2512
|
+
# * stack_update_complete
|
2513
|
+
#
|
2494
2514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks AWS API Documentation
|
2495
2515
|
#
|
2496
2516
|
# @overload describe_stacks(params = {})
|
@@ -2623,6 +2643,11 @@ module Aws::CloudFormation
|
|
2623
2643
|
# resp.type_arn #=> String
|
2624
2644
|
# resp.type_version_arn #=> String
|
2625
2645
|
#
|
2646
|
+
#
|
2647
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2648
|
+
#
|
2649
|
+
# * type_registration_complete
|
2650
|
+
#
|
2626
2651
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeRegistration AWS API Documentation
|
2627
2652
|
#
|
2628
2653
|
# @overload describe_type_registration(params = {})
|
@@ -3223,7 +3248,7 @@ module Aws::CloudFormation
|
|
3223
3248
|
req.send_request(options)
|
3224
3249
|
end
|
3225
3250
|
|
3226
|
-
# Lists all exported output values in the account and
|
3251
|
+
# Lists all exported output values in the account and Region in which
|
3227
3252
|
# you call this action. Use this action to see the exported output
|
3228
3253
|
# values that you can import into other stacks. To import values, use
|
3229
3254
|
# the [ `Fn::ImportValue` ][1] function.
|
@@ -3245,6 +3270,8 @@ module Aws::CloudFormation
|
|
3245
3270
|
# * {Types::ListExportsOutput#exports #exports} => Array<Types::Export>
|
3246
3271
|
# * {Types::ListExportsOutput#next_token #next_token} => String
|
3247
3272
|
#
|
3273
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3274
|
+
#
|
3248
3275
|
# @example Request syntax with placeholder values
|
3249
3276
|
#
|
3250
3277
|
# resp = client.list_exports({
|
@@ -3294,6 +3321,8 @@ module Aws::CloudFormation
|
|
3294
3321
|
# * {Types::ListImportsOutput#imports #imports} => Array<String>
|
3295
3322
|
# * {Types::ListImportsOutput#next_token #next_token} => String
|
3296
3323
|
#
|
3324
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3325
|
+
#
|
3297
3326
|
# @example Request syntax with placeholder values
|
3298
3327
|
#
|
3299
3328
|
# resp = client.list_imports({
|
@@ -3318,7 +3347,7 @@ module Aws::CloudFormation
|
|
3318
3347
|
|
3319
3348
|
# Returns summary information about stack instances that are associated
|
3320
3349
|
# with the specified stack set. You can filter for stack instances that
|
3321
|
-
# are associated with a specific AWS account name or
|
3350
|
+
# are associated with a specific AWS account name or Region.
|
3322
3351
|
#
|
3323
3352
|
# @option params [required, String] :stack_set_name
|
3324
3353
|
# The name or unique ID of the stack set that you want to list stack
|
@@ -3342,7 +3371,7 @@ module Aws::CloudFormation
|
|
3342
3371
|
# The name of the AWS account that you want to list stack instances for.
|
3343
3372
|
#
|
3344
3373
|
# @option params [String] :stack_instance_region
|
3345
|
-
# The name of the
|
3374
|
+
# The name of the Region where you want to list stack instances.
|
3346
3375
|
#
|
3347
3376
|
# @return [Types::ListStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3348
3377
|
#
|
@@ -3407,6 +3436,8 @@ module Aws::CloudFormation
|
|
3407
3436
|
# * {Types::ListStackResourcesOutput#stack_resource_summaries #stack_resource_summaries} => Array<Types::StackResourceSummary>
|
3408
3437
|
# * {Types::ListStackResourcesOutput#next_token #next_token} => String
|
3409
3438
|
#
|
3439
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3440
|
+
#
|
3410
3441
|
# @example Request syntax with placeholder values
|
3411
3442
|
#
|
3412
3443
|
# resp = client.list_stack_resources({
|
@@ -3628,6 +3659,8 @@ module Aws::CloudFormation
|
|
3628
3659
|
# * {Types::ListStacksOutput#stack_summaries #stack_summaries} => Array<Types::StackSummary>
|
3629
3660
|
# * {Types::ListStacksOutput#next_token #next_token} => String
|
3630
3661
|
#
|
3662
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3663
|
+
#
|
3631
3664
|
# @example Request syntax with placeholder values
|
3632
3665
|
#
|
3633
3666
|
# resp = client.list_stacks({
|
@@ -3704,6 +3737,8 @@ module Aws::CloudFormation
|
|
3704
3737
|
# * {Types::ListTypeRegistrationsOutput#registration_token_list #registration_token_list} => Array<String>
|
3705
3738
|
# * {Types::ListTypeRegistrationsOutput#next_token #next_token} => String
|
3706
3739
|
#
|
3740
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3741
|
+
#
|
3707
3742
|
# @example Request syntax with placeholder values
|
3708
3743
|
#
|
3709
3744
|
# resp = client.list_type_registrations({
|
@@ -3784,6 +3819,8 @@ module Aws::CloudFormation
|
|
3784
3819
|
# * {Types::ListTypeVersionsOutput#type_version_summaries #type_version_summaries} => Array<Types::TypeVersionSummary>
|
3785
3820
|
# * {Types::ListTypeVersionsOutput#next_token #next_token} => String
|
3786
3821
|
#
|
3822
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3823
|
+
#
|
3787
3824
|
# @example Request syntax with placeholder values
|
3788
3825
|
#
|
3789
3826
|
# resp = client.list_type_versions({
|
@@ -3881,6 +3918,8 @@ module Aws::CloudFormation
|
|
3881
3918
|
# * {Types::ListTypesOutput#type_summaries #type_summaries} => Array<Types::TypeSummary>
|
3882
3919
|
# * {Types::ListTypesOutput#next_token #next_token} => String
|
3883
3920
|
#
|
3921
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3922
|
+
#
|
3884
3923
|
# @example Request syntax with placeholder values
|
3885
3924
|
#
|
3886
3925
|
# resp = client.list_types({
|
@@ -4006,6 +4045,11 @@ module Aws::CloudFormation
|
|
4006
4045
|
# registeration, see [Creating Resource Providers][1] in the
|
4007
4046
|
# *CloudFormation CLI User Guide*.
|
4008
4047
|
#
|
4048
|
+
# You can have a maximum of 50 resource type versions registered at a
|
4049
|
+
# time. This maximum is per account and per region. Use
|
4050
|
+
# [DeregisterType](AWSCloudFormation/latest/APIReference/API_DeregisterType.html)
|
4051
|
+
# to deregister specific resource type versions if necessary.
|
4052
|
+
#
|
4009
4053
|
# Once you have initiated a registration request using ` RegisterType `,
|
4010
4054
|
# you can use ` DescribeTypeRegistration ` to monitor the progress of
|
4011
4055
|
# the registration request.
|
@@ -4133,7 +4177,7 @@ module Aws::CloudFormation
|
|
4133
4177
|
# @option params [String] :stack_policy_url
|
4134
4178
|
# Location of a file containing the stack policy. The URL must point to
|
4135
4179
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
4136
|
-
#
|
4180
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
4137
4181
|
# the `StackPolicyURL` parameter, but not both.
|
4138
4182
|
#
|
4139
4183
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -4340,7 +4384,7 @@ module Aws::CloudFormation
|
|
4340
4384
|
# @option params [String] :stack_policy_during_update_url
|
4341
4385
|
# Location of a file containing the temporary overriding stack policy.
|
4342
4386
|
# The URL must point to a policy (max size: 16KB) located in an S3
|
4343
|
-
# bucket in the same
|
4387
|
+
# bucket in the same Region as the stack. You can specify either the
|
4344
4388
|
# `StackPolicyDuringUpdateBody` or the `StackPolicyDuringUpdateURL`
|
4345
4389
|
# parameter, but not both.
|
4346
4390
|
#
|
@@ -4495,7 +4539,7 @@ module Aws::CloudFormation
|
|
4495
4539
|
# @option params [String] :stack_policy_url
|
4496
4540
|
# Location of a file containing the updated stack policy. The URL must
|
4497
4541
|
# point to a policy (max size: 16KB) located in an S3 bucket in the same
|
4498
|
-
#
|
4542
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
4499
4543
|
# the `StackPolicyURL` parameter, but not both.
|
4500
4544
|
#
|
4501
4545
|
# You might update the stack policy, for example, in order to protect a
|
@@ -4597,10 +4641,10 @@ module Aws::CloudFormation
|
|
4597
4641
|
end
|
4598
4642
|
|
4599
4643
|
# Updates the parameter values for stack instances for the specified
|
4600
|
-
# accounts, within the specified
|
4601
|
-
# stack in a specific account and
|
4644
|
+
# accounts, within the specified Regions. A stack instance refers to a
|
4645
|
+
# stack in a specific account and Region.
|
4602
4646
|
#
|
4603
|
-
# You can only update stack instances in
|
4647
|
+
# You can only update stack instances in Regions and accounts where they
|
4604
4648
|
# already exist; to create additional stack instances, use
|
4605
4649
|
# [CreateStackInstances][1].
|
4606
4650
|
#
|
@@ -4627,10 +4671,10 @@ module Aws::CloudFormation
|
|
4627
4671
|
# instances.
|
4628
4672
|
#
|
4629
4673
|
# @option params [Array<String>] :accounts
|
4630
|
-
# \[Self-managed permissions\] The names of one or more AWS accounts
|
4631
|
-
# which you want to update parameter values for stack instances. The
|
4674
|
+
# \[`Self-managed` permissions\] The names of one or more AWS accounts
|
4675
|
+
# for which you want to update parameter values for stack instances. The
|
4632
4676
|
# overridden parameter values will be applied to all stack instances in
|
4633
|
-
# the specified accounts and
|
4677
|
+
# the specified accounts and Regions.
|
4634
4678
|
#
|
4635
4679
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
4636
4680
|
#
|
@@ -4645,16 +4689,16 @@ module Aws::CloudFormation
|
|
4645
4689
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
4646
4690
|
#
|
4647
4691
|
# @option params [required, Array<String>] :regions
|
4648
|
-
# The names of one or more
|
4692
|
+
# The names of one or more Regions in which you want to update parameter
|
4649
4693
|
# values for stack instances. The overridden parameter values will be
|
4650
|
-
# applied to all stack instances in the specified accounts and
|
4694
|
+
# applied to all stack instances in the specified accounts and Regions.
|
4651
4695
|
#
|
4652
4696
|
# @option params [Array<Types::Parameter>] :parameter_overrides
|
4653
4697
|
# A list of input parameters whose values you want to update for the
|
4654
4698
|
# specified stack instances.
|
4655
4699
|
#
|
4656
4700
|
# Any overridden parameter values will be applied to all stack instances
|
4657
|
-
# in the specified accounts and
|
4701
|
+
# in the specified accounts and Regions. When specifying parameters and
|
4658
4702
|
# their values, be aware of how AWS CloudFormation sets parameter values
|
4659
4703
|
# during stack instance update operations:
|
4660
4704
|
#
|
@@ -4759,7 +4803,7 @@ module Aws::CloudFormation
|
|
4759
4803
|
end
|
4760
4804
|
|
4761
4805
|
# Updates the stack set, and associated stack instances in the specified
|
4762
|
-
# accounts and
|
4806
|
+
# accounts and Regions.
|
4763
4807
|
#
|
4764
4808
|
# Even if the stack set operation created by updating the stack set
|
4765
4809
|
# fails (completely or partially, below or above a specified failure
|
@@ -5014,9 +5058,9 @@ module Aws::CloudFormation
|
|
5014
5058
|
# not need to pass this option.**
|
5015
5059
|
#
|
5016
5060
|
# @option params [Array<String>] :accounts
|
5017
|
-
# \[Self-managed permissions\] The accounts in which to update
|
5061
|
+
# \[`Self-managed` permissions\] The accounts in which to update
|
5018
5062
|
# associated stack instances. If you specify accounts, you must also
|
5019
|
-
# specify the
|
5063
|
+
# specify the Regions in which to update stack set instances.
|
5020
5064
|
#
|
5021
5065
|
# To update *all* the stack instances associated with this stack set, do
|
5022
5066
|
# not specify the `Accounts` or `Regions` properties.
|
@@ -5025,15 +5069,15 @@ module Aws::CloudFormation
|
|
5025
5069
|
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
5026
5070
|
# `Parameters` property, AWS CloudFormation marks all stack instances
|
5027
5071
|
# with a status of `OUTDATED` prior to updating the stack instances in
|
5028
|
-
# the specified accounts and
|
5072
|
+
# the specified accounts and Regions. If the stack set update does not
|
5029
5073
|
# include changes to the template or parameters, AWS CloudFormation
|
5030
|
-
# updates the stack instances in the specified accounts and
|
5074
|
+
# updates the stack instances in the specified accounts and Regions,
|
5031
5075
|
# while leaving all other stack instances with their existing stack
|
5032
5076
|
# instance status.
|
5033
5077
|
#
|
5034
5078
|
# @option params [Array<String>] :regions
|
5035
|
-
# The
|
5036
|
-
# specify
|
5079
|
+
# The Regions in which to update associated stack instances. If you
|
5080
|
+
# specify Regions, you must also specify accounts in which to update
|
5037
5081
|
# stack set instances.
|
5038
5082
|
#
|
5039
5083
|
# To update *all* the stack instances associated with this stack set, do
|
@@ -5043,9 +5087,9 @@ module Aws::CloudFormation
|
|
5043
5087
|
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
5044
5088
|
# `Parameters` property, AWS CloudFormation marks all stack instances
|
5045
5089
|
# with a status of `OUTDATED` prior to updating the stack instances in
|
5046
|
-
# the specified accounts and
|
5090
|
+
# the specified accounts and Regions. If the stack set update does not
|
5047
5091
|
# include changes to the template or parameters, AWS CloudFormation
|
5048
|
-
# updates the stack instances in the specified accounts and
|
5092
|
+
# updates the stack instances in the specified accounts and Regions,
|
5049
5093
|
# while leaving all other stack instances with their existing stack
|
5050
5094
|
# instance status.
|
5051
5095
|
#
|
@@ -5238,7 +5282,7 @@ module Aws::CloudFormation
|
|
5238
5282
|
params: params,
|
5239
5283
|
config: config)
|
5240
5284
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5241
|
-
context[:gem_version] = '1.
|
5285
|
+
context[:gem_version] = '1.32.0'
|
5242
5286
|
Seahorse::Client::Request.new(handlers, context)
|
5243
5287
|
end
|
5244
5288
|
|
@@ -5304,15 +5348,15 @@ module Aws::CloudFormation
|
|
5304
5348
|
# The following table lists the valid waiter names, the operations they call,
|
5305
5349
|
# and the default `:delay` and `:max_attempts` values.
|
5306
5350
|
#
|
5307
|
-
# | waiter_name | params
|
5308
|
-
# | -------------------------- |
|
5309
|
-
# | change_set_create_complete | {#describe_change_set} | 30 | 120 |
|
5310
|
-
# | stack_create_complete | {#describe_stacks} | 30 | 120 |
|
5311
|
-
# | stack_delete_complete | {#describe_stacks} | 30 | 120 |
|
5312
|
-
# | stack_exists | {#describe_stacks} | 5 | 20 |
|
5313
|
-
# | stack_import_complete | {#describe_stacks} | 30 | 120 |
|
5314
|
-
# | stack_update_complete | {#describe_stacks} | 30 | 120 |
|
5315
|
-
# | type_registration_complete | {#describe_type_registration} | 30 | 120 |
|
5351
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5352
|
+
# | -------------------------- | ----------------------------------- | -------- | ------------- |
|
5353
|
+
# | change_set_create_complete | {Client#describe_change_set} | 30 | 120 |
|
5354
|
+
# | stack_create_complete | {Client#describe_stacks} | 30 | 120 |
|
5355
|
+
# | stack_delete_complete | {Client#describe_stacks} | 30 | 120 |
|
5356
|
+
# | stack_exists | {Client#describe_stacks} | 5 | 20 |
|
5357
|
+
# | stack_import_complete | {Client#describe_stacks} | 30 | 120 |
|
5358
|
+
# | stack_update_complete | {Client#describe_stacks} | 30 | 120 |
|
5359
|
+
# | type_registration_complete | {Client#describe_type_registration} | 30 | 120 |
|
5316
5360
|
#
|
5317
5361
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5318
5362
|
# because the waiter has entered a state that it will not transition
|