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
@@ -139,6 +139,7 @@ module Aws::CloudFormation
|
|
139
139
|
InvalidChangeSetStatusException = Shapes::StructureShape.new(name: 'InvalidChangeSetStatusException')
|
140
140
|
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException')
|
141
141
|
InvalidStateTransitionException = Shapes::StructureShape.new(name: 'InvalidStateTransitionException')
|
142
|
+
IsDefaultVersion = Shapes::BooleanShape.new(name: 'IsDefaultVersion')
|
142
143
|
Key = Shapes::StringShape.new(name: 'Key')
|
143
144
|
LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
|
144
145
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
@@ -663,6 +664,7 @@ module Aws::CloudFormation
|
|
663
664
|
DescribeTypeOutput.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
664
665
|
DescribeTypeOutput.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
|
665
666
|
DescribeTypeOutput.add_member(:default_version_id, Shapes::ShapeRef.new(shape: TypeVersionId, location_name: "DefaultVersionId"))
|
667
|
+
DescribeTypeOutput.add_member(:is_default_version, Shapes::ShapeRef.new(shape: IsDefaultVersion, location_name: "IsDefaultVersion"))
|
666
668
|
DescribeTypeOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
667
669
|
DescribeTypeOutput.add_member(:schema, Shapes::ShapeRef.new(shape: TypeSchema, location_name: "Schema"))
|
668
670
|
DescribeTypeOutput.add_member(:provisioning_type, Shapes::ShapeRef.new(shape: ProvisioningType, location_name: "ProvisioningType"))
|
@@ -1336,6 +1338,7 @@ module Aws::CloudFormation
|
|
1336
1338
|
TypeVersionSummary.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
1337
1339
|
TypeVersionSummary.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
|
1338
1340
|
TypeVersionSummary.add_member(:version_id, Shapes::ShapeRef.new(shape: TypeVersionId, location_name: "VersionId"))
|
1341
|
+
TypeVersionSummary.add_member(:is_default_version, Shapes::ShapeRef.new(shape: IsDefaultVersion, location_name: "IsDefaultVersion"))
|
1339
1342
|
TypeVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: TypeArn, location_name: "Arn"))
|
1340
1343
|
TypeVersionSummary.add_member(:time_created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "TimeCreated"))
|
1341
1344
|
TypeVersionSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
@@ -1554,6 +1557,11 @@ module Aws::CloudFormation
|
|
1554
1557
|
o.http_request_uri = "/"
|
1555
1558
|
o.input = Shapes::ShapeRef.new(shape: DescribeAccountLimitsInput)
|
1556
1559
|
o.output = Shapes::ShapeRef.new(shape: DescribeAccountLimitsOutput)
|
1560
|
+
o[:pager] = Aws::Pager.new(
|
1561
|
+
tokens: {
|
1562
|
+
"next_token" => "next_token"
|
1563
|
+
}
|
1564
|
+
)
|
1557
1565
|
end)
|
1558
1566
|
|
1559
1567
|
api.add_operation(:describe_change_set, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1756,6 +1764,11 @@ module Aws::CloudFormation
|
|
1756
1764
|
o.http_request_uri = "/"
|
1757
1765
|
o.input = Shapes::ShapeRef.new(shape: ListChangeSetsInput)
|
1758
1766
|
o.output = Shapes::ShapeRef.new(shape: ListChangeSetsOutput)
|
1767
|
+
o[:pager] = Aws::Pager.new(
|
1768
|
+
tokens: {
|
1769
|
+
"next_token" => "next_token"
|
1770
|
+
}
|
1771
|
+
)
|
1759
1772
|
end)
|
1760
1773
|
|
1761
1774
|
api.add_operation(:list_exports, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1791,6 +1804,12 @@ module Aws::CloudFormation
|
|
1791
1804
|
o.input = Shapes::ShapeRef.new(shape: ListStackInstancesInput)
|
1792
1805
|
o.output = Shapes::ShapeRef.new(shape: ListStackInstancesOutput)
|
1793
1806
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1807
|
+
o[:pager] = Aws::Pager.new(
|
1808
|
+
limit_key: "max_results",
|
1809
|
+
tokens: {
|
1810
|
+
"next_token" => "next_token"
|
1811
|
+
}
|
1812
|
+
)
|
1794
1813
|
end)
|
1795
1814
|
|
1796
1815
|
api.add_operation(:list_stack_resources, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1814,6 +1833,12 @@ module Aws::CloudFormation
|
|
1814
1833
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetOperationResultsOutput)
|
1815
1834
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1816
1835
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
1836
|
+
o[:pager] = Aws::Pager.new(
|
1837
|
+
limit_key: "max_results",
|
1838
|
+
tokens: {
|
1839
|
+
"next_token" => "next_token"
|
1840
|
+
}
|
1841
|
+
)
|
1817
1842
|
end)
|
1818
1843
|
|
1819
1844
|
api.add_operation(:list_stack_set_operations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1823,6 +1848,12 @@ module Aws::CloudFormation
|
|
1823
1848
|
o.input = Shapes::ShapeRef.new(shape: ListStackSetOperationsInput)
|
1824
1849
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetOperationsOutput)
|
1825
1850
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1851
|
+
o[:pager] = Aws::Pager.new(
|
1852
|
+
limit_key: "max_results",
|
1853
|
+
tokens: {
|
1854
|
+
"next_token" => "next_token"
|
1855
|
+
}
|
1856
|
+
)
|
1826
1857
|
end)
|
1827
1858
|
|
1828
1859
|
api.add_operation(:list_stack_sets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1831,6 +1862,12 @@ module Aws::CloudFormation
|
|
1831
1862
|
o.http_request_uri = "/"
|
1832
1863
|
o.input = Shapes::ShapeRef.new(shape: ListStackSetsInput)
|
1833
1864
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetsOutput)
|
1865
|
+
o[:pager] = Aws::Pager.new(
|
1866
|
+
limit_key: "max_results",
|
1867
|
+
tokens: {
|
1868
|
+
"next_token" => "next_token"
|
1869
|
+
}
|
1870
|
+
)
|
1834
1871
|
end)
|
1835
1872
|
|
1836
1873
|
api.add_operation(:list_stacks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -148,7 +148,8 @@ module Aws::CloudFormation
|
|
148
148
|
# Waiter polls an API operation until a resource enters a desired
|
149
149
|
# state.
|
150
150
|
#
|
151
|
-
# @note The waiting operation is performed on a copy. The original resource
|
151
|
+
# @note The waiting operation is performed on a copy. The original resource
|
152
|
+
# remains unchanged.
|
152
153
|
#
|
153
154
|
# ## Basic Usage
|
154
155
|
#
|
@@ -161,13 +162,15 @@ module Aws::CloudFormation
|
|
161
162
|
#
|
162
163
|
# ## Example
|
163
164
|
#
|
164
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
165
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
166
|
+
# instance.state.name == 'running'
|
167
|
+
# end
|
165
168
|
#
|
166
169
|
# ## Configuration
|
167
170
|
#
|
168
171
|
# You can configure the maximum number of polling attempts, and the
|
169
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
170
|
-
# by passing a block to {#wait_until}:
|
172
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
173
|
+
# set by passing a block to {#wait_until}:
|
171
174
|
#
|
172
175
|
# # poll for ~25 seconds
|
173
176
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -198,17 +201,16 @@ module Aws::CloudFormation
|
|
198
201
|
# # resource did not enter the desired state in time
|
199
202
|
# end
|
200
203
|
#
|
204
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
201
205
|
#
|
202
|
-
# @
|
203
|
-
#
|
204
|
-
#
|
205
|
-
# because the waiter has entered a state that it will not transition
|
206
|
-
# out of, preventing success.
|
206
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
207
|
+
# terminates because the waiter has entered a state that it will not
|
208
|
+
# transition out of, preventing success.
|
207
209
|
#
|
208
210
|
# yet successful.
|
209
211
|
#
|
210
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
211
|
-
# while polling for a resource that is not expected.
|
212
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
213
|
+
# encountered while polling for a resource that is not expected.
|
212
214
|
#
|
213
215
|
# @raise [NotImplementedError] Raised when the resource does not
|
214
216
|
#
|
@@ -6,13 +6,18 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::CloudFormation
|
9
|
+
|
9
10
|
# This class provides a resource oriented interface for CloudFormation.
|
10
11
|
# To create a resource object:
|
12
|
+
#
|
11
13
|
# resource = Aws::CloudFormation::Resource.new(region: 'us-west-2')
|
14
|
+
#
|
12
15
|
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass
|
16
|
+
# If you do not pass `:client`, a default client will be constructed.
|
17
|
+
#
|
14
18
|
# client = Aws::CloudFormation::Client.new(region: 'us-west-2')
|
15
19
|
# resource = Aws::CloudFormation::Resource.new(client: client)
|
20
|
+
#
|
16
21
|
class Resource
|
17
22
|
|
18
23
|
# @param options ({})
|
@@ -72,7 +77,7 @@ module Aws::CloudFormation
|
|
72
77
|
# @param [Hash] options ({})
|
73
78
|
# @option options [required, String] :stack_name
|
74
79
|
# The name that is associated with the stack. The name must be unique in
|
75
|
-
# the
|
80
|
+
# the Region in which you are creating the stack.
|
76
81
|
#
|
77
82
|
# <note markdown="1"> A stack name can contain only alphanumeric characters (case sensitive)
|
78
83
|
# and hyphens. It must start with an alphabetic character and cannot be
|
@@ -268,7 +273,7 @@ module Aws::CloudFormation
|
|
268
273
|
# @option options [String] :stack_policy_url
|
269
274
|
# Location of a file containing the stack policy. The URL must point to
|
270
275
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
271
|
-
#
|
276
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
272
277
|
# the `StackPolicyURL` parameter, but not both.
|
273
278
|
# @option options [Array<Types::Tag>] :tags
|
274
279
|
# Key-value pairs to associate with this stack. AWS CloudFormation also
|
@@ -311,7 +316,7 @@ module Aws::CloudFormation
|
|
311
316
|
# [2]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
312
317
|
# @return [Stack]
|
313
318
|
def create_stack(options = {})
|
314
|
-
|
319
|
+
@client.create_stack(options)
|
315
320
|
Stack.new(
|
316
321
|
name: options[:stack_name],
|
317
322
|
client: @client
|
@@ -276,7 +276,8 @@ module Aws::CloudFormation
|
|
276
276
|
# Waiter polls an API operation until a resource enters a desired
|
277
277
|
# state.
|
278
278
|
#
|
279
|
-
# @note The waiting operation is performed on a copy. The original resource
|
279
|
+
# @note The waiting operation is performed on a copy. The original resource
|
280
|
+
# remains unchanged.
|
280
281
|
#
|
281
282
|
# ## Basic Usage
|
282
283
|
#
|
@@ -289,13 +290,15 @@ module Aws::CloudFormation
|
|
289
290
|
#
|
290
291
|
# ## Example
|
291
292
|
#
|
292
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
293
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
294
|
+
# instance.state.name == 'running'
|
295
|
+
# end
|
293
296
|
#
|
294
297
|
# ## Configuration
|
295
298
|
#
|
296
299
|
# You can configure the maximum number of polling attempts, and the
|
297
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
298
|
-
# by passing a block to {#wait_until}:
|
300
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
301
|
+
# set by passing a block to {#wait_until}:
|
299
302
|
#
|
300
303
|
# # poll for ~25 seconds
|
301
304
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -326,17 +329,16 @@ module Aws::CloudFormation
|
|
326
329
|
# # resource did not enter the desired state in time
|
327
330
|
# end
|
328
331
|
#
|
332
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
329
333
|
#
|
330
|
-
# @
|
331
|
-
#
|
332
|
-
#
|
333
|
-
# because the waiter has entered a state that it will not transition
|
334
|
-
# out of, preventing success.
|
334
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
335
|
+
# terminates because the waiter has entered a state that it will not
|
336
|
+
# transition out of, preventing success.
|
335
337
|
#
|
336
338
|
# yet successful.
|
337
339
|
#
|
338
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
339
|
-
# while polling for a resource that is not expected.
|
340
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
341
|
+
# encountered while polling for a resource that is not expected.
|
340
342
|
#
|
341
343
|
# @raise [NotImplementedError] Raised when the resource does not
|
342
344
|
#
|
@@ -617,7 +619,7 @@ module Aws::CloudFormation
|
|
617
619
|
# @option options [String] :stack_policy_url
|
618
620
|
# Location of a file containing the stack policy. The URL must point to
|
619
621
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
620
|
-
#
|
622
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
621
623
|
# the `StackPolicyURL` parameter, but not both.
|
622
624
|
# @option options [Array<Types::Tag>] :tags
|
623
625
|
# Key-value pairs to associate with this stack. AWS CloudFormation also
|
@@ -801,7 +803,7 @@ module Aws::CloudFormation
|
|
801
803
|
# @option options [String] :stack_policy_during_update_url
|
802
804
|
# Location of a file containing the temporary overriding stack policy.
|
803
805
|
# The URL must point to a policy (max size: 16KB) located in an S3
|
804
|
-
# bucket in the same
|
806
|
+
# bucket in the same Region as the stack. You can specify either the
|
805
807
|
# `StackPolicyDuringUpdateBody` or the `StackPolicyDuringUpdateURL`
|
806
808
|
# parameter, but not both.
|
807
809
|
#
|
@@ -949,7 +951,7 @@ module Aws::CloudFormation
|
|
949
951
|
# @option options [String] :stack_policy_url
|
950
952
|
# Location of a file containing the updated stack policy. The URL must
|
951
953
|
# point to a policy (max size: 16KB) located in an S3 bucket in the same
|
952
|
-
#
|
954
|
+
# Region as the stack. You can specify either the `StackPolicyBody` or
|
953
955
|
# the `StackPolicyURL` parameter, but not both.
|
954
956
|
#
|
955
957
|
# You might update the stack policy, for example, in order to protect a
|
@@ -1078,8 +1080,8 @@ module Aws::CloudFormation
|
|
1078
1080
|
|
1079
1081
|
def yield_waiter_and_warn(waiter, &block)
|
1080
1082
|
if !@waiter_block_warned
|
1081
|
-
msg = "pass options to configure the waiter; "
|
1082
|
-
|
1083
|
+
msg = "pass options to configure the waiter; "\
|
1084
|
+
"yielding the waiter is deprecated"
|
1083
1085
|
warn(msg)
|
1084
1086
|
@waiter_block_warned = true
|
1085
1087
|
end
|
@@ -1087,7 +1089,9 @@ module Aws::CloudFormation
|
|
1087
1089
|
end
|
1088
1090
|
|
1089
1091
|
def separate_params_and_options(options)
|
1090
|
-
opts = Set.new(
|
1092
|
+
opts = Set.new(
|
1093
|
+
[:client, :max_attempts, :delay, :before_attempt, :before_wait]
|
1094
|
+
)
|
1091
1095
|
waiter_opts = {}
|
1092
1096
|
waiter_params = {}
|
1093
1097
|
options.each_pair do |key, value|
|
@@ -158,7 +158,8 @@ module Aws::CloudFormation
|
|
158
158
|
# Waiter polls an API operation until a resource enters a desired
|
159
159
|
# state.
|
160
160
|
#
|
161
|
-
# @note The waiting operation is performed on a copy. The original resource
|
161
|
+
# @note The waiting operation is performed on a copy. The original resource
|
162
|
+
# remains unchanged.
|
162
163
|
#
|
163
164
|
# ## Basic Usage
|
164
165
|
#
|
@@ -171,13 +172,15 @@ module Aws::CloudFormation
|
|
171
172
|
#
|
172
173
|
# ## Example
|
173
174
|
#
|
174
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
175
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
176
|
+
# instance.state.name == 'running'
|
177
|
+
# end
|
175
178
|
#
|
176
179
|
# ## Configuration
|
177
180
|
#
|
178
181
|
# You can configure the maximum number of polling attempts, and the
|
179
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
180
|
-
# by passing a block to {#wait_until}:
|
182
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
183
|
+
# set by passing a block to {#wait_until}:
|
181
184
|
#
|
182
185
|
# # poll for ~25 seconds
|
183
186
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -208,17 +211,16 @@ module Aws::CloudFormation
|
|
208
211
|
# # resource did not enter the desired state in time
|
209
212
|
# end
|
210
213
|
#
|
214
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
211
215
|
#
|
212
|
-
# @
|
213
|
-
#
|
214
|
-
#
|
215
|
-
# because the waiter has entered a state that it will not transition
|
216
|
-
# out of, preventing success.
|
216
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
217
|
+
# terminates because the waiter has entered a state that it will not
|
218
|
+
# transition out of, preventing success.
|
217
219
|
#
|
218
220
|
# yet successful.
|
219
221
|
#
|
220
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
221
|
-
# while polling for a resource that is not expected.
|
222
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
223
|
+
# encountered while polling for a resource that is not expected.
|
222
224
|
#
|
223
225
|
# @raise [NotImplementedError] Raised when the resource does not
|
224
226
|
#
|
@@ -126,7 +126,8 @@ module Aws::CloudFormation
|
|
126
126
|
# Waiter polls an API operation until a resource enters a desired
|
127
127
|
# state.
|
128
128
|
#
|
129
|
-
# @note The waiting operation is performed on a copy. The original resource
|
129
|
+
# @note The waiting operation is performed on a copy. The original resource
|
130
|
+
# remains unchanged.
|
130
131
|
#
|
131
132
|
# ## Basic Usage
|
132
133
|
#
|
@@ -139,13 +140,15 @@ module Aws::CloudFormation
|
|
139
140
|
#
|
140
141
|
# ## Example
|
141
142
|
#
|
142
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
143
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
144
|
+
# instance.state.name == 'running'
|
145
|
+
# end
|
143
146
|
#
|
144
147
|
# ## Configuration
|
145
148
|
#
|
146
149
|
# You can configure the maximum number of polling attempts, and the
|
147
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
148
|
-
# by passing a block to {#wait_until}:
|
150
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
151
|
+
# set by passing a block to {#wait_until}:
|
149
152
|
#
|
150
153
|
# # poll for ~25 seconds
|
151
154
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -176,17 +179,16 @@ module Aws::CloudFormation
|
|
176
179
|
# # resource did not enter the desired state in time
|
177
180
|
# end
|
178
181
|
#
|
182
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
179
183
|
#
|
180
|
-
# @
|
181
|
-
#
|
182
|
-
#
|
183
|
-
# because the waiter has entered a state that it will not transition
|
184
|
-
# out of, preventing success.
|
184
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
185
|
+
# terminates because the waiter has entered a state that it will not
|
186
|
+
# transition out of, preventing success.
|
185
187
|
#
|
186
188
|
# yet successful.
|
187
189
|
#
|
188
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
189
|
-
# while polling for a resource that is not expected.
|
190
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
191
|
+
# encountered while polling for a resource that is not expected.
|
190
192
|
#
|
191
193
|
# @raise [NotImplementedError] Raised when the resource does not
|
192
194
|
#
|
@@ -10,16 +10,16 @@ module Aws::CloudFormation
|
|
10
10
|
|
11
11
|
# Structure that contains the results of the account gate function which
|
12
12
|
# AWS CloudFormation invokes, if present, before proceeding with a stack
|
13
|
-
# set operation in an account and
|
13
|
+
# set operation in an account and Region.
|
14
14
|
#
|
15
|
-
# For each account and
|
15
|
+
# For each account and Region, AWS CloudFormation lets you specify a
|
16
16
|
# Lamdba function that encapsulates any requirements that must be met
|
17
17
|
# before CloudFormation can proceed with a stack set operation in that
|
18
|
-
# account and
|
19
|
-
# stack set operation is requested for that account and
|
18
|
+
# account and Region. CloudFormation invokes the function each time a
|
19
|
+
# stack set operation is requested for that account and Region; if the
|
20
20
|
# function returns `FAILED`, CloudFormation cancels the operation in
|
21
|
-
# that account and
|
22
|
-
# status for that account and
|
21
|
+
# that account and Region, and sets the stack set operation result
|
22
|
+
# status for that account and Region to `FAILED`.
|
23
23
|
#
|
24
24
|
# For more information, see [Configuring a target account gate][1].
|
25
25
|
#
|
@@ -31,37 +31,37 @@ module Aws::CloudFormation
|
|
31
31
|
# The status of the account gate function.
|
32
32
|
#
|
33
33
|
# * `SUCCEEDED`\: The account gate function has determined that the
|
34
|
-
# account and
|
34
|
+
# account and Region passes any requirements for a stack set
|
35
35
|
# operation to occur. AWS CloudFormation proceeds with the stack
|
36
|
-
# operation in that account and
|
36
|
+
# operation in that account and Region.
|
37
37
|
#
|
38
38
|
# * `FAILED`\: The account gate function has determined that the
|
39
|
-
# account and
|
39
|
+
# account and Region does not meet the requirements for a stack set
|
40
40
|
# operation to occur. AWS CloudFormation cancels the stack set
|
41
|
-
# operation in that account and
|
42
|
-
# operation result status for that account and
|
41
|
+
# operation in that account and Region, and sets the stack set
|
42
|
+
# operation result status for that account and Region to `FAILED`.
|
43
43
|
#
|
44
44
|
# * `SKIPPED`\: AWS CloudFormation has skipped calling the account
|
45
|
-
# gate function for this account and
|
45
|
+
# gate function for this account and Region, for one of the
|
46
46
|
# following reasons:
|
47
47
|
#
|
48
48
|
# * An account gate function has not been specified for the account
|
49
|
-
# and
|
50
|
-
# operation in this account and
|
49
|
+
# and Region. AWS CloudFormation proceeds with the stack set
|
50
|
+
# operation in this account and Region.
|
51
51
|
#
|
52
52
|
# * The `AWSCloudFormationStackSetExecutionRole` of the stack set
|
53
53
|
# adminstration account lacks permissions to invoke the function.
|
54
54
|
# AWS CloudFormation proceeds with the stack set operation in this
|
55
|
-
# account and
|
55
|
+
# account and Region.
|
56
56
|
#
|
57
57
|
# * Either no action is necessary, or no action is possible, on the
|
58
58
|
# stack. AWS CloudFormation skips the stack set operation in this
|
59
|
-
# account and
|
59
|
+
# account and Region.
|
60
60
|
# @return [String]
|
61
61
|
#
|
62
62
|
# @!attribute [rw] status_reason
|
63
63
|
# The reason for the account gate status assigned to this account and
|
64
|
-
#
|
64
|
+
# Region for the stack set operation.
|
65
65
|
# @return [String]
|
66
66
|
#
|
67
67
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/AccountGateResult AWS API Documentation
|
@@ -752,7 +752,7 @@ module Aws::CloudFormation
|
|
752
752
|
#
|
753
753
|
# @!attribute [rw] stack_name
|
754
754
|
# The name that is associated with the stack. The name must be unique
|
755
|
-
# in the
|
755
|
+
# in the Region in which you are creating the stack.
|
756
756
|
#
|
757
757
|
# <note markdown="1"> A stack name can contain only alphanumeric characters (case
|
758
758
|
# sensitive) and hyphens. It must start with an alphabetic character
|
@@ -976,7 +976,7 @@ module Aws::CloudFormation
|
|
976
976
|
# @!attribute [rw] stack_policy_url
|
977
977
|
# Location of a file containing the stack policy. The URL must point
|
978
978
|
# to a policy (maximum size: 16 KB) located in an S3 bucket in the
|
979
|
-
# same
|
979
|
+
# same Region as the stack. You can specify either the
|
980
980
|
# `StackPolicyBody` or the `StackPolicyURL` parameter, but not both.
|
981
981
|
# @return [String]
|
982
982
|
#
|
@@ -1083,8 +1083,8 @@ module Aws::CloudFormation
|
|
1083
1083
|
# @return [String]
|
1084
1084
|
#
|
1085
1085
|
# @!attribute [rw] accounts
|
1086
|
-
# \[Self-managed permissions\] The names of one or more AWS accounts
|
1087
|
-
# that you want to create stack instances in the specified
|
1086
|
+
# \[`Self-managed` permissions\] The names of one or more AWS accounts
|
1087
|
+
# that you want to create stack instances in the specified Region(s)
|
1088
1088
|
# for.
|
1089
1089
|
#
|
1090
1090
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1098,7 +1098,7 @@ module Aws::CloudFormation
|
|
1098
1098
|
# @return [Types::DeploymentTargets]
|
1099
1099
|
#
|
1100
1100
|
# @!attribute [rw] regions
|
1101
|
-
# The names of one or more
|
1101
|
+
# The names of one or more Regions where you want to create stack
|
1102
1102
|
# instances using the specified AWS account(s).
|
1103
1103
|
# @return [Array<String>]
|
1104
1104
|
#
|
@@ -1107,7 +1107,7 @@ module Aws::CloudFormation
|
|
1107
1107
|
# the selected stack instances.
|
1108
1108
|
#
|
1109
1109
|
# Any overridden parameter values will be applied to all stack
|
1110
|
-
# instances in the specified accounts and
|
1110
|
+
# instances in the specified accounts and Regions. When specifying
|
1111
1111
|
# parameters and their values, be aware of how AWS CloudFormation sets
|
1112
1112
|
# parameter values during stack instance operations:
|
1113
1113
|
#
|
@@ -1238,7 +1238,7 @@ module Aws::CloudFormation
|
|
1238
1238
|
#
|
1239
1239
|
# @!attribute [rw] stack_set_name
|
1240
1240
|
# The name to associate with the stack set. The name must be unique in
|
1241
|
-
# the
|
1241
|
+
# the Region where you create your stack set.
|
1242
1242
|
#
|
1243
1243
|
# <note markdown="1"> A stack name can contain only alphanumeric characters
|
1244
1244
|
# (case-sensitive) and hyphens. It must start with an alphabetic
|
@@ -1425,9 +1425,6 @@ module Aws::CloudFormation
|
|
1425
1425
|
# Organizations accounts that are added to the target organization or
|
1426
1426
|
# organizational unit (OU). Specify only if `PermissionModel` is
|
1427
1427
|
# `SERVICE_MANAGED`.
|
1428
|
-
#
|
1429
|
-
# If you specify `AutoDeployment`, do not specify `DeploymentTargets`
|
1430
|
-
# or `Regions`.
|
1431
1428
|
# @return [Types::AutoDeployment]
|
1432
1429
|
#
|
1433
1430
|
# @!attribute [rw] client_request_token
|
@@ -1611,8 +1608,8 @@ module Aws::CloudFormation
|
|
1611
1608
|
# @return [String]
|
1612
1609
|
#
|
1613
1610
|
# @!attribute [rw] accounts
|
1614
|
-
# \[Self-managed permissions\] The names of the AWS accounts that
|
1615
|
-
# want to delete stack instances for.
|
1611
|
+
# \[`Self-managed` permissions\] The names of the AWS accounts that
|
1612
|
+
# you want to delete stack instances for.
|
1616
1613
|
#
|
1617
1614
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1618
1615
|
# @return [Array<String>]
|
@@ -1625,7 +1622,7 @@ module Aws::CloudFormation
|
|
1625
1622
|
# @return [Types::DeploymentTargets]
|
1626
1623
|
#
|
1627
1624
|
# @!attribute [rw] regions
|
1628
|
-
# The
|
1625
|
+
# The Regions where you want to delete stack set instances.
|
1629
1626
|
# @return [Array<String>]
|
1630
1627
|
#
|
1631
1628
|
# @!attribute [rw] operation_preferences
|
@@ -1712,7 +1709,9 @@ module Aws::CloudFormation
|
|
1712
1709
|
class DeleteStackSetOutput < Aws::EmptyStructure; end
|
1713
1710
|
|
1714
1711
|
# \[`Service-managed` permissions\] The AWS Organizations accounts to
|
1715
|
-
# which StackSets deploys.
|
1712
|
+
# which StackSets deploys. StackSets does not deploy stack instances to
|
1713
|
+
# the organization master account, even if the master account is in your
|
1714
|
+
# organization or in an OU in your organization.
|
1716
1715
|
#
|
1717
1716
|
# For update operations, you can specify either `Accounts` or
|
1718
1717
|
# `OrganizationalUnitIds`. For create and delete operations, specify
|
@@ -1732,7 +1731,7 @@ module Aws::CloudFormation
|
|
1732
1731
|
# @return [Array<String>]
|
1733
1732
|
#
|
1734
1733
|
# @!attribute [rw] organizational_unit_ids
|
1735
|
-
# The organization root ID or organizational unit (
|
1734
|
+
# The organization root ID or organizational unit (OU) IDs to which
|
1736
1735
|
# StackSets deploys.
|
1737
1736
|
# @return [Array<String>]
|
1738
1737
|
#
|
@@ -2161,7 +2160,7 @@ module Aws::CloudFormation
|
|
2161
2160
|
# @return [String]
|
2162
2161
|
#
|
2163
2162
|
# @!attribute [rw] stack_instance_region
|
2164
|
-
# The name of a
|
2163
|
+
# The name of a Region that's associated with this stack instance.
|
2165
2164
|
# @return [String]
|
2166
2165
|
#
|
2167
2166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstanceInput AWS API Documentation
|
@@ -2585,6 +2584,10 @@ module Aws::CloudFormation
|
|
2585
2584
|
# To set the default version of a type, use ` SetTypeDefaultVersion `.
|
2586
2585
|
# @return [String]
|
2587
2586
|
#
|
2587
|
+
# @!attribute [rw] is_default_version
|
2588
|
+
# Whether the specified type version is set as the default version.
|
2589
|
+
# @return [Boolean]
|
2590
|
+
#
|
2588
2591
|
# @!attribute [rw] description
|
2589
2592
|
# The description of the registered type.
|
2590
2593
|
# @return [String]
|
@@ -2689,6 +2692,7 @@ module Aws::CloudFormation
|
|
2689
2692
|
:type,
|
2690
2693
|
:type_name,
|
2691
2694
|
:default_version_id,
|
2695
|
+
:is_default_version,
|
2692
2696
|
:description,
|
2693
2697
|
:schema,
|
2694
2698
|
:provisioning_type,
|
@@ -3519,7 +3523,7 @@ module Aws::CloudFormation
|
|
3519
3523
|
# @return [String]
|
3520
3524
|
#
|
3521
3525
|
# @!attribute [rw] stack_instance_region
|
3522
|
-
# The name of the
|
3526
|
+
# The name of the Region where you want to list stack instances.
|
3523
3527
|
# @return [String]
|
3524
3528
|
#
|
3525
3529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstancesInput AWS API Documentation
|
@@ -3658,7 +3662,7 @@ module Aws::CloudFormation
|
|
3658
3662
|
# @!attribute [rw] summaries
|
3659
3663
|
# A list of `StackSetOperationResultSummary` structures that contain
|
3660
3664
|
# information about the specified operation results, for accounts and
|
3661
|
-
#
|
3665
|
+
# Regions that are included in the operation.
|
3662
3666
|
# @return [Array<Types::StackSetOperationResultSummary>]
|
3663
3667
|
#
|
3664
3668
|
# @!attribute [rw] next_token
|
@@ -5019,7 +5023,7 @@ module Aws::CloudFormation
|
|
5019
5023
|
# @!attribute [rw] stack_policy_url
|
5020
5024
|
# Location of a file containing the stack policy. The URL must point
|
5021
5025
|
# to a policy (maximum size: 16 KB) located in an S3 bucket in the
|
5022
|
-
# same
|
5026
|
+
# same Region as the stack. You can specify either the
|
5023
5027
|
# `StackPolicyBody` or the `StackPolicyURL` parameter, but not both.
|
5024
5028
|
# @return [String]
|
5025
5029
|
#
|
@@ -5452,9 +5456,9 @@ module Aws::CloudFormation
|
|
5452
5456
|
include Aws::Structure
|
5453
5457
|
end
|
5454
5458
|
|
5455
|
-
# An AWS CloudFormation stack, in a specific account and
|
5459
|
+
# An AWS CloudFormation stack, in a specific account and Region, that's
|
5456
5460
|
# part of a stack set operation. A stack instance is a reference to an
|
5457
|
-
# attempted or actual stack in a given account within a given
|
5461
|
+
# attempted or actual stack in a given account within a given Region. A
|
5458
5462
|
# stack instance can exist without a stack—for example, if the stack
|
5459
5463
|
# couldn't be created for some reason. A stack instance is associated
|
5460
5464
|
# with only one stack set. Each stack instance contains the ID of its
|
@@ -5467,12 +5471,12 @@ module Aws::CloudFormation
|
|
5467
5471
|
# @return [String]
|
5468
5472
|
#
|
5469
5473
|
# @!attribute [rw] region
|
5470
|
-
# The name of the AWS
|
5474
|
+
# The name of the AWS Region that the stack instance is associated
|
5471
5475
|
# with.
|
5472
5476
|
# @return [String]
|
5473
5477
|
#
|
5474
5478
|
# @!attribute [rw] account
|
5475
|
-
# \[Self-managed permissions\] The name of the AWS account that the
|
5479
|
+
# \[`Self-managed` permissions\] The name of the AWS account that the
|
5476
5480
|
# stack instance is associated with.
|
5477
5481
|
# @return [String]
|
5478
5482
|
#
|
@@ -5515,9 +5519,7 @@ module Aws::CloudFormation
|
|
5515
5519
|
# @return [String]
|
5516
5520
|
#
|
5517
5521
|
# @!attribute [rw] organizational_unit_id
|
5518
|
-
#
|
5519
|
-
# organizational unit (OU) ID that the stack instance is associated
|
5520
|
-
# with.
|
5522
|
+
# Reserved for internal use. No data returned.
|
5521
5523
|
# @return [String]
|
5522
5524
|
#
|
5523
5525
|
# @!attribute [rw] drift_status
|
@@ -5576,12 +5578,12 @@ module Aws::CloudFormation
|
|
5576
5578
|
# @return [String]
|
5577
5579
|
#
|
5578
5580
|
# @!attribute [rw] region
|
5579
|
-
# The name of the AWS
|
5581
|
+
# The name of the AWS Region that the stack instance is associated
|
5580
5582
|
# with.
|
5581
5583
|
# @return [String]
|
5582
5584
|
#
|
5583
5585
|
# @!attribute [rw] account
|
5584
|
-
# \[Self-managed permissions\] The name of the AWS account that the
|
5586
|
+
# \[`Self-managed` permissions\] The name of the AWS account that the
|
5585
5587
|
# stack instance is associated with.
|
5586
5588
|
# @return [String]
|
5587
5589
|
#
|
@@ -5619,9 +5621,7 @@ module Aws::CloudFormation
|
|
5619
5621
|
# @return [String]
|
5620
5622
|
#
|
5621
5623
|
# @!attribute [rw] organizational_unit_id
|
5622
|
-
#
|
5623
|
-
# organizational unit (OU) ID that the stack instance is associated
|
5624
|
-
# with.
|
5624
|
+
# Reserved for internal use. No data returned.
|
5625
5625
|
# @return [String]
|
5626
5626
|
#
|
5627
5627
|
# @!attribute [rw] drift_status
|
@@ -6072,7 +6072,7 @@ module Aws::CloudFormation
|
|
6072
6072
|
end
|
6073
6073
|
|
6074
6074
|
# A structure that contains information about a stack set. A stack set
|
6075
|
-
# enables you to provision stacks into AWS accounts and across
|
6075
|
+
# enables you to provision stacks into AWS accounts and across Regions
|
6076
6076
|
# by using a single CloudFormation template. In the stack set, you
|
6077
6077
|
# specify the template to use, as well as any parameters and
|
6078
6078
|
# capabilities that the template requires.
|
@@ -6182,9 +6182,7 @@ module Aws::CloudFormation
|
|
6182
6182
|
# @return [String]
|
6183
6183
|
#
|
6184
6184
|
# @!attribute [rw] organizational_unit_ids
|
6185
|
-
#
|
6186
|
-
# organizational unit (OUs) IDs to which stacks in your stack set have
|
6187
|
-
# been deployed.
|
6185
|
+
# Reserved for internal use. No data returned.
|
6188
6186
|
# @return [Array<String>]
|
6189
6187
|
#
|
6190
6188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
@@ -6357,15 +6355,15 @@ module Aws::CloudFormation
|
|
6357
6355
|
#
|
6358
6356
|
# * `FAILED`\: The operation exceeded the specified failure tolerance.
|
6359
6357
|
# The failure tolerance value that you've set for an operation is
|
6360
|
-
# applied for each
|
6361
|
-
# If the number of failed stacks within a
|
6362
|
-
# tolerance, the status of the operation in the
|
6358
|
+
# applied for each Region during stack create and update operations.
|
6359
|
+
# If the number of failed stacks within a Region exceeds the failure
|
6360
|
+
# tolerance, the status of the operation in the Region is set to
|
6363
6361
|
# `FAILED`. This in turn sets the status of the operation as a whole
|
6364
6362
|
# to `FAILED`, and AWS CloudFormation cancels the operation in any
|
6365
|
-
# remaining
|
6363
|
+
# remaining Regions.
|
6366
6364
|
#
|
6367
|
-
# * `QUEUED`\: \[Service-managed permissions\] For automatic
|
6368
|
-
# deployments that require a sequence of operations
|
6365
|
+
# * `QUEUED`\: \[`Service-managed` permissions\] For automatic
|
6366
|
+
# deployments that require a sequence of operations, the operation
|
6369
6367
|
# is queued to be performed. For more information, see the [stack
|
6370
6368
|
# set operation status codes][1] in the AWS CloudFormation User
|
6371
6369
|
# Guide.
|
@@ -6425,15 +6423,15 @@ module Aws::CloudFormation
|
|
6425
6423
|
# creation times for the stack set operation might differ from the
|
6426
6424
|
# creation time of the individual stacks themselves. This is because
|
6427
6425
|
# AWS CloudFormation needs to perform preparatory work for the
|
6428
|
-
# operation, such as dispatching the work to the requested
|
6426
|
+
# operation, such as dispatching the work to the requested Regions,
|
6429
6427
|
# before actually creating the first stacks.
|
6430
6428
|
# @return [Time]
|
6431
6429
|
#
|
6432
6430
|
# @!attribute [rw] end_timestamp
|
6433
6431
|
# The time at which the stack set operation ended, across all accounts
|
6434
|
-
# and
|
6432
|
+
# and Regions specified. Note that this doesn't necessarily mean that
|
6435
6433
|
# the stack set operation was successful, or even attempted, in each
|
6436
|
-
# account or
|
6434
|
+
# account or Region.
|
6437
6435
|
# @return [Time]
|
6438
6436
|
#
|
6439
6437
|
# @!attribute [rw] deployment_targets
|
@@ -6497,26 +6495,26 @@ module Aws::CloudFormation
|
|
6497
6495
|
# }
|
6498
6496
|
#
|
6499
6497
|
# @!attribute [rw] region_order
|
6500
|
-
# The order of the
|
6498
|
+
# The order of the Regions in where you want to perform the stack
|
6501
6499
|
# operation.
|
6502
6500
|
# @return [Array<String>]
|
6503
6501
|
#
|
6504
6502
|
# @!attribute [rw] failure_tolerance_count
|
6505
|
-
# The number of accounts, per
|
6506
|
-
# fail before AWS CloudFormation stops the operation in that
|
6507
|
-
# If the operation is stopped in a
|
6508
|
-
# attempt the operation in any subsequent
|
6503
|
+
# The number of accounts, per Region, for which this operation can
|
6504
|
+
# fail before AWS CloudFormation stops the operation in that Region.
|
6505
|
+
# If the operation is stopped in a Region, AWS CloudFormation doesn't
|
6506
|
+
# attempt the operation in any subsequent Regions.
|
6509
6507
|
#
|
6510
6508
|
# Conditional: You must specify either `FailureToleranceCount` or
|
6511
6509
|
# `FailureTolerancePercentage` (but not both).
|
6512
6510
|
# @return [Integer]
|
6513
6511
|
#
|
6514
6512
|
# @!attribute [rw] failure_tolerance_percentage
|
6515
|
-
# The percentage of accounts, per
|
6513
|
+
# The percentage of accounts, per Region, for which this stack
|
6516
6514
|
# operation can fail before AWS CloudFormation stops the operation in
|
6517
|
-
# that
|
6515
|
+
# that Region. If the operation is stopped in a Region, AWS
|
6518
6516
|
# CloudFormation doesn't attempt the operation in any subsequent
|
6519
|
-
#
|
6517
|
+
# Regions.
|
6520
6518
|
#
|
6521
6519
|
# When calculating the number of accounts based on the specified
|
6522
6520
|
# percentage, AWS CloudFormation rounds *down* to the next whole
|
@@ -6571,40 +6569,40 @@ module Aws::CloudFormation
|
|
6571
6569
|
end
|
6572
6570
|
|
6573
6571
|
# The structure that contains information about a specified operation's
|
6574
|
-
# results for a given account in a given
|
6572
|
+
# results for a given account in a given Region.
|
6575
6573
|
#
|
6576
6574
|
# @!attribute [rw] account
|
6577
|
-
# \[Self-managed permissions\] The name of the AWS account for this
|
6575
|
+
# \[`Self-managed` permissions\] The name of the AWS account for this
|
6578
6576
|
# operation result.
|
6579
6577
|
# @return [String]
|
6580
6578
|
#
|
6581
6579
|
# @!attribute [rw] region
|
6582
|
-
# The name of the AWS
|
6580
|
+
# The name of the AWS Region for this operation result.
|
6583
6581
|
# @return [String]
|
6584
6582
|
#
|
6585
6583
|
# @!attribute [rw] status
|
6586
6584
|
# The result status of the stack set operation for the given account
|
6587
|
-
# in the given
|
6585
|
+
# in the given Region.
|
6588
6586
|
#
|
6589
|
-
# * `CANCELLED`\: The operation in the specified account and
|
6587
|
+
# * `CANCELLED`\: The operation in the specified account and Region
|
6590
6588
|
# has been cancelled. This is either because a user has stopped the
|
6591
6589
|
# stack set operation, or because the failure tolerance of the stack
|
6592
6590
|
# set operation has been exceeded.
|
6593
6591
|
#
|
6594
|
-
# * `FAILED`\: The operation in the specified account and
|
6592
|
+
# * `FAILED`\: The operation in the specified account and Region
|
6595
6593
|
# failed.
|
6596
6594
|
#
|
6597
6595
|
# If the stack set operation fails in enough accounts within a
|
6598
|
-
#
|
6596
|
+
# Region, the failure tolerance for the stack set operation as a
|
6599
6597
|
# whole might be exceeded.
|
6600
6598
|
#
|
6601
|
-
# * `RUNNING`\: The operation in the specified account and
|
6599
|
+
# * `RUNNING`\: The operation in the specified account and Region is
|
6602
6600
|
# currently in progress.
|
6603
6601
|
#
|
6604
|
-
# * `PENDING`\: The operation in the specified account and
|
6602
|
+
# * `PENDING`\: The operation in the specified account and Region has
|
6605
6603
|
# yet to start.
|
6606
6604
|
#
|
6607
|
-
# * `SUCCEEDED`\: The operation in the specified account and
|
6605
|
+
# * `SUCCEEDED`\: The operation in the specified account and Region
|
6608
6606
|
# completed successfully.
|
6609
6607
|
# @return [String]
|
6610
6608
|
#
|
@@ -6619,8 +6617,7 @@ module Aws::CloudFormation
|
|
6619
6617
|
# @return [Types::AccountGateResult]
|
6620
6618
|
#
|
6621
6619
|
# @!attribute [rw] organizational_unit_id
|
6622
|
-
#
|
6623
|
-
# organizational unit (OU) ID for this operation result.
|
6620
|
+
# Reserved for internal use. No data returned.
|
6624
6621
|
# @return [String]
|
6625
6622
|
#
|
6626
6623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationResultSummary AWS API Documentation
|
@@ -6655,15 +6652,15 @@ module Aws::CloudFormation
|
|
6655
6652
|
#
|
6656
6653
|
# * `FAILED`\: The operation exceeded the specified failure tolerance.
|
6657
6654
|
# The failure tolerance value that you've set for an operation is
|
6658
|
-
# applied for each
|
6659
|
-
# If the number of failed stacks within a
|
6660
|
-
# tolerance, the status of the operation in the
|
6655
|
+
# applied for each Region during stack create and update operations.
|
6656
|
+
# If the number of failed stacks within a Region exceeds the failure
|
6657
|
+
# tolerance, the status of the operation in the Region is set to
|
6661
6658
|
# `FAILED`. This in turn sets the status of the operation as a whole
|
6662
6659
|
# to `FAILED`, and AWS CloudFormation cancels the operation in any
|
6663
|
-
# remaining
|
6660
|
+
# remaining Regions.
|
6664
6661
|
#
|
6665
|
-
# * `QUEUED`\: \[Service-managed permissions\] For automatic
|
6666
|
-
# deployments that require a sequence of operations
|
6662
|
+
# * `QUEUED`\: \[`Service-managed` permissions\] For automatic
|
6663
|
+
# deployments that require a sequence of operations, the operation
|
6667
6664
|
# is queued to be performed. For more information, see the [stack
|
6668
6665
|
# set operation status codes][1] in the AWS CloudFormation User
|
6669
6666
|
# Guide.
|
@@ -6689,15 +6686,15 @@ module Aws::CloudFormation
|
|
6689
6686
|
# creation times for the stack set operation might differ from the
|
6690
6687
|
# creation time of the individual stacks themselves. This is because
|
6691
6688
|
# AWS CloudFormation needs to perform preparatory work for the
|
6692
|
-
# operation, such as dispatching the work to the requested
|
6689
|
+
# operation, such as dispatching the work to the requested Regions,
|
6693
6690
|
# before actually creating the first stacks.
|
6694
6691
|
# @return [Time]
|
6695
6692
|
#
|
6696
6693
|
# @!attribute [rw] end_timestamp
|
6697
6694
|
# The time at which the stack set operation ended, across all accounts
|
6698
|
-
# and
|
6695
|
+
# and Regions specified. Note that this doesn't necessarily mean that
|
6699
6696
|
# the stack set operation was successful, or even attempted, in each
|
6700
|
-
# account or
|
6697
|
+
# account or Region.
|
6701
6698
|
# @return [Time]
|
6702
6699
|
#
|
6703
6700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationSummary AWS API Documentation
|
@@ -7055,6 +7052,10 @@ module Aws::CloudFormation
|
|
7055
7052
|
# type version when it is registered.
|
7056
7053
|
# @return [String]
|
7057
7054
|
#
|
7055
|
+
# @!attribute [rw] is_default_version
|
7056
|
+
# Whether the specified type version is set as the default version.
|
7057
|
+
# @return [Boolean]
|
7058
|
+
#
|
7058
7059
|
# @!attribute [rw] arn
|
7059
7060
|
# The Amazon Resource Name (ARN) of the type version.
|
7060
7061
|
# @return [String]
|
@@ -7073,6 +7074,7 @@ module Aws::CloudFormation
|
|
7073
7074
|
:type,
|
7074
7075
|
:type_name,
|
7075
7076
|
:version_id,
|
7077
|
+
:is_default_version,
|
7076
7078
|
:arn,
|
7077
7079
|
:time_created,
|
7078
7080
|
:description)
|
@@ -7179,7 +7181,7 @@ module Aws::CloudFormation
|
|
7179
7181
|
# @!attribute [rw] stack_policy_during_update_url
|
7180
7182
|
# Location of a file containing the temporary overriding stack policy.
|
7181
7183
|
# The URL must point to a policy (max size: 16KB) located in an S3
|
7182
|
-
# bucket in the same
|
7184
|
+
# bucket in the same Region as the stack. You can specify either the
|
7183
7185
|
# `StackPolicyDuringUpdateBody` or the `StackPolicyDuringUpdateURL`
|
7184
7186
|
# parameter, but not both.
|
7185
7187
|
#
|
@@ -7343,7 +7345,7 @@ module Aws::CloudFormation
|
|
7343
7345
|
# @!attribute [rw] stack_policy_url
|
7344
7346
|
# Location of a file containing the updated stack policy. The URL must
|
7345
7347
|
# point to a policy (max size: 16KB) located in an S3 bucket in the
|
7346
|
-
# same
|
7348
|
+
# same Region as the stack. You can specify either the
|
7347
7349
|
# `StackPolicyBody` or the `StackPolicyURL` parameter, but not both.
|
7348
7350
|
#
|
7349
7351
|
# You might update the stack policy, for example, in order to protect
|
@@ -7447,10 +7449,10 @@ module Aws::CloudFormation
|
|
7447
7449
|
# @return [String]
|
7448
7450
|
#
|
7449
7451
|
# @!attribute [rw] accounts
|
7450
|
-
# \[Self-managed permissions\] The names of one or more AWS accounts
|
7452
|
+
# \[`Self-managed` permissions\] The names of one or more AWS accounts
|
7451
7453
|
# for which you want to update parameter values for stack instances.
|
7452
7454
|
# The overridden parameter values will be applied to all stack
|
7453
|
-
# instances in the specified accounts and
|
7455
|
+
# instances in the specified accounts and Regions.
|
7454
7456
|
#
|
7455
7457
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
7456
7458
|
# @return [Array<String>]
|
@@ -7467,10 +7469,10 @@ module Aws::CloudFormation
|
|
7467
7469
|
# @return [Types::DeploymentTargets]
|
7468
7470
|
#
|
7469
7471
|
# @!attribute [rw] regions
|
7470
|
-
# The names of one or more
|
7472
|
+
# The names of one or more Regions in which you want to update
|
7471
7473
|
# parameter values for stack instances. The overridden parameter
|
7472
7474
|
# values will be applied to all stack instances in the specified
|
7473
|
-
# accounts and
|
7475
|
+
# accounts and Regions.
|
7474
7476
|
# @return [Array<String>]
|
7475
7477
|
#
|
7476
7478
|
# @!attribute [rw] parameter_overrides
|
@@ -7478,7 +7480,7 @@ module Aws::CloudFormation
|
|
7478
7480
|
# specified stack instances.
|
7479
7481
|
#
|
7480
7482
|
# Any overridden parameter values will be applied to all stack
|
7481
|
-
# instances in the specified accounts and
|
7483
|
+
# instances in the specified accounts and Regions. When specifying
|
7482
7484
|
# parameters and their values, be aware of how AWS CloudFormation sets
|
7483
7485
|
# parameter values during stack instance update operations:
|
7484
7486
|
#
|
@@ -7896,9 +7898,9 @@ module Aws::CloudFormation
|
|
7896
7898
|
# @return [String]
|
7897
7899
|
#
|
7898
7900
|
# @!attribute [rw] accounts
|
7899
|
-
# \[Self-managed permissions\] The accounts in which to update
|
7901
|
+
# \[`Self-managed` permissions\] The accounts in which to update
|
7900
7902
|
# associated stack instances. If you specify accounts, you must also
|
7901
|
-
# specify the
|
7903
|
+
# specify the Regions in which to update stack set instances.
|
7902
7904
|
#
|
7903
7905
|
# To update *all* the stack instances associated with this stack set,
|
7904
7906
|
# do not specify the `Accounts` or `Regions` properties.
|
@@ -7907,16 +7909,16 @@ module Aws::CloudFormation
|
|
7907
7909
|
# if the `TemplateBody` or `TemplateURL` properties are specified), or
|
7908
7910
|
# the `Parameters` property, AWS CloudFormation marks all stack
|
7909
7911
|
# instances with a status of `OUTDATED` prior to updating the stack
|
7910
|
-
# instances in the specified accounts and
|
7912
|
+
# instances in the specified accounts and Regions. If the stack set
|
7911
7913
|
# update does not include changes to the template or parameters, AWS
|
7912
7914
|
# CloudFormation updates the stack instances in the specified accounts
|
7913
|
-
# and
|
7915
|
+
# and Regions, while leaving all other stack instances with their
|
7914
7916
|
# existing stack instance status.
|
7915
7917
|
# @return [Array<String>]
|
7916
7918
|
#
|
7917
7919
|
# @!attribute [rw] regions
|
7918
|
-
# The
|
7919
|
-
# specify
|
7920
|
+
# The Regions in which to update associated stack instances. If you
|
7921
|
+
# specify Regions, you must also specify accounts in which to update
|
7920
7922
|
# stack set instances.
|
7921
7923
|
#
|
7922
7924
|
# To update *all* the stack instances associated with this stack set,
|
@@ -7926,10 +7928,10 @@ module Aws::CloudFormation
|
|
7926
7928
|
# if the `TemplateBody` or `TemplateURL` properties are specified), or
|
7927
7929
|
# the `Parameters` property, AWS CloudFormation marks all stack
|
7928
7930
|
# instances with a status of `OUTDATED` prior to updating the stack
|
7929
|
-
# instances in the specified accounts and
|
7931
|
+
# instances in the specified accounts and Regions. If the stack set
|
7930
7932
|
# update does not include changes to the template or parameters, AWS
|
7931
7933
|
# CloudFormation updates the stack instances in the specified accounts
|
7932
|
-
# and
|
7934
|
+
# and Regions, while leaving all other stack instances with their
|
7933
7935
|
# existing stack instance status.
|
7934
7936
|
# @return [Array<String>]
|
7935
7937
|
#
|