aws-sdk-cloudformation 1.154.0 → 1.155.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4acbfb5548e29d06a3ec835ab868305fb381b6656e693356ab20845250f32382
4
- data.tar.gz: d7ba10dc65084a9548f0dd162fda97671edb4df56afa09271bab57c64106ae53
3
+ metadata.gz: be75de0057d199f9174e60c4247052f32d873935bbe4273b587a887fe00897fc
4
+ data.tar.gz: 7529927eede1a64a99cd953d46534026edb61732b41a8e27333d895c5f50fc1d
5
5
  SHA512:
6
- metadata.gz: 544bb41f2126bae94b9af6c70719cffcb0e5d22e8c4354e91ec553dc5540b224eee186a3e96dcc69c4585330f19711ddc570cc62e7657bb5696cea217041577e
7
- data.tar.gz: 28d757b5db51398394650700d131e30b34f71fcaa0b080d3692cbe3cee0c051149078119be1b9979f34b12730d0de9a28c54604d20fd6a6e106763218b913ab5
6
+ metadata.gz: aea3afcaa955051e7f6c4052ad73f1c4703724b712ebb5e322c98736a4efb33c1ad6531f1fff45a29e442a7e0883f9c7a258ca9cba760016b63fcdbdd5daaa22
7
+ data.tar.gz: 35ce2b3bcd731acb226a0721676a055745188ecb90fe5b5249565200621994e0ef8183572c1bc77cdb66aea04e8b477154607b2c40a3bdbd6528e32e3cb20f68
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2026-06-30)
5
+ ------------------
6
+
7
+ * Feature - AWS CloudFormation adds a DeploymentConfig parameter to enable Express mode, which completes stack operations as soon as resource configuration is applied. Also adds a DisableValidation parameter to skip pre-deployment validation, which now runs automatically on CreateStack and UpdateStak.
8
+
4
9
  1.154.0 (2026-06-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.154.0
1
+ 1.155.0
@@ -1179,6 +1179,16 @@ module Aws::CloudFormation
1179
1179
  #
1180
1180
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/drift-aware-change-sets.html
1181
1181
  #
1182
+ # @option params [Types::DeploymentConfig] :deployment_config
1183
+ # The deployment configuration for this stack operation, including the
1184
+ # deployment mode.
1185
+ #
1186
+ # @option params [Boolean] :disable_validation
1187
+ # Set to `true` to disable pre-deployment validations in changeset or
1188
+ # stack operations.
1189
+ #
1190
+ # Default: `false`
1191
+ #
1182
1192
  # @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1183
1193
  #
1184
1194
  # * {Types::CreateChangeSetOutput#id #id} => String
@@ -1235,6 +1245,11 @@ module Aws::CloudFormation
1235
1245
  # on_stack_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
1236
1246
  # import_existing_resources: false,
1237
1247
  # deployment_mode: "REVERT_DRIFT", # accepts REVERT_DRIFT
1248
+ # deployment_config: {
1249
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
1250
+ # disable_rollback: false,
1251
+ # },
1252
+ # disable_validation: false,
1238
1253
  # })
1239
1254
  #
1240
1255
  # @example Response structure
@@ -1619,6 +1634,16 @@ module Aws::CloudFormation
1619
1634
  #
1620
1635
  # Default: `false`
1621
1636
  #
1637
+ # @option params [Types::DeploymentConfig] :deployment_config
1638
+ # The deployment configuration for this stack operation, including the
1639
+ # deployment mode.
1640
+ #
1641
+ # @option params [Boolean] :disable_validation
1642
+ # Set to `true` to disable pre-deployment validations in changeset or
1643
+ # stack operations.
1644
+ #
1645
+ # Default: `false`
1646
+ #
1622
1647
  # @return [Types::CreateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1623
1648
  #
1624
1649
  # * {Types::CreateStackOutput#stack_id #stack_id} => String
@@ -1665,6 +1690,11 @@ module Aws::CloudFormation
1665
1690
  # client_request_token: "ClientRequestToken",
1666
1691
  # enable_termination_protection: false,
1667
1692
  # retain_except_on_create: false,
1693
+ # deployment_config: {
1694
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
1695
+ # disable_rollback: false,
1696
+ # },
1697
+ # disable_validation: false,
1668
1698
  # })
1669
1699
  #
1670
1700
  # @example Response structure
@@ -2396,6 +2426,10 @@ module Aws::CloudFormation
2396
2426
  # * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
2397
2427
  # `DELETE_FAILED` state due to resource deletion failure.
2398
2428
  #
2429
+ # @option params [Types::DeploymentConfig] :deployment_config
2430
+ # The deployment configuration for this stack operation, including the
2431
+ # deployment mode.
2432
+ #
2399
2433
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2400
2434
  #
2401
2435
  # @example Request syntax with placeholder values
@@ -2406,6 +2440,10 @@ module Aws::CloudFormation
2406
2440
  # role_arn: "RoleARN",
2407
2441
  # client_request_token: "ClientRequestToken",
2408
2442
  # deletion_mode: "STANDARD", # accepts STANDARD, FORCE_DELETE_STACK
2443
+ # deployment_config: {
2444
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
2445
+ # disable_rollback: false,
2446
+ # },
2409
2447
  # })
2410
2448
  #
2411
2449
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack AWS API Documentation
@@ -2757,6 +2795,7 @@ module Aws::CloudFormation
2757
2795
  # * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
2758
2796
  # * {Types::DescribeChangeSetOutput#import_existing_resources #import_existing_resources} => Boolean
2759
2797
  # * {Types::DescribeChangeSetOutput#deployment_mode #deployment_mode} => String
2798
+ # * {Types::DescribeChangeSetOutput#deployment_config #deployment_config} => Types::DeploymentConfig
2760
2799
  #
2761
2800
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2762
2801
  #
@@ -2841,6 +2880,8 @@ module Aws::CloudFormation
2841
2880
  # resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
2842
2881
  # resp.import_existing_resources #=> Boolean
2843
2882
  # resp.deployment_mode #=> String, one of "REVERT_DRIFT"
2883
+ # resp.deployment_config.mode #=> String, one of "STANDARD", "EXPRESS"
2884
+ # resp.deployment_config.disable_rollback #=> Boolean
2844
2885
  #
2845
2886
  #
2846
2887
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2951,7 +2992,9 @@ module Aws::CloudFormation
2951
2992
  # </note>
2952
2993
  #
2953
2994
  # @option params [String] :stack_name
2954
- # The name or unique stack ID for which you want to retrieve events.
2995
+ # The name or unique stack ID for which you want to retrieve events. If
2996
+ # you specified the name of a change set, specify the stack name or ID
2997
+ # (ARN) of the change set you want to describe.
2955
2998
  #
2956
2999
  # @option params [String] :change_set_name
2957
3000
  # The name or Amazon Resource Name (ARN) of the change set for which you
@@ -4153,6 +4196,8 @@ module Aws::CloudFormation
4153
4196
  # resp.stacks[0].stack_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "REVIEW_IN_PROGRESS", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE"
4154
4197
  # resp.stacks[0].stack_status_reason #=> String
4155
4198
  # resp.stacks[0].disable_rollback #=> Boolean
4199
+ # resp.stacks[0].deployment_config.mode #=> String, one of "STANDARD", "EXPRESS"
4200
+ # resp.stacks[0].deployment_config.disable_rollback #=> Boolean
4156
4201
  # resp.stacks[0].notification_arns #=> Array
4157
4202
  # resp.stacks[0].notification_arns[0] #=> String
4158
4203
  # resp.stacks[0].timeout_in_minutes #=> Integer
@@ -7437,6 +7482,10 @@ module Aws::CloudFormation
7437
7482
  #
7438
7483
  # Default: `false`
7439
7484
  #
7485
+ # @option params [Types::DeploymentConfig] :deployment_config
7486
+ # The deployment configuration for this stack operation, including the
7487
+ # deployment mode.
7488
+ #
7440
7489
  # @return [Types::RollbackStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7441
7490
  #
7442
7491
  # * {Types::RollbackStackOutput#stack_id #stack_id} => String
@@ -7449,6 +7498,10 @@ module Aws::CloudFormation
7449
7498
  # role_arn: "RoleARN",
7450
7499
  # client_request_token: "ClientRequestToken",
7451
7500
  # retain_except_on_create: false,
7501
+ # deployment_config: {
7502
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
7503
+ # disable_rollback: false,
7504
+ # },
7452
7505
  # })
7453
7506
  #
7454
7507
  # @example Response structure
@@ -8340,6 +8393,16 @@ module Aws::CloudFormation
8340
8393
  #
8341
8394
  # Default: `false`
8342
8395
  #
8396
+ # @option params [Types::DeploymentConfig] :deployment_config
8397
+ # The deployment configuration for this stack operation, including the
8398
+ # deployment mode.
8399
+ #
8400
+ # @option params [Boolean] :disable_validation
8401
+ # Set to `true` to disable pre-deployment validations in changeset or
8402
+ # stack operations.
8403
+ #
8404
+ # Default: `false`
8405
+ #
8343
8406
  # @return [Types::UpdateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8344
8407
  #
8345
8408
  # * {Types::UpdateStackOutput#stack_id #stack_id} => String
@@ -8386,6 +8449,11 @@ module Aws::CloudFormation
8386
8449
  # disable_rollback: false,
8387
8450
  # client_request_token: "ClientRequestToken",
8388
8451
  # retain_except_on_create: false,
8452
+ # deployment_config: {
8453
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
8454
+ # disable_rollback: false,
8455
+ # },
8456
+ # disable_validation: false,
8389
8457
  # })
8390
8458
  #
8391
8459
  # @example Response structure
@@ -9123,7 +9191,7 @@ module Aws::CloudFormation
9123
9191
  tracer: tracer
9124
9192
  )
9125
9193
  context[:gem_name] = 'aws-sdk-cloudformation'
9126
- context[:gem_version] = '1.154.0'
9194
+ context[:gem_version] = '1.155.0'
9127
9195
  Seahorse::Client::Request.new(handlers, context)
9128
9196
  end
9129
9197
 
@@ -118,6 +118,8 @@ module Aws::CloudFormation
118
118
  DeleteStackSetOutput = Shapes::StructureShape.new(name: 'DeleteStackSetOutput')
119
119
  DeletionMode = Shapes::StringShape.new(name: 'DeletionMode')
120
120
  DeletionTime = Shapes::TimestampShape.new(name: 'DeletionTime')
121
+ DeploymentConfig = Shapes::StructureShape.new(name: 'DeploymentConfig')
122
+ DeploymentConfigMode = Shapes::StringShape.new(name: 'DeploymentConfigMode')
121
123
  DeploymentMode = Shapes::StringShape.new(name: 'DeploymentMode')
122
124
  DeploymentTargets = Shapes::StructureShape.new(name: 'DeploymentTargets')
123
125
  DeprecatedStatus = Shapes::StringShape.new(name: 'DeprecatedStatus')
@@ -174,6 +176,7 @@ module Aws::CloudFormation
174
176
  DetectionReason = Shapes::StringShape.new(name: 'DetectionReason')
175
177
  DifferenceType = Shapes::StringShape.new(name: 'DifferenceType')
176
178
  DisableRollback = Shapes::BooleanShape.new(name: 'DisableRollback')
179
+ DisableValidation = Shapes::BooleanShape.new(name: 'DisableValidation')
177
180
  DriftIgnoredReason = Shapes::StringShape.new(name: 'DriftIgnoredReason')
178
181
  DriftedStackInstancesCount = Shapes::IntegerShape.new(name: 'DriftedStackInstancesCount')
179
182
  EnableStackCreation = Shapes::BooleanShape.new(name: 'EnableStackCreation')
@@ -827,6 +830,8 @@ module Aws::CloudFormation
827
830
  CreateChangeSetInput.add_member(:on_stack_failure, Shapes::ShapeRef.new(shape: OnStackFailure, location_name: "OnStackFailure"))
828
831
  CreateChangeSetInput.add_member(:import_existing_resources, Shapes::ShapeRef.new(shape: ImportExistingResources, location_name: "ImportExistingResources"))
829
832
  CreateChangeSetInput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "DeploymentMode"))
833
+ CreateChangeSetInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
834
+ CreateChangeSetInput.add_member(:disable_validation, Shapes::ShapeRef.new(shape: DisableValidation, location_name: "DisableValidation"))
830
835
  CreateChangeSetInput.struct_class = Types::CreateChangeSetInput
831
836
 
832
837
  CreateChangeSetOutput.add_member(:id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "Id"))
@@ -860,6 +865,8 @@ module Aws::CloudFormation
860
865
  CreateStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
861
866
  CreateStackInput.add_member(:enable_termination_protection, Shapes::ShapeRef.new(shape: EnableTerminationProtection, location_name: "EnableTerminationProtection"))
862
867
  CreateStackInput.add_member(:retain_except_on_create, Shapes::ShapeRef.new(shape: RetainExceptOnCreate, location_name: "RetainExceptOnCreate"))
868
+ CreateStackInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
869
+ CreateStackInput.add_member(:disable_validation, Shapes::ShapeRef.new(shape: DisableValidation, location_name: "DisableValidation"))
863
870
  CreateStackInput.struct_class = Types::CreateStackInput
864
871
 
865
872
  CreateStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
@@ -935,6 +942,7 @@ module Aws::CloudFormation
935
942
  DeleteStackInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
936
943
  DeleteStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
937
944
  DeleteStackInput.add_member(:deletion_mode, Shapes::ShapeRef.new(shape: DeletionMode, location_name: "DeletionMode"))
945
+ DeleteStackInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
938
946
  DeleteStackInput.struct_class = Types::DeleteStackInput
939
947
 
940
948
  DeleteStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
@@ -956,6 +964,10 @@ module Aws::CloudFormation
956
964
 
957
965
  DeleteStackSetOutput.struct_class = Types::DeleteStackSetOutput
958
966
 
967
+ DeploymentConfig.add_member(:mode, Shapes::ShapeRef.new(shape: DeploymentConfigMode, location_name: "Mode"))
968
+ DeploymentConfig.add_member(:disable_rollback, Shapes::ShapeRef.new(shape: DisableRollback, location_name: "DisableRollback"))
969
+ DeploymentConfig.struct_class = Types::DeploymentConfig
970
+
959
971
  DeploymentTargets.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
960
972
  DeploymentTargets.add_member(:accounts_url, Shapes::ShapeRef.new(shape: AccountsUrl, location_name: "AccountsUrl"))
961
973
  DeploymentTargets.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
@@ -1021,6 +1033,7 @@ module Aws::CloudFormation
1021
1033
  DescribeChangeSetOutput.add_member(:on_stack_failure, Shapes::ShapeRef.new(shape: OnStackFailure, location_name: "OnStackFailure"))
1022
1034
  DescribeChangeSetOutput.add_member(:import_existing_resources, Shapes::ShapeRef.new(shape: ImportExistingResources, location_name: "ImportExistingResources"))
1023
1035
  DescribeChangeSetOutput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "DeploymentMode"))
1036
+ DescribeChangeSetOutput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
1024
1037
  DescribeChangeSetOutput.struct_class = Types::DescribeChangeSetOutput
1025
1038
 
1026
1039
  DescribeEventsInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackNameOrId, location_name: "StackName"))
@@ -1894,6 +1907,7 @@ module Aws::CloudFormation
1894
1907
  RollbackStackInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
1895
1908
  RollbackStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
1896
1909
  RollbackStackInput.add_member(:retain_except_on_create, Shapes::ShapeRef.new(shape: RetainExceptOnCreate, location_name: "RetainExceptOnCreate"))
1910
+ RollbackStackInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
1897
1911
  RollbackStackInput.struct_class = Types::RollbackStackInput
1898
1912
 
1899
1913
  RollbackStackOutput.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
@@ -1967,6 +1981,7 @@ module Aws::CloudFormation
1967
1981
  Stack.add_member(:stack_status, Shapes::ShapeRef.new(shape: StackStatus, required: true, location_name: "StackStatus"))
1968
1982
  Stack.add_member(:stack_status_reason, Shapes::ShapeRef.new(shape: StackStatusReason, location_name: "StackStatusReason"))
1969
1983
  Stack.add_member(:disable_rollback, Shapes::ShapeRef.new(shape: DisableRollback, location_name: "DisableRollback"))
1984
+ Stack.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
1970
1985
  Stack.add_member(:notification_arns, Shapes::ShapeRef.new(shape: NotificationARNs, location_name: "NotificationARNs"))
1971
1986
  Stack.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: TimeoutMinutes, location_name: "TimeoutInMinutes"))
1972
1987
  Stack.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
@@ -2463,6 +2478,8 @@ module Aws::CloudFormation
2463
2478
  UpdateStackInput.add_member(:disable_rollback, Shapes::ShapeRef.new(shape: DisableRollback, location_name: "DisableRollback"))
2464
2479
  UpdateStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
2465
2480
  UpdateStackInput.add_member(:retain_except_on_create, Shapes::ShapeRef.new(shape: RetainExceptOnCreate, location_name: "RetainExceptOnCreate"))
2481
+ UpdateStackInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
2482
+ UpdateStackInput.add_member(:disable_validation, Shapes::ShapeRef.new(shape: DisableValidation, location_name: "DisableValidation"))
2466
2483
  UpdateStackInput.struct_class = Types::UpdateStackInput
2467
2484
 
2468
2485
  UpdateStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
@@ -76,6 +76,11 @@ module Aws::CloudFormation
76
76
  # client_request_token: "ClientRequestToken",
77
77
  # enable_termination_protection: false,
78
78
  # retain_except_on_create: false,
79
+ # deployment_config: {
80
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
81
+ # disable_rollback: false,
82
+ # },
83
+ # disable_validation: false,
79
84
  # })
80
85
  # @param [Hash] options ({})
81
86
  # @option options [required, String] :stack_name
@@ -328,6 +333,14 @@ module Aws::CloudFormation
328
333
  # with a deletion policy of `Retain`.
329
334
  #
330
335
  # Default: `false`
336
+ # @option options [Types::DeploymentConfig] :deployment_config
337
+ # The deployment configuration for this stack operation, including the
338
+ # deployment mode.
339
+ # @option options [Boolean] :disable_validation
340
+ # Set to `true` to disable pre-deployment validations in changeset or
341
+ # stack operations.
342
+ #
343
+ # Default: `false`
331
344
  # @return [Stack]
332
345
  def create_stack(options = {})
333
346
  Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
@@ -108,6 +108,13 @@ module Aws::CloudFormation
108
108
  data[:disable_rollback]
109
109
  end
110
110
 
111
+ # The deployment configuration for the stack, including the deployment
112
+ # mode used for stack operations.
113
+ # @return [Types::DeploymentConfig]
114
+ def deployment_config
115
+ data[:deployment_config]
116
+ end
117
+
111
118
  # Amazon SNS topic Amazon Resource Names (ARNs) to which stack related
112
119
  # events are published.
113
120
  # @return [Array<String>]
@@ -482,6 +489,11 @@ module Aws::CloudFormation
482
489
  # client_request_token: "ClientRequestToken",
483
490
  # enable_termination_protection: false,
484
491
  # retain_except_on_create: false,
492
+ # deployment_config: {
493
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
494
+ # disable_rollback: false,
495
+ # },
496
+ # disable_validation: false,
485
497
  # })
486
498
  # @param [Hash] options ({})
487
499
  # @option options [String] :template_body
@@ -725,6 +737,14 @@ module Aws::CloudFormation
725
737
  # with a deletion policy of `Retain`.
726
738
  #
727
739
  # Default: `false`
740
+ # @option options [Types::DeploymentConfig] :deployment_config
741
+ # The deployment configuration for this stack operation, including the
742
+ # deployment mode.
743
+ # @option options [Boolean] :disable_validation
744
+ # Set to `true` to disable pre-deployment validations in changeset or
745
+ # stack operations.
746
+ #
747
+ # Default: `false`
728
748
  # @return [Types::CreateStackOutput]
729
749
  def create(options = {})
730
750
  options = options.merge(stack_name: @name)
@@ -741,6 +761,10 @@ module Aws::CloudFormation
741
761
  # role_arn: "RoleARN",
742
762
  # client_request_token: "ClientRequestToken",
743
763
  # deletion_mode: "STANDARD", # accepts STANDARD, FORCE_DELETE_STACK
764
+ # deployment_config: {
765
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
766
+ # disable_rollback: false,
767
+ # },
744
768
  # })
745
769
  # @param [Hash] options ({})
746
770
  # @option options [Array<String>] :retain_resources
@@ -788,6 +812,9 @@ module Aws::CloudFormation
788
812
  #
789
813
  # * `FORCE_DELETE_STACK` - Delete the stack if it's stuck in a
790
814
  # `DELETE_FAILED` state due to resource deletion failure.
815
+ # @option options [Types::DeploymentConfig] :deployment_config
816
+ # The deployment configuration for this stack operation, including the
817
+ # deployment mode.
791
818
  # @return [EmptyStructure]
792
819
  def delete(options = {})
793
820
  options = options.merge(stack_name: @name)
@@ -837,6 +864,11 @@ module Aws::CloudFormation
837
864
  # disable_rollback: false,
838
865
  # client_request_token: "ClientRequestToken",
839
866
  # retain_except_on_create: false,
867
+ # deployment_config: {
868
+ # mode: "STANDARD", # accepts STANDARD, EXPRESS
869
+ # disable_rollback: false,
870
+ # },
871
+ # disable_validation: false,
840
872
  # })
841
873
  # @param [Hash] options ({})
842
874
  # @option options [String] :template_body
@@ -1096,6 +1128,14 @@ module Aws::CloudFormation
1096
1128
  # with a deletion policy of `Retain`.
1097
1129
  #
1098
1130
  # Default: `false`
1131
+ # @option options [Types::DeploymentConfig] :deployment_config
1132
+ # The deployment configuration for this stack operation, including the
1133
+ # deployment mode.
1134
+ # @option options [Boolean] :disable_validation
1135
+ # Set to `true` to disable pre-deployment validations in changeset or
1136
+ # stack operations.
1137
+ #
1138
+ # Default: `false`
1099
1139
  # @return [Types::UpdateStackOutput]
1100
1140
  def update(options = {})
1101
1141
  options = options.merge(stack_name: @name)
@@ -1098,6 +1098,18 @@ module Aws::CloudFormation
1098
1098
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/drift-aware-change-sets.html
1099
1099
  # @return [String]
1100
1100
  #
1101
+ # @!attribute [rw] deployment_config
1102
+ # The deployment configuration for this stack operation, including the
1103
+ # deployment mode.
1104
+ # @return [Types::DeploymentConfig]
1105
+ #
1106
+ # @!attribute [rw] disable_validation
1107
+ # Set to `true` to disable pre-deployment validations in changeset or
1108
+ # stack operations.
1109
+ #
1110
+ # Default: `false`
1111
+ # @return [Boolean]
1112
+ #
1101
1113
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
1102
1114
  #
1103
1115
  class CreateChangeSetInput < Struct.new(
@@ -1120,7 +1132,9 @@ module Aws::CloudFormation
1120
1132
  :include_nested_stacks,
1121
1133
  :on_stack_failure,
1122
1134
  :import_existing_resources,
1123
- :deployment_mode)
1135
+ :deployment_mode,
1136
+ :deployment_config,
1137
+ :disable_validation)
1124
1138
  SENSITIVE = []
1125
1139
  include Aws::Structure
1126
1140
  end
@@ -1479,6 +1493,18 @@ module Aws::CloudFormation
1479
1493
  # Default: `false`
1480
1494
  # @return [Boolean]
1481
1495
  #
1496
+ # @!attribute [rw] deployment_config
1497
+ # The deployment configuration for this stack operation, including the
1498
+ # deployment mode.
1499
+ # @return [Types::DeploymentConfig]
1500
+ #
1501
+ # @!attribute [rw] disable_validation
1502
+ # Set to `true` to disable pre-deployment validations in changeset or
1503
+ # stack operations.
1504
+ #
1505
+ # Default: `false`
1506
+ # @return [Boolean]
1507
+ #
1482
1508
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInput AWS API Documentation
1483
1509
  #
1484
1510
  class CreateStackInput < Struct.new(
@@ -1499,7 +1525,9 @@ module Aws::CloudFormation
1499
1525
  :tags,
1500
1526
  :client_request_token,
1501
1527
  :enable_termination_protection,
1502
- :retain_except_on_create)
1528
+ :retain_except_on_create,
1529
+ :deployment_config,
1530
+ :disable_validation)
1503
1531
  SENSITIVE = []
1504
1532
  include Aws::Structure
1505
1533
  end
@@ -2133,6 +2161,11 @@ module Aws::CloudFormation
2133
2161
  # `DELETE_FAILED` state due to resource deletion failure.
2134
2162
  # @return [String]
2135
2163
  #
2164
+ # @!attribute [rw] deployment_config
2165
+ # The deployment configuration for this stack operation, including the
2166
+ # deployment mode.
2167
+ # @return [Types::DeploymentConfig]
2168
+ #
2136
2169
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInput AWS API Documentation
2137
2170
  #
2138
2171
  class DeleteStackInput < Struct.new(
@@ -2140,7 +2173,8 @@ module Aws::CloudFormation
2140
2173
  :retain_resources,
2141
2174
  :role_arn,
2142
2175
  :client_request_token,
2143
- :deletion_mode)
2176
+ :deletion_mode,
2177
+ :deployment_config)
2144
2178
  SENSITIVE = []
2145
2179
  include Aws::Structure
2146
2180
  end
@@ -2295,6 +2329,40 @@ module Aws::CloudFormation
2295
2329
  #
2296
2330
  class DeleteStackSetOutput < Aws::EmptyStructure; end
2297
2331
 
2332
+ # The deployment configuration for a stack operation, including the
2333
+ # deployment mode.
2334
+ #
2335
+ # @!attribute [rw] mode
2336
+ # Specifies the deployment mode for the stack operation. Possible
2337
+ # values are:
2338
+ #
2339
+ # * `STANDARD` - Use the standard deployment behavior, ensuring
2340
+ # resources are ready to serve traffic before completing the
2341
+ # operation. This is the default. You do not need to specify this
2342
+ # value explicitly.
2343
+ #
2344
+ # * `EXPRESS` - Complete the stack operation when resource
2345
+ # configuration is applied, without waiting for resources to become
2346
+ # ready to serve traffic. Resources continue becoming ready in the
2347
+ # background.
2348
+ # @return [String]
2349
+ #
2350
+ # @!attribute [rw] disable_rollback
2351
+ # Specifies whether to disable rollback of the stack if the stack
2352
+ # operation fails.
2353
+ #
2354
+ # Default: `false`
2355
+ # @return [Boolean]
2356
+ #
2357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeploymentConfig AWS API Documentation
2358
+ #
2359
+ class DeploymentConfig < Struct.new(
2360
+ :mode,
2361
+ :disable_rollback)
2362
+ SENSITIVE = []
2363
+ include Aws::Structure
2364
+ end
2365
+
2298
2366
  # Specifies the Organizations accounts where you want to create, update,
2299
2367
  # or delete stack instances. You can target either your entire
2300
2368
  # organization or specific accounts using organizational units (OUs) and
@@ -2720,6 +2788,11 @@ module Aws::CloudFormation
2720
2788
  # value is `REVERT_DRIFT`. Only present for drift-aware change sets.
2721
2789
  # @return [String]
2722
2790
  #
2791
+ # @!attribute [rw] deployment_config
2792
+ # The deployment configuration specified when the change set was
2793
+ # created.
2794
+ # @return [Types::DeploymentConfig]
2795
+ #
2723
2796
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetOutput AWS API Documentation
2724
2797
  #
2725
2798
  class DescribeChangeSetOutput < Struct.new(
@@ -2745,13 +2818,16 @@ module Aws::CloudFormation
2745
2818
  :root_change_set_id,
2746
2819
  :on_stack_failure,
2747
2820
  :import_existing_resources,
2748
- :deployment_mode)
2821
+ :deployment_mode,
2822
+ :deployment_config)
2749
2823
  SENSITIVE = []
2750
2824
  include Aws::Structure
2751
2825
  end
2752
2826
 
2753
2827
  # @!attribute [rw] stack_name
2754
2828
  # The name or unique stack ID for which you want to retrieve events.
2829
+ # If you specified the name of a change set, specify the stack name or
2830
+ # ID (ARN) of the change set you want to describe.
2755
2831
  # @return [String]
2756
2832
  #
2757
2833
  # @!attribute [rw] change_set_name
@@ -8227,13 +8303,19 @@ module Aws::CloudFormation
8227
8303
  # Default: `false`
8228
8304
  # @return [Boolean]
8229
8305
  #
8306
+ # @!attribute [rw] deployment_config
8307
+ # The deployment configuration for this stack operation, including the
8308
+ # deployment mode.
8309
+ # @return [Types::DeploymentConfig]
8310
+ #
8230
8311
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStackInput AWS API Documentation
8231
8312
  #
8232
8313
  class RollbackStackInput < Struct.new(
8233
8314
  :stack_name,
8234
8315
  :role_arn,
8235
8316
  :client_request_token,
8236
- :retain_except_on_create)
8317
+ :retain_except_on_create,
8318
+ :deployment_config)
8237
8319
  SENSITIVE = []
8238
8320
  include Aws::Structure
8239
8321
  end
@@ -8653,6 +8735,11 @@ module Aws::CloudFormation
8653
8735
  # * `false`: enable rollback.
8654
8736
  # @return [Boolean]
8655
8737
  #
8738
+ # @!attribute [rw] deployment_config
8739
+ # The deployment configuration for the stack, including the deployment
8740
+ # mode used for stack operations.
8741
+ # @return [Types::DeploymentConfig]
8742
+ #
8656
8743
  # @!attribute [rw] notification_arns
8657
8744
  # Amazon SNS topic Amazon Resource Names (ARNs) to which stack related
8658
8745
  # events are published.
@@ -8783,6 +8870,7 @@ module Aws::CloudFormation
8783
8870
  :stack_status,
8784
8871
  :stack_status_reason,
8785
8872
  :disable_rollback,
8873
+ :deployment_config,
8786
8874
  :notification_arns,
8787
8875
  :timeout_in_minutes,
8788
8876
  :capabilities,
@@ -12130,6 +12218,18 @@ module Aws::CloudFormation
12130
12218
  # Default: `false`
12131
12219
  # @return [Boolean]
12132
12220
  #
12221
+ # @!attribute [rw] deployment_config
12222
+ # The deployment configuration for this stack operation, including the
12223
+ # deployment mode.
12224
+ # @return [Types::DeploymentConfig]
12225
+ #
12226
+ # @!attribute [rw] disable_validation
12227
+ # Set to `true` to disable pre-deployment validations in changeset or
12228
+ # stack operations.
12229
+ #
12230
+ # Default: `false`
12231
+ # @return [Boolean]
12232
+ #
12133
12233
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackInput AWS API Documentation
12134
12234
  #
12135
12235
  class UpdateStackInput < Struct.new(
@@ -12150,7 +12250,9 @@ module Aws::CloudFormation
12150
12250
  :tags,
12151
12251
  :disable_rollback,
12152
12252
  :client_request_token,
12153
- :retain_except_on_create)
12253
+ :retain_except_on_create,
12254
+ :deployment_config,
12255
+ :disable_validation)
12154
12256
  SENSITIVE = []
12155
12257
  include Aws::Structure
12156
12258
  end
@@ -59,7 +59,7 @@ module Aws::CloudFormation
59
59
  autoload :StackResource, 'aws-sdk-cloudformation/stack_resource'
60
60
  autoload :StackResourceSummary, 'aws-sdk-cloudformation/stack_resource_summary'
61
61
 
62
- GEM_VERSION = '1.154.0'
62
+ GEM_VERSION = '1.155.0'
63
63
 
64
64
  end
65
65
 
data/sig/client.rbs CHANGED
@@ -199,7 +199,12 @@ module Aws
199
199
  ?include_nested_stacks: bool,
200
200
  ?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
201
201
  ?import_existing_resources: bool,
202
- ?deployment_mode: ("REVERT_DRIFT")
202
+ ?deployment_mode: ("REVERT_DRIFT"),
203
+ ?deployment_config: {
204
+ mode: ("STANDARD" | "EXPRESS")?,
205
+ disable_rollback: bool?
206
+ },
207
+ ?disable_validation: bool
203
208
  ) -> _CreateChangeSetResponseSuccess
204
209
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
205
210
 
@@ -269,7 +274,12 @@ module Aws
269
274
  ],
270
275
  ?client_request_token: ::String,
271
276
  ?enable_termination_protection: bool,
272
- ?retain_except_on_create: bool
277
+ ?retain_except_on_create: bool,
278
+ ?deployment_config: {
279
+ mode: ("STANDARD" | "EXPRESS")?,
280
+ disable_rollback: bool?
281
+ },
282
+ ?disable_validation: bool
273
283
  ) -> _CreateStackResponseSuccess
274
284
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
275
285
 
@@ -415,7 +425,11 @@ module Aws
415
425
  ?retain_resources: Array[::String],
416
426
  ?role_arn: ::String,
417
427
  ?client_request_token: ::String,
418
- ?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
428
+ ?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK"),
429
+ ?deployment_config: {
430
+ mode: ("STANDARD" | "EXPRESS")?,
431
+ disable_rollback: bool?
432
+ }
419
433
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
420
434
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
421
435
 
@@ -499,6 +513,7 @@ module Aws
499
513
  def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
500
514
  def import_existing_resources: () -> bool
501
515
  def deployment_mode: () -> ("REVERT_DRIFT")
516
+ def deployment_config: () -> Types::DeploymentConfig
502
517
  end
503
518
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
504
519
  def describe_change_set: (
@@ -1349,7 +1364,11 @@ module Aws
1349
1364
  stack_name: ::String,
1350
1365
  ?role_arn: ::String,
1351
1366
  ?client_request_token: ::String,
1352
- ?retain_except_on_create: bool
1367
+ ?retain_except_on_create: bool,
1368
+ ?deployment_config: {
1369
+ mode: ("STANDARD" | "EXPRESS")?,
1370
+ disable_rollback: bool?
1371
+ }
1353
1372
  ) -> _RollbackStackResponseSuccess
1354
1373
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RollbackStackResponseSuccess
1355
1374
 
@@ -1504,7 +1523,12 @@ module Aws
1504
1523
  ],
1505
1524
  ?disable_rollback: bool,
1506
1525
  ?client_request_token: ::String,
1507
- ?retain_except_on_create: bool
1526
+ ?retain_except_on_create: bool,
1527
+ ?deployment_config: {
1528
+ mode: ("STANDARD" | "EXPRESS")?,
1529
+ disable_rollback: bool?
1530
+ },
1531
+ ?disable_validation: bool
1508
1532
  ) -> _UpdateStackResponseSuccess
1509
1533
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
1510
1534
 
data/sig/resource.rbs CHANGED
@@ -119,7 +119,12 @@ module Aws
119
119
  ],
120
120
  ?client_request_token: ::String,
121
121
  ?enable_termination_protection: bool,
122
- ?retain_except_on_create: bool
122
+ ?retain_except_on_create: bool,
123
+ ?deployment_config: {
124
+ mode: ("STANDARD" | "EXPRESS")?,
125
+ disable_rollback: bool?
126
+ },
127
+ ?disable_validation: bool
123
128
  ) -> Stack
124
129
  | (?Hash[Symbol, untyped]) -> Stack
125
130
 
data/sig/stack.rbs CHANGED
@@ -51,6 +51,9 @@ module Aws
51
51
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#disable_rollback-instance_method
52
52
  def disable_rollback: () -> bool
53
53
 
54
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#deployment_config-instance_method
55
+ def deployment_config: () -> Types::DeploymentConfig
56
+
54
57
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#notification_arns-instance_method
55
58
  def notification_arns: () -> ::Array[::String]
56
59
 
@@ -157,7 +160,12 @@ module Aws
157
160
  ],
158
161
  ?client_request_token: ::String,
159
162
  ?enable_termination_protection: bool,
160
- ?retain_except_on_create: bool
163
+ ?retain_except_on_create: bool,
164
+ ?deployment_config: {
165
+ mode: ("STANDARD" | "EXPRESS")?,
166
+ disable_rollback: bool?
167
+ },
168
+ ?disable_validation: bool
161
169
  ) -> Types::CreateStackOutput
162
170
  | (?Hash[Symbol, untyped]) -> Types::CreateStackOutput
163
171
 
@@ -166,7 +174,11 @@ module Aws
166
174
  ?retain_resources: Array[::String],
167
175
  ?role_arn: ::String,
168
176
  ?client_request_token: ::String,
169
- ?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
177
+ ?deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK"),
178
+ ?deployment_config: {
179
+ mode: ("STANDARD" | "EXPRESS")?,
180
+ disable_rollback: bool?
181
+ }
170
182
  ) -> ::Aws::EmptyStructure
171
183
  | (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
172
184
 
@@ -208,7 +220,12 @@ module Aws
208
220
  ],
209
221
  ?disable_rollback: bool,
210
222
  ?client_request_token: ::String,
211
- ?retain_except_on_create: bool
223
+ ?retain_except_on_create: bool,
224
+ ?deployment_config: {
225
+ mode: ("STANDARD" | "EXPRESS")?,
226
+ disable_rollback: bool?
227
+ },
228
+ ?disable_validation: bool
212
229
  ) -> Types::UpdateStackOutput
213
230
  | (?Hash[Symbol, untyped]) -> Types::UpdateStackOutput
214
231
 
data/sig/types.rbs CHANGED
@@ -180,6 +180,8 @@ module Aws::CloudFormation
180
180
  attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
181
181
  attr_accessor import_existing_resources: bool
182
182
  attr_accessor deployment_mode: ("REVERT_DRIFT")
183
+ attr_accessor deployment_config: Types::DeploymentConfig
184
+ attr_accessor disable_validation: bool
183
185
  SENSITIVE: []
184
186
  end
185
187
 
@@ -221,6 +223,8 @@ module Aws::CloudFormation
221
223
  attr_accessor client_request_token: ::String
222
224
  attr_accessor enable_termination_protection: bool
223
225
  attr_accessor retain_except_on_create: bool
226
+ attr_accessor deployment_config: Types::DeploymentConfig
227
+ attr_accessor disable_validation: bool
224
228
  SENSITIVE: []
225
229
  end
226
230
 
@@ -323,6 +327,7 @@ module Aws::CloudFormation
323
327
  attr_accessor role_arn: ::String
324
328
  attr_accessor client_request_token: ::String
325
329
  attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
330
+ attr_accessor deployment_config: Types::DeploymentConfig
326
331
  SENSITIVE: []
327
332
  end
328
333
 
@@ -352,6 +357,12 @@ module Aws::CloudFormation
352
357
  class DeleteStackSetOutput < Aws::EmptyStructure
353
358
  end
354
359
 
360
+ class DeploymentConfig
361
+ attr_accessor mode: ("STANDARD" | "EXPRESS")
362
+ attr_accessor disable_rollback: bool
363
+ SENSITIVE: []
364
+ end
365
+
355
366
  class DeploymentTargets
356
367
  attr_accessor accounts: ::Array[::String]
357
368
  attr_accessor accounts_url: ::String
@@ -433,6 +444,7 @@ module Aws::CloudFormation
433
444
  attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
434
445
  attr_accessor import_existing_resources: bool
435
446
  attr_accessor deployment_mode: ("REVERT_DRIFT")
447
+ attr_accessor deployment_config: Types::DeploymentConfig
436
448
  SENSITIVE: []
437
449
  end
438
450
 
@@ -1525,6 +1537,7 @@ module Aws::CloudFormation
1525
1537
  attr_accessor role_arn: ::String
1526
1538
  attr_accessor client_request_token: ::String
1527
1539
  attr_accessor retain_except_on_create: bool
1540
+ attr_accessor deployment_config: Types::DeploymentConfig
1528
1541
  SENSITIVE: []
1529
1542
  end
1530
1543
 
@@ -1611,6 +1624,7 @@ module Aws::CloudFormation
1611
1624
  attr_accessor stack_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_FAILED" | "ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "REVIEW_IN_PROGRESS" | "IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE")
1612
1625
  attr_accessor stack_status_reason: ::String
1613
1626
  attr_accessor disable_rollback: bool
1627
+ attr_accessor deployment_config: Types::DeploymentConfig
1614
1628
  attr_accessor notification_arns: ::Array[::String]
1615
1629
  attr_accessor timeout_in_minutes: ::Integer
1616
1630
  attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
@@ -2139,6 +2153,8 @@ module Aws::CloudFormation
2139
2153
  attr_accessor disable_rollback: bool
2140
2154
  attr_accessor client_request_token: ::String
2141
2155
  attr_accessor retain_except_on_create: bool
2156
+ attr_accessor deployment_config: Types::DeploymentConfig
2157
+ attr_accessor disable_validation: bool
2142
2158
  SENSITIVE: []
2143
2159
  end
2144
2160
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.154.0
4
+ version: 1.155.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services