aws-sdk-cloudformation 1.31.0 → 1.36.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 +133 -71
- data/lib/aws-sdk-cloudformation/client_api.rb +37 -0
- data/lib/aws-sdk-cloudformation/event.rb +13 -11
- data/lib/aws-sdk-cloudformation/resource.rb +9 -4
- data/lib/aws-sdk-cloudformation/stack.rb +21 -17
- 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 +107 -105
- data/lib/aws-sdk-cloudformation/waiters.rb +130 -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: 8bb74988d225a1921e780150116f4874838431b3347bfaaeafc8c076d65cc722
|
4
|
+
data.tar.gz: ed9cf43cf829902a630d5d695dfdb390d0c69b43dc5fd737ee8cc09ca2a67bb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67b7cb94c129fbe21333c7ae92d4bb625a848677eb389f8d341001d7809c70b37a1021b1727fdd2e78d1ab34e61d61b826158a6049adf43f76e6ce84c0c5f06c
|
7
|
+
data.tar.gz: 929c00832c80fdf1e1541765549c23e7d63755d6019636ee8c7e84fe45331cf5075ab40c827c6eb4f233f2cac6d97e44fa9d12e90d9ec51256c6a2c6bd17dd66
|
@@ -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).
|
@@ -105,7 +105,7 @@ module Aws::CloudFormation
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::CloudFormation
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +176,7 @@ module Aws::CloudFormation
|
|
176
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
177
|
#
|
178
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
180
|
#
|
181
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
182
|
# The log formatter.
|
@@ -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
|
@@ -1742,6 +1742,8 @@ module Aws::CloudFormation
|
|
1742
1742
|
# * {Types::DescribeAccountLimitsOutput#account_limits #account_limits} => Array<Types::AccountLimit>
|
1743
1743
|
# * {Types::DescribeAccountLimitsOutput#next_token #next_token} => String
|
1744
1744
|
#
|
1745
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1746
|
+
#
|
1745
1747
|
# @example Request syntax with placeholder values
|
1746
1748
|
#
|
1747
1749
|
# resp = client.describe_account_limits({
|
@@ -1857,6 +1859,11 @@ module Aws::CloudFormation
|
|
1857
1859
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
1858
1860
|
# resp.next_token #=> String
|
1859
1861
|
#
|
1862
|
+
#
|
1863
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
1864
|
+
#
|
1865
|
+
# * change_set_create_complete
|
1866
|
+
#
|
1860
1867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet AWS API Documentation
|
1861
1868
|
#
|
1862
1869
|
# @overload describe_change_set(params = {})
|
@@ -1962,6 +1969,8 @@ module Aws::CloudFormation
|
|
1962
1969
|
# * {Types::DescribeStackEventsOutput#stack_events #stack_events} => Array<Types::StackEvent>
|
1963
1970
|
# * {Types::DescribeStackEventsOutput#next_token #next_token} => String
|
1964
1971
|
#
|
1972
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1973
|
+
#
|
1965
1974
|
# @example Request syntax with placeholder values
|
1966
1975
|
#
|
1967
1976
|
# resp = client.describe_stack_events({
|
@@ -1995,7 +2004,7 @@ module Aws::CloudFormation
|
|
1995
2004
|
end
|
1996
2005
|
|
1997
2006
|
# Returns the stack instance that's associated with the specified stack
|
1998
|
-
# set, AWS account, and
|
2007
|
+
# set, AWS account, and Region.
|
1999
2008
|
#
|
2000
2009
|
# For a list of stack instances that are associated with a specific
|
2001
2010
|
# stack set, use ListStackInstances.
|
@@ -2008,7 +2017,7 @@ module Aws::CloudFormation
|
|
2008
2017
|
# The ID of an AWS account that's associated with this stack instance.
|
2009
2018
|
#
|
2010
2019
|
# @option params [required, String] :stack_instance_region
|
2011
|
-
# The name of a
|
2020
|
+
# The name of a Region that's associated with this stack instance.
|
2012
2021
|
#
|
2013
2022
|
# @return [Types::DescribeStackInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2014
2023
|
#
|
@@ -2159,6 +2168,8 @@ module Aws::CloudFormation
|
|
2159
2168
|
# * {Types::DescribeStackResourceDriftsOutput#stack_resource_drifts #stack_resource_drifts} => Array<Types::StackResourceDrift>
|
2160
2169
|
# * {Types::DescribeStackResourceDriftsOutput#next_token #next_token} => String
|
2161
2170
|
#
|
2171
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2172
|
+
#
|
2162
2173
|
# @example Request syntax with placeholder values
|
2163
2174
|
#
|
2164
2175
|
# resp = client.describe_stack_resource_drifts({
|
@@ -2441,6 +2452,8 @@ module Aws::CloudFormation
|
|
2441
2452
|
# * {Types::DescribeStacksOutput#stacks #stacks} => Array<Types::Stack>
|
2442
2453
|
# * {Types::DescribeStacksOutput#next_token #next_token} => String
|
2443
2454
|
#
|
2455
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2456
|
+
#
|
2444
2457
|
# @example Request syntax with placeholder values
|
2445
2458
|
#
|
2446
2459
|
# resp = client.describe_stacks({
|
@@ -2491,6 +2504,16 @@ module Aws::CloudFormation
|
|
2491
2504
|
# resp.stacks[0].drift_information.last_check_timestamp #=> Time
|
2492
2505
|
# resp.next_token #=> String
|
2493
2506
|
#
|
2507
|
+
#
|
2508
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2509
|
+
#
|
2510
|
+
# * stack_create_complete
|
2511
|
+
# * stack_delete_complete
|
2512
|
+
# * stack_exists
|
2513
|
+
# * stack_import_complete
|
2514
|
+
# * stack_rollback_complete
|
2515
|
+
# * stack_update_complete
|
2516
|
+
#
|
2494
2517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks AWS API Documentation
|
2495
2518
|
#
|
2496
2519
|
# @overload describe_stacks(params = {})
|
@@ -2538,6 +2561,7 @@ module Aws::CloudFormation
|
|
2538
2561
|
# * {Types::DescribeTypeOutput#type #type} => String
|
2539
2562
|
# * {Types::DescribeTypeOutput#type_name #type_name} => String
|
2540
2563
|
# * {Types::DescribeTypeOutput#default_version_id #default_version_id} => String
|
2564
|
+
# * {Types::DescribeTypeOutput#is_default_version #is_default_version} => Boolean
|
2541
2565
|
# * {Types::DescribeTypeOutput#description #description} => String
|
2542
2566
|
# * {Types::DescribeTypeOutput#schema #schema} => String
|
2543
2567
|
# * {Types::DescribeTypeOutput#provisioning_type #provisioning_type} => String
|
@@ -2565,6 +2589,7 @@ module Aws::CloudFormation
|
|
2565
2589
|
# resp.type #=> String, one of "RESOURCE"
|
2566
2590
|
# resp.type_name #=> String
|
2567
2591
|
# resp.default_version_id #=> String
|
2592
|
+
# resp.is_default_version #=> Boolean
|
2568
2593
|
# resp.description #=> String
|
2569
2594
|
# resp.schema #=> String
|
2570
2595
|
# resp.provisioning_type #=> String, one of "NON_PROVISIONABLE", "IMMUTABLE", "FULLY_MUTABLE"
|
@@ -2623,6 +2648,11 @@ module Aws::CloudFormation
|
|
2623
2648
|
# resp.type_arn #=> String
|
2624
2649
|
# resp.type_version_arn #=> String
|
2625
2650
|
#
|
2651
|
+
#
|
2652
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2653
|
+
#
|
2654
|
+
# * type_registration_complete
|
2655
|
+
#
|
2626
2656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeRegistration AWS API Documentation
|
2627
2657
|
#
|
2628
2658
|
# @overload describe_type_registration(params = {})
|
@@ -3193,6 +3223,8 @@ module Aws::CloudFormation
|
|
3193
3223
|
# * {Types::ListChangeSetsOutput#summaries #summaries} => Array<Types::ChangeSetSummary>
|
3194
3224
|
# * {Types::ListChangeSetsOutput#next_token #next_token} => String
|
3195
3225
|
#
|
3226
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3227
|
+
#
|
3196
3228
|
# @example Request syntax with placeholder values
|
3197
3229
|
#
|
3198
3230
|
# resp = client.list_change_sets({
|
@@ -3223,7 +3255,7 @@ module Aws::CloudFormation
|
|
3223
3255
|
req.send_request(options)
|
3224
3256
|
end
|
3225
3257
|
|
3226
|
-
# Lists all exported output values in the account and
|
3258
|
+
# Lists all exported output values in the account and Region in which
|
3227
3259
|
# you call this action. Use this action to see the exported output
|
3228
3260
|
# values that you can import into other stacks. To import values, use
|
3229
3261
|
# the [ `Fn::ImportValue` ][1] function.
|
@@ -3245,6 +3277,8 @@ module Aws::CloudFormation
|
|
3245
3277
|
# * {Types::ListExportsOutput#exports #exports} => Array<Types::Export>
|
3246
3278
|
# * {Types::ListExportsOutput#next_token #next_token} => String
|
3247
3279
|
#
|
3280
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3281
|
+
#
|
3248
3282
|
# @example Request syntax with placeholder values
|
3249
3283
|
#
|
3250
3284
|
# resp = client.list_exports({
|
@@ -3294,6 +3328,8 @@ module Aws::CloudFormation
|
|
3294
3328
|
# * {Types::ListImportsOutput#imports #imports} => Array<String>
|
3295
3329
|
# * {Types::ListImportsOutput#next_token #next_token} => String
|
3296
3330
|
#
|
3331
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3332
|
+
#
|
3297
3333
|
# @example Request syntax with placeholder values
|
3298
3334
|
#
|
3299
3335
|
# resp = client.list_imports({
|
@@ -3318,7 +3354,7 @@ module Aws::CloudFormation
|
|
3318
3354
|
|
3319
3355
|
# Returns summary information about stack instances that are associated
|
3320
3356
|
# with the specified stack set. You can filter for stack instances that
|
3321
|
-
# are associated with a specific AWS account name or
|
3357
|
+
# are associated with a specific AWS account name or Region.
|
3322
3358
|
#
|
3323
3359
|
# @option params [required, String] :stack_set_name
|
3324
3360
|
# The name or unique ID of the stack set that you want to list stack
|
@@ -3342,13 +3378,15 @@ module Aws::CloudFormation
|
|
3342
3378
|
# The name of the AWS account that you want to list stack instances for.
|
3343
3379
|
#
|
3344
3380
|
# @option params [String] :stack_instance_region
|
3345
|
-
# The name of the
|
3381
|
+
# The name of the Region where you want to list stack instances.
|
3346
3382
|
#
|
3347
3383
|
# @return [Types::ListStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3348
3384
|
#
|
3349
3385
|
# * {Types::ListStackInstancesOutput#summaries #summaries} => Array<Types::StackInstanceSummary>
|
3350
3386
|
# * {Types::ListStackInstancesOutput#next_token #next_token} => String
|
3351
3387
|
#
|
3388
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3389
|
+
#
|
3352
3390
|
# @example Request syntax with placeholder values
|
3353
3391
|
#
|
3354
3392
|
# resp = client.list_stack_instances({
|
@@ -3407,6 +3445,8 @@ module Aws::CloudFormation
|
|
3407
3445
|
# * {Types::ListStackResourcesOutput#stack_resource_summaries #stack_resource_summaries} => Array<Types::StackResourceSummary>
|
3408
3446
|
# * {Types::ListStackResourcesOutput#next_token #next_token} => String
|
3409
3447
|
#
|
3448
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3449
|
+
#
|
3410
3450
|
# @example Request syntax with placeholder values
|
3411
3451
|
#
|
3412
3452
|
# resp = client.list_stack_resources({
|
@@ -3466,6 +3506,8 @@ module Aws::CloudFormation
|
|
3466
3506
|
# * {Types::ListStackSetOperationResultsOutput#summaries #summaries} => Array<Types::StackSetOperationResultSummary>
|
3467
3507
|
# * {Types::ListStackSetOperationResultsOutput#next_token #next_token} => String
|
3468
3508
|
#
|
3509
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3510
|
+
#
|
3469
3511
|
# @example Request syntax with placeholder values
|
3470
3512
|
#
|
3471
3513
|
# resp = client.list_stack_set_operation_results({
|
@@ -3522,6 +3564,8 @@ module Aws::CloudFormation
|
|
3522
3564
|
# * {Types::ListStackSetOperationsOutput#summaries #summaries} => Array<Types::StackSetOperationSummary>
|
3523
3565
|
# * {Types::ListStackSetOperationsOutput#next_token #next_token} => String
|
3524
3566
|
#
|
3567
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3568
|
+
#
|
3525
3569
|
# @example Request syntax with placeholder values
|
3526
3570
|
#
|
3527
3571
|
# resp = client.list_stack_set_operations({
|
@@ -3575,6 +3619,8 @@ module Aws::CloudFormation
|
|
3575
3619
|
# * {Types::ListStackSetsOutput#summaries #summaries} => Array<Types::StackSetSummary>
|
3576
3620
|
# * {Types::ListStackSetsOutput#next_token #next_token} => String
|
3577
3621
|
#
|
3622
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3623
|
+
#
|
3578
3624
|
# @example Request syntax with placeholder values
|
3579
3625
|
#
|
3580
3626
|
# resp = client.list_stack_sets({
|
@@ -3628,6 +3674,8 @@ module Aws::CloudFormation
|
|
3628
3674
|
# * {Types::ListStacksOutput#stack_summaries #stack_summaries} => Array<Types::StackSummary>
|
3629
3675
|
# * {Types::ListStacksOutput#next_token #next_token} => String
|
3630
3676
|
#
|
3677
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3678
|
+
#
|
3631
3679
|
# @example Request syntax with placeholder values
|
3632
3680
|
#
|
3633
3681
|
# resp = client.list_stacks({
|
@@ -3704,6 +3752,8 @@ module Aws::CloudFormation
|
|
3704
3752
|
# * {Types::ListTypeRegistrationsOutput#registration_token_list #registration_token_list} => Array<String>
|
3705
3753
|
# * {Types::ListTypeRegistrationsOutput#next_token #next_token} => String
|
3706
3754
|
#
|
3755
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3756
|
+
#
|
3707
3757
|
# @example Request syntax with placeholder values
|
3708
3758
|
#
|
3709
3759
|
# resp = client.list_type_registrations({
|
@@ -3784,6 +3834,8 @@ module Aws::CloudFormation
|
|
3784
3834
|
# * {Types::ListTypeVersionsOutput#type_version_summaries #type_version_summaries} => Array<Types::TypeVersionSummary>
|
3785
3835
|
# * {Types::ListTypeVersionsOutput#next_token #next_token} => String
|
3786
3836
|
#
|
3837
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3838
|
+
#
|
3787
3839
|
# @example Request syntax with placeholder values
|
3788
3840
|
#
|
3789
3841
|
# resp = client.list_type_versions({
|
@@ -3801,6 +3853,7 @@ module Aws::CloudFormation
|
|
3801
3853
|
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE"
|
3802
3854
|
# resp.type_version_summaries[0].type_name #=> String
|
3803
3855
|
# resp.type_version_summaries[0].version_id #=> String
|
3856
|
+
# resp.type_version_summaries[0].is_default_version #=> Boolean
|
3804
3857
|
# resp.type_version_summaries[0].arn #=> String
|
3805
3858
|
# resp.type_version_summaries[0].time_created #=> Time
|
3806
3859
|
# resp.type_version_summaries[0].description #=> String
|
@@ -3881,6 +3934,8 @@ module Aws::CloudFormation
|
|
3881
3934
|
# * {Types::ListTypesOutput#type_summaries #type_summaries} => Array<Types::TypeSummary>
|
3882
3935
|
# * {Types::ListTypesOutput#next_token #next_token} => String
|
3883
3936
|
#
|
3937
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3938
|
+
#
|
3884
3939
|
# @example Request syntax with placeholder values
|
3885
3940
|
#
|
3886
3941
|
# resp = client.list_types({
|
@@ -4006,6 +4061,11 @@ module Aws::CloudFormation
|
|
4006
4061
|
# registeration, see [Creating Resource Providers][1] in the
|
4007
4062
|
# *CloudFormation CLI User Guide*.
|
4008
4063
|
#
|
4064
|
+
# You can have a maximum of 50 resource type versions registered at a
|
4065
|
+
# time. This maximum is per account and per region. Use
|
4066
|
+
# [DeregisterType](AWSCloudFormation/latest/APIReference/API_DeregisterType.html)
|
4067
|
+
# to deregister specific resource type versions if necessary.
|
4068
|
+
#
|
4009
4069
|
# Once you have initiated a registration request using ` RegisterType `,
|
4010
4070
|
# you can use ` DescribeTypeRegistration ` to monitor the progress of
|
4011
4071
|
# the registration request.
|
@@ -4133,7 +4193,7 @@ module Aws::CloudFormation
|
|
4133
4193
|
# @option params [String] :stack_policy_url
|
4134
4194
|
# Location of a file containing the stack policy. The URL must point to
|
4135
4195
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
4136
|
-
#
|
4196
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
4137
4197
|
# the `StackPolicyURL` parameter, but not both.
|
4138
4198
|
#
|
4139
4199
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -4340,7 +4400,7 @@ module Aws::CloudFormation
|
|
4340
4400
|
# @option params [String] :stack_policy_during_update_url
|
4341
4401
|
# Location of a file containing the temporary overriding stack policy.
|
4342
4402
|
# The URL must point to a policy (max size: 16KB) located in an S3
|
4343
|
-
# bucket in the same
|
4403
|
+
# bucket in the same Region as the stack. You can specify either the
|
4344
4404
|
# `StackPolicyDuringUpdateBody` or the `StackPolicyDuringUpdateURL`
|
4345
4405
|
# parameter, but not both.
|
4346
4406
|
#
|
@@ -4495,7 +4555,7 @@ module Aws::CloudFormation
|
|
4495
4555
|
# @option params [String] :stack_policy_url
|
4496
4556
|
# Location of a file containing the updated stack policy. The URL must
|
4497
4557
|
# point to a policy (max size: 16KB) located in an S3 bucket in the same
|
4498
|
-
#
|
4558
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
4499
4559
|
# the `StackPolicyURL` parameter, but not both.
|
4500
4560
|
#
|
4501
4561
|
# You might update the stack policy, for example, in order to protect a
|
@@ -4597,10 +4657,10 @@ module Aws::CloudFormation
|
|
4597
4657
|
end
|
4598
4658
|
|
4599
4659
|
# Updates the parameter values for stack instances for the specified
|
4600
|
-
# accounts, within the specified
|
4601
|
-
# stack in a specific account and
|
4660
|
+
# accounts, within the specified Regions. A stack instance refers to a
|
4661
|
+
# stack in a specific account and Region.
|
4602
4662
|
#
|
4603
|
-
# You can only update stack instances in
|
4663
|
+
# You can only update stack instances in Regions and accounts where they
|
4604
4664
|
# already exist; to create additional stack instances, use
|
4605
4665
|
# [CreateStackInstances][1].
|
4606
4666
|
#
|
@@ -4627,10 +4687,10 @@ module Aws::CloudFormation
|
|
4627
4687
|
# instances.
|
4628
4688
|
#
|
4629
4689
|
# @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
|
4690
|
+
# \[`Self-managed` permissions\] The names of one or more AWS accounts
|
4691
|
+
# for which you want to update parameter values for stack instances. The
|
4632
4692
|
# overridden parameter values will be applied to all stack instances in
|
4633
|
-
# the specified accounts and
|
4693
|
+
# the specified accounts and Regions.
|
4634
4694
|
#
|
4635
4695
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
4636
4696
|
#
|
@@ -4645,16 +4705,16 @@ module Aws::CloudFormation
|
|
4645
4705
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
4646
4706
|
#
|
4647
4707
|
# @option params [required, Array<String>] :regions
|
4648
|
-
# The names of one or more
|
4708
|
+
# The names of one or more Regions in which you want to update parameter
|
4649
4709
|
# values for stack instances. The overridden parameter values will be
|
4650
|
-
# applied to all stack instances in the specified accounts and
|
4710
|
+
# applied to all stack instances in the specified accounts and Regions.
|
4651
4711
|
#
|
4652
4712
|
# @option params [Array<Types::Parameter>] :parameter_overrides
|
4653
4713
|
# A list of input parameters whose values you want to update for the
|
4654
4714
|
# specified stack instances.
|
4655
4715
|
#
|
4656
4716
|
# Any overridden parameter values will be applied to all stack instances
|
4657
|
-
# in the specified accounts and
|
4717
|
+
# in the specified accounts and Regions. When specifying parameters and
|
4658
4718
|
# their values, be aware of how AWS CloudFormation sets parameter values
|
4659
4719
|
# during stack instance update operations:
|
4660
4720
|
#
|
@@ -4759,7 +4819,7 @@ module Aws::CloudFormation
|
|
4759
4819
|
end
|
4760
4820
|
|
4761
4821
|
# Updates the stack set, and associated stack instances in the specified
|
4762
|
-
# accounts and
|
4822
|
+
# accounts and Regions.
|
4763
4823
|
#
|
4764
4824
|
# Even if the stack set operation created by updating the stack set
|
4765
4825
|
# fails (completely or partially, below or above a specified failure
|
@@ -5014,9 +5074,9 @@ module Aws::CloudFormation
|
|
5014
5074
|
# not need to pass this option.**
|
5015
5075
|
#
|
5016
5076
|
# @option params [Array<String>] :accounts
|
5017
|
-
# \[Self-managed permissions\] The accounts in which to update
|
5077
|
+
# \[`Self-managed` permissions\] The accounts in which to update
|
5018
5078
|
# associated stack instances. If you specify accounts, you must also
|
5019
|
-
# specify the
|
5079
|
+
# specify the Regions in which to update stack set instances.
|
5020
5080
|
#
|
5021
5081
|
# To update *all* the stack instances associated with this stack set, do
|
5022
5082
|
# not specify the `Accounts` or `Regions` properties.
|
@@ -5025,15 +5085,15 @@ module Aws::CloudFormation
|
|
5025
5085
|
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
5026
5086
|
# `Parameters` property, AWS CloudFormation marks all stack instances
|
5027
5087
|
# with a status of `OUTDATED` prior to updating the stack instances in
|
5028
|
-
# the specified accounts and
|
5088
|
+
# the specified accounts and Regions. If the stack set update does not
|
5029
5089
|
# include changes to the template or parameters, AWS CloudFormation
|
5030
|
-
# updates the stack instances in the specified accounts and
|
5090
|
+
# updates the stack instances in the specified accounts and Regions,
|
5031
5091
|
# while leaving all other stack instances with their existing stack
|
5032
5092
|
# instance status.
|
5033
5093
|
#
|
5034
5094
|
# @option params [Array<String>] :regions
|
5035
|
-
# The
|
5036
|
-
# specify
|
5095
|
+
# The Regions in which to update associated stack instances. If you
|
5096
|
+
# specify Regions, you must also specify accounts in which to update
|
5037
5097
|
# stack set instances.
|
5038
5098
|
#
|
5039
5099
|
# To update *all* the stack instances associated with this stack set, do
|
@@ -5043,9 +5103,9 @@ module Aws::CloudFormation
|
|
5043
5103
|
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
5044
5104
|
# `Parameters` property, AWS CloudFormation marks all stack instances
|
5045
5105
|
# with a status of `OUTDATED` prior to updating the stack instances in
|
5046
|
-
# the specified accounts and
|
5106
|
+
# the specified accounts and Regions. If the stack set update does not
|
5047
5107
|
# include changes to the template or parameters, AWS CloudFormation
|
5048
|
-
# updates the stack instances in the specified accounts and
|
5108
|
+
# updates the stack instances in the specified accounts and Regions,
|
5049
5109
|
# while leaving all other stack instances with their existing stack
|
5050
5110
|
# instance status.
|
5051
5111
|
#
|
@@ -5238,7 +5298,7 @@ module Aws::CloudFormation
|
|
5238
5298
|
params: params,
|
5239
5299
|
config: config)
|
5240
5300
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5241
|
-
context[:gem_version] = '1.
|
5301
|
+
context[:gem_version] = '1.36.0'
|
5242
5302
|
Seahorse::Client::Request.new(handlers, context)
|
5243
5303
|
end
|
5244
5304
|
|
@@ -5304,15 +5364,16 @@ module Aws::CloudFormation
|
|
5304
5364
|
# The following table lists the valid waiter names, the operations they call,
|
5305
5365
|
# and the default `:delay` and `:max_attempts` values.
|
5306
5366
|
#
|
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
|
-
# |
|
5315
|
-
# |
|
5367
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5368
|
+
# | -------------------------- | ----------------------------------- | -------- | ------------- |
|
5369
|
+
# | change_set_create_complete | {Client#describe_change_set} | 30 | 120 |
|
5370
|
+
# | stack_create_complete | {Client#describe_stacks} | 30 | 120 |
|
5371
|
+
# | stack_delete_complete | {Client#describe_stacks} | 30 | 120 |
|
5372
|
+
# | stack_exists | {Client#describe_stacks} | 5 | 20 |
|
5373
|
+
# | stack_import_complete | {Client#describe_stacks} | 30 | 120 |
|
5374
|
+
# | stack_rollback_complete | {Client#describe_stacks} | 30 | 120 |
|
5375
|
+
# | stack_update_complete | {Client#describe_stacks} | 30 | 120 |
|
5376
|
+
# | type_registration_complete | {Client#describe_type_registration} | 30 | 120 |
|
5316
5377
|
#
|
5317
5378
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5318
5379
|
# because the waiter has entered a state that it will not transition
|
@@ -5368,6 +5429,7 @@ module Aws::CloudFormation
|
|
5368
5429
|
stack_delete_complete: Waiters::StackDeleteComplete,
|
5369
5430
|
stack_exists: Waiters::StackExists,
|
5370
5431
|
stack_import_complete: Waiters::StackImportComplete,
|
5432
|
+
stack_rollback_complete: Waiters::StackRollbackComplete,
|
5371
5433
|
stack_update_complete: Waiters::StackUpdateComplete,
|
5372
5434
|
type_registration_complete: Waiters::TypeRegistrationComplete
|
5373
5435
|
}
|