aws-sdk-cloudformation 1.108.0 → 1.110.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +12 -1
- data/lib/aws-sdk-cloudformation/client_api.rb +4 -0
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack.rb +30 -9
- data/lib/aws-sdk-cloudformation/stack_resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +27 -5
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/stack.rbs +5 -1
- data/sig/types.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edbc6bb09603c053c5e0b8f4f64c020e15eacdb6747a4b6030f7611d6848a661
|
4
|
+
data.tar.gz: a00fb2f8979239b98ddc2be12acdbcaf436bdaa078b1d15a419e10d2c578aa89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25ffccfbb30c241a60e7f8687ee1cbd13ac80772a633c58f55f27093c116ccc8eac90f773b5fe00a2a57ca659fb59c21e2026fdb6e8128fc26a9b8aa57539ccb
|
7
|
+
data.tar.gz: 1ac96b71f25e5b56788e85b5c057c128d728b74f1c44f78303506db24732292bdbd03bd74911ebeefe38555b7c5693e7d0b6253e9d04002dfd4e19624a64d351
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2024-06-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.109.0 (2024-05-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added DeletionMode FORCE_DELETE_STACK for deleting a stack that is stuck in DELETE_FAILED state due to resource deletion failure.
|
13
|
+
|
4
14
|
1.108.0 (2024-05-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -2184,6 +2184,15 @@ module Aws::CloudFormation
|
|
2184
2184
|
# token in the following format:
|
2185
2185
|
# `Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002`.
|
2186
2186
|
#
|
2187
|
+
# @option params [String] :deletion_mode
|
2188
|
+
# Specifies the deletion mode for the stack. Possible values are:
|
2189
|
+
#
|
2190
|
+
# * `STANDARD` - Use the standard behavior. Specifying this value is the
|
2191
|
+
# same as not specifying this parameter.
|
2192
|
+
#
|
2193
|
+
# * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
|
2194
|
+
# `DELETE_FAILED` state due to resource deletion failure.
|
2195
|
+
#
|
2187
2196
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2188
2197
|
#
|
2189
2198
|
# @example Request syntax with placeholder values
|
@@ -2193,6 +2202,7 @@ module Aws::CloudFormation
|
|
2193
2202
|
# retain_resources: ["LogicalResourceId"],
|
2194
2203
|
# role_arn: "RoleARN",
|
2195
2204
|
# client_request_token: "ClientRequestToken",
|
2205
|
+
# deletion_mode: "STANDARD", # accepts STANDARD, FORCE_DELETE_STACK
|
2196
2206
|
# })
|
2197
2207
|
#
|
2198
2208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack AWS API Documentation
|
@@ -3766,6 +3776,7 @@ module Aws::CloudFormation
|
|
3766
3776
|
# resp.stacks[0].drift_information.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
3767
3777
|
# resp.stacks[0].drift_information.last_check_timestamp #=> Time
|
3768
3778
|
# resp.stacks[0].retain_except_on_create #=> Boolean
|
3779
|
+
# resp.stacks[0].deletion_mode #=> String, one of "STANDARD", "FORCE_DELETE_STACK"
|
3769
3780
|
# resp.stacks[0].detailed_status #=> String, one of "CONFIGURATION_COMPLETE", "VALIDATION_FAILED"
|
3770
3781
|
# resp.next_token #=> String
|
3771
3782
|
#
|
@@ -8367,7 +8378,7 @@ module Aws::CloudFormation
|
|
8367
8378
|
params: params,
|
8368
8379
|
config: config)
|
8369
8380
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8370
|
-
context[:gem_version] = '1.
|
8381
|
+
context[:gem_version] = '1.110.0'
|
8371
8382
|
Seahorse::Client::Request.new(handlers, context)
|
8372
8383
|
end
|
8373
8384
|
|
@@ -104,6 +104,7 @@ module Aws::CloudFormation
|
|
104
104
|
DeleteStackInstancesOutput = Shapes::StructureShape.new(name: 'DeleteStackInstancesOutput')
|
105
105
|
DeleteStackSetInput = Shapes::StructureShape.new(name: 'DeleteStackSetInput')
|
106
106
|
DeleteStackSetOutput = Shapes::StructureShape.new(name: 'DeleteStackSetOutput')
|
107
|
+
DeletionMode = Shapes::StringShape.new(name: 'DeletionMode')
|
107
108
|
DeletionTime = Shapes::TimestampShape.new(name: 'DeletionTime')
|
108
109
|
DeploymentTargets = Shapes::StructureShape.new(name: 'DeploymentTargets')
|
109
110
|
DeprecatedStatus = Shapes::StringShape.new(name: 'DeprecatedStatus')
|
@@ -821,6 +822,7 @@ module Aws::CloudFormation
|
|
821
822
|
DeleteStackInput.add_member(:retain_resources, Shapes::ShapeRef.new(shape: RetainResources, location_name: "RetainResources"))
|
822
823
|
DeleteStackInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
823
824
|
DeleteStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
|
825
|
+
DeleteStackInput.add_member(:deletion_mode, Shapes::ShapeRef.new(shape: DeletionMode, location_name: "DeletionMode"))
|
824
826
|
DeleteStackInput.struct_class = Types::DeleteStackInput
|
825
827
|
|
826
828
|
DeleteStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
@@ -1684,6 +1686,7 @@ module Aws::CloudFormation
|
|
1684
1686
|
Stack.add_member(:root_id, Shapes::ShapeRef.new(shape: StackId, location_name: "RootId"))
|
1685
1687
|
Stack.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackDriftInformation, location_name: "DriftInformation"))
|
1686
1688
|
Stack.add_member(:retain_except_on_create, Shapes::ShapeRef.new(shape: RetainExceptOnCreate, location_name: "RetainExceptOnCreate"))
|
1689
|
+
Stack.add_member(:deletion_mode, Shapes::ShapeRef.new(shape: DeletionMode, location_name: "DeletionMode"))
|
1687
1690
|
Stack.add_member(:detailed_status, Shapes::ShapeRef.new(shape: DetailedStatus, location_name: "DetailedStatus"))
|
1688
1691
|
Stack.struct_class = Types::Stack
|
1689
1692
|
|
@@ -2205,6 +2208,7 @@ module Aws::CloudFormation
|
|
2205
2208
|
"apiVersion" => "2010-05-15",
|
2206
2209
|
"endpointPrefix" => "cloudformation",
|
2207
2210
|
"protocol" => "query",
|
2211
|
+
"protocols" => ["query"],
|
2208
2212
|
"serviceFullName" => "AWS CloudFormation",
|
2209
2213
|
"serviceId" => "CloudFormation",
|
2210
2214
|
"signatureVersion" => "v4",
|
@@ -336,7 +336,7 @@ module Aws::CloudFormation
|
|
336
336
|
# Default: `false`
|
337
337
|
# @return [Stack]
|
338
338
|
def create_stack(options = {})
|
339
|
-
Aws::Plugins::UserAgent.
|
339
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
340
340
|
@client.create_stack(options)
|
341
341
|
end
|
342
342
|
Stack.new(
|
@@ -403,7 +403,7 @@ module Aws::CloudFormation
|
|
403
403
|
# @return [Stack::Collection]
|
404
404
|
def stacks(options = {})
|
405
405
|
batches = Enumerator.new do |y|
|
406
|
-
resp = Aws::Plugins::UserAgent.
|
406
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
407
407
|
@client.describe_stacks(options)
|
408
408
|
end
|
409
409
|
resp.each_page do |page|
|
@@ -218,6 +218,18 @@ module Aws::CloudFormation
|
|
218
218
|
data[:retain_except_on_create]
|
219
219
|
end
|
220
220
|
|
221
|
+
# Specifies the deletion mode for the stack. Possible values are:
|
222
|
+
#
|
223
|
+
# * `STANDARD` - Use the standard behavior. Specifying this value is the
|
224
|
+
# same as not specifying this parameter.
|
225
|
+
#
|
226
|
+
# * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
|
227
|
+
# `DELETE_FAILED` state due to resource deletion failure.
|
228
|
+
# @return [String]
|
229
|
+
def deletion_mode
|
230
|
+
data[:deletion_mode]
|
231
|
+
end
|
232
|
+
|
221
233
|
# The detailed status of the resource or stack. If
|
222
234
|
# `CONFIGURATION_COMPLETE` is present, the resource or resource
|
223
235
|
# configuration phase has completed and the stabilization of the
|
@@ -248,7 +260,7 @@ module Aws::CloudFormation
|
|
248
260
|
#
|
249
261
|
# @return [self]
|
250
262
|
def load
|
251
|
-
resp = Aws::Plugins::UserAgent.
|
263
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
252
264
|
@client.describe_stacks(stack_name: @name)
|
253
265
|
end
|
254
266
|
@data = resp.stacks[0]
|
@@ -295,7 +307,7 @@ module Aws::CloudFormation
|
|
295
307
|
options, params = separate_params_and_options(options)
|
296
308
|
waiter = Waiters::StackExists.new(options)
|
297
309
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
298
|
-
Aws::Plugins::UserAgent.
|
310
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
299
311
|
waiter.wait(params.merge(stack_name: @name))
|
300
312
|
end
|
301
313
|
Stack.new({
|
@@ -398,7 +410,7 @@ module Aws::CloudFormation
|
|
398
410
|
:retry
|
399
411
|
end
|
400
412
|
end
|
401
|
-
Aws::Plugins::UserAgent.
|
413
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
402
414
|
Aws::Waiters::Waiter.new(options).wait({})
|
403
415
|
end
|
404
416
|
end
|
@@ -420,7 +432,7 @@ module Aws::CloudFormation
|
|
420
432
|
# @return [EmptyStructure]
|
421
433
|
def cancel_update(options = {})
|
422
434
|
options = options.merge(stack_name: @name)
|
423
|
-
resp = Aws::Plugins::UserAgent.
|
435
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
424
436
|
@client.cancel_update_stack(options)
|
425
437
|
end
|
426
438
|
resp.data
|
@@ -718,7 +730,7 @@ module Aws::CloudFormation
|
|
718
730
|
# @return [Types::CreateStackOutput]
|
719
731
|
def create(options = {})
|
720
732
|
options = options.merge(stack_name: @name)
|
721
|
-
resp = Aws::Plugins::UserAgent.
|
733
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
722
734
|
@client.create_stack(options)
|
723
735
|
end
|
724
736
|
resp.data
|
@@ -730,6 +742,7 @@ module Aws::CloudFormation
|
|
730
742
|
# retain_resources: ["LogicalResourceId"],
|
731
743
|
# role_arn: "RoleARN",
|
732
744
|
# client_request_token: "ClientRequestToken",
|
745
|
+
# deletion_mode: "STANDARD", # accepts STANDARD, FORCE_DELETE_STACK
|
733
746
|
# })
|
734
747
|
# @param [Hash] options ({})
|
735
748
|
# @option options [Array<String>] :retain_resources
|
@@ -770,10 +783,18 @@ module Aws::CloudFormation
|
|
770
783
|
# stack using the console, each stack event would be assigned the same
|
771
784
|
# token in the following format:
|
772
785
|
# `Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002`.
|
786
|
+
# @option options [String] :deletion_mode
|
787
|
+
# Specifies the deletion mode for the stack. Possible values are:
|
788
|
+
#
|
789
|
+
# * `STANDARD` - Use the standard behavior. Specifying this value is the
|
790
|
+
# same as not specifying this parameter.
|
791
|
+
#
|
792
|
+
# * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
|
793
|
+
# `DELETE_FAILED` state due to resource deletion failure.
|
773
794
|
# @return [EmptyStructure]
|
774
795
|
def delete(options = {})
|
775
796
|
options = options.merge(stack_name: @name)
|
776
|
-
resp = Aws::Plugins::UserAgent.
|
797
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
777
798
|
@client.delete_stack(options)
|
778
799
|
end
|
779
800
|
resp.data
|
@@ -1077,7 +1098,7 @@ module Aws::CloudFormation
|
|
1077
1098
|
# @return [Types::UpdateStackOutput]
|
1078
1099
|
def update(options = {})
|
1079
1100
|
options = options.merge(stack_name: @name)
|
1080
|
-
resp = Aws::Plugins::UserAgent.
|
1101
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1081
1102
|
@client.update_stack(options)
|
1082
1103
|
end
|
1083
1104
|
resp.data
|
@@ -1093,7 +1114,7 @@ module Aws::CloudFormation
|
|
1093
1114
|
def events(options = {})
|
1094
1115
|
batches = Enumerator.new do |y|
|
1095
1116
|
options = options.merge(stack_name: @name)
|
1096
|
-
resp = Aws::Plugins::UserAgent.
|
1117
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1097
1118
|
@client.describe_stack_events(options)
|
1098
1119
|
end
|
1099
1120
|
resp.each_page do |page|
|
@@ -1129,7 +1150,7 @@ module Aws::CloudFormation
|
|
1129
1150
|
def resource_summaries(options = {})
|
1130
1151
|
batches = Enumerator.new do |y|
|
1131
1152
|
options = options.merge(stack_name: @name)
|
1132
|
-
resp = Aws::Plugins::UserAgent.
|
1153
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1133
1154
|
@client.list_stack_resources(options)
|
1134
1155
|
end
|
1135
1156
|
resp.each_page do |page|
|
@@ -139,7 +139,7 @@ module Aws::CloudFormation
|
|
139
139
|
#
|
140
140
|
# @return [self]
|
141
141
|
def load
|
142
|
-
resp = Aws::Plugins::UserAgent.
|
142
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
143
143
|
@client.describe_stack_resource(
|
144
144
|
logical_resource_id: @logical_id,
|
145
145
|
stack_name: @stack_name
|
@@ -259,7 +259,7 @@ module Aws::CloudFormation
|
|
259
259
|
:retry
|
260
260
|
end
|
261
261
|
end
|
262
|
-
Aws::Plugins::UserAgent.
|
262
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
263
263
|
Aws::Waiters::Waiter.new(options).wait({})
|
264
264
|
end
|
265
265
|
end
|
@@ -1990,13 +1990,24 @@ module Aws::CloudFormation
|
|
1990
1990
|
# `Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002`.
|
1991
1991
|
# @return [String]
|
1992
1992
|
#
|
1993
|
+
# @!attribute [rw] deletion_mode
|
1994
|
+
# Specifies the deletion mode for the stack. Possible values are:
|
1995
|
+
#
|
1996
|
+
# * `STANDARD` - Use the standard behavior. Specifying this value is
|
1997
|
+
# the same as not specifying this parameter.
|
1998
|
+
#
|
1999
|
+
# * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
|
2000
|
+
# `DELETE_FAILED` state due to resource deletion failure.
|
2001
|
+
# @return [String]
|
2002
|
+
#
|
1993
2003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInput AWS API Documentation
|
1994
2004
|
#
|
1995
2005
|
class DeleteStackInput < Struct.new(
|
1996
2006
|
:stack_name,
|
1997
2007
|
:retain_resources,
|
1998
2008
|
:role_arn,
|
1999
|
-
:client_request_token
|
2009
|
+
:client_request_token,
|
2010
|
+
:deletion_mode)
|
2000
2011
|
SENSITIVE = []
|
2001
2012
|
include Aws::Structure
|
2002
2013
|
end
|
@@ -5029,7 +5040,7 @@ module Aws::CloudFormation
|
|
5029
5040
|
end
|
5030
5041
|
|
5031
5042
|
# @!attribute [rw] summaries
|
5032
|
-
# A list of `
|
5043
|
+
# A list of `StackInstanceResourceDriftsSummary` structures that
|
5033
5044
|
# contain information about the specified stack instances.
|
5034
5045
|
# @return [Array<Types::StackInstanceResourceDriftsSummary>]
|
5035
5046
|
#
|
@@ -7682,6 +7693,16 @@ module Aws::CloudFormation
|
|
7682
7693
|
# Default: `false`
|
7683
7694
|
# @return [Boolean]
|
7684
7695
|
#
|
7696
|
+
# @!attribute [rw] deletion_mode
|
7697
|
+
# Specifies the deletion mode for the stack. Possible values are:
|
7698
|
+
#
|
7699
|
+
# * `STANDARD` - Use the standard behavior. Specifying this value is
|
7700
|
+
# the same as not specifying this parameter.
|
7701
|
+
#
|
7702
|
+
# * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
|
7703
|
+
# `DELETE_FAILED` state due to resource deletion failure.
|
7704
|
+
# @return [String]
|
7705
|
+
#
|
7685
7706
|
# @!attribute [rw] detailed_status
|
7686
7707
|
# The detailed status of the resource or stack. If
|
7687
7708
|
# `CONFIGURATION_COMPLETE` is present, the resource or resource
|
@@ -7722,6 +7743,7 @@ module Aws::CloudFormation
|
|
7722
7743
|
:root_id,
|
7723
7744
|
:drift_information,
|
7724
7745
|
:retain_except_on_create,
|
7746
|
+
:deletion_mode,
|
7725
7747
|
:detailed_status)
|
7726
7748
|
SENSITIVE = []
|
7727
7749
|
include Aws::Structure
|
@@ -9341,9 +9363,9 @@ module Aws::CloudFormation
|
|
9341
9363
|
# concurrency level to ensure the number of failed accounts never
|
9342
9364
|
# exceeds the value of `FailureToleranceCount` +1. The initial
|
9343
9365
|
# actual concurrency is set to the lower of either the value of the
|
9344
|
-
# `MaxConcurrentCount`, or the value of `
|
9345
|
-
# actual concurrency is then reduced proportionally by the
|
9346
|
-
# failures. This is the default behavior.
|
9366
|
+
# `MaxConcurrentCount`, or the value of `FailureToleranceCount` +1.
|
9367
|
+
# The actual concurrency is then reduced proportionally by the
|
9368
|
+
# number of failures. This is the default behavior.
|
9347
9369
|
#
|
9348
9370
|
# If failure tolerance or Maximum concurrent accounts are set to
|
9349
9371
|
# percentages, the behavior is similar.
|
data/sig/client.rbs
CHANGED
@@ -383,7 +383,8 @@ module Aws
|
|
383
383
|
stack_name: ::String,
|
384
384
|
?retain_resources: Array[::String],
|
385
385
|
?role_arn: ::String,
|
386
|
-
?client_request_token: ::String
|
386
|
+
?client_request_token: ::String,
|
387
|
+
?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
387
388
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
388
389
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
389
390
|
|
data/sig/stack.rbs
CHANGED
@@ -84,6 +84,9 @@ module Aws
|
|
84
84
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#retain_except_on_create-instance_method
|
85
85
|
def retain_except_on_create: () -> bool
|
86
86
|
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#deletion_mode-instance_method
|
88
|
+
def deletion_mode: () -> ("STANDARD" | "FORCE_DELETE_STACK")
|
89
|
+
|
87
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#detailed_status-instance_method
|
88
91
|
def detailed_status: () -> ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
89
92
|
|
@@ -159,7 +162,8 @@ module Aws
|
|
159
162
|
def delete: (
|
160
163
|
?retain_resources: Array[::String],
|
161
164
|
?role_arn: ::String,
|
162
|
-
?client_request_token: ::String
|
165
|
+
?client_request_token: ::String,
|
166
|
+
?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
163
167
|
) -> ::Aws::EmptyStructure
|
164
168
|
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
165
169
|
|
data/sig/types.rbs
CHANGED
@@ -296,6 +296,7 @@ module Aws::CloudFormation
|
|
296
296
|
attr_accessor retain_resources: ::Array[::String]
|
297
297
|
attr_accessor role_arn: ::String
|
298
298
|
attr_accessor client_request_token: ::String
|
299
|
+
attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
299
300
|
SENSITIVE: []
|
300
301
|
end
|
301
302
|
|
@@ -1382,6 +1383,7 @@ module Aws::CloudFormation
|
|
1382
1383
|
attr_accessor root_id: ::String
|
1383
1384
|
attr_accessor drift_information: Types::StackDriftInformation
|
1384
1385
|
attr_accessor retain_except_on_create: bool
|
1386
|
+
attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
1385
1387
|
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
1386
1388
|
SENSITIVE: []
|
1387
1389
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.110.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05
|
11
|
+
date: 2024-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.197.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.197.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|