aws-sdk-cloudformation 1.55.0 → 1.56.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.
@@ -301,6 +301,8 @@ module Aws::CloudFormation
301
301
  RoleARN = Shapes::StringShape.new(name: 'RoleARN')
302
302
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
303
303
  RollbackConfiguration = Shapes::StructureShape.new(name: 'RollbackConfiguration')
304
+ RollbackStackInput = Shapes::StructureShape.new(name: 'RollbackStackInput')
305
+ RollbackStackOutput = Shapes::StructureShape.new(name: 'RollbackStackOutput')
304
306
  RollbackTrigger = Shapes::StructureShape.new(name: 'RollbackTrigger')
305
307
  RollbackTriggers = Shapes::ListShape.new(name: 'RollbackTriggers')
306
308
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
@@ -869,6 +871,7 @@ module Aws::CloudFormation
869
871
  ExecuteChangeSetInput.add_member(:change_set_name, Shapes::ShapeRef.new(shape: ChangeSetNameOrId, required: true, location_name: "ChangeSetName"))
870
872
  ExecuteChangeSetInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackNameOrId, location_name: "StackName"))
871
873
  ExecuteChangeSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
874
+ ExecuteChangeSetInput.add_member(:disable_rollback, Shapes::ShapeRef.new(shape: DisableRollback, location_name: "DisableRollback"))
872
875
  ExecuteChangeSetInput.struct_class = Types::ExecuteChangeSetInput
873
876
 
874
877
  ExecuteChangeSetOutput.struct_class = Types::ExecuteChangeSetOutput
@@ -1226,6 +1229,14 @@ module Aws::CloudFormation
1226
1229
  RollbackConfiguration.add_member(:monitoring_time_in_minutes, Shapes::ShapeRef.new(shape: MonitoringTimeInMinutes, location_name: "MonitoringTimeInMinutes"))
1227
1230
  RollbackConfiguration.struct_class = Types::RollbackConfiguration
1228
1231
 
1232
+ RollbackStackInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackNameOrId, required: true, location_name: "StackName"))
1233
+ RollbackStackInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
1234
+ RollbackStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
1235
+ RollbackStackInput.struct_class = Types::RollbackStackInput
1236
+
1237
+ RollbackStackOutput.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
1238
+ RollbackStackOutput.struct_class = Types::RollbackStackOutput
1239
+
1229
1240
  RollbackTrigger.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
1230
1241
  RollbackTrigger.add_member(:type, Shapes::ShapeRef.new(shape: Type, required: true, location_name: "Type"))
1231
1242
  RollbackTrigger.struct_class = Types::RollbackTrigger
@@ -1637,6 +1648,7 @@ module Aws::CloudFormation
1637
1648
  UpdateStackInput.add_member(:stack_policy_url, Shapes::ShapeRef.new(shape: StackPolicyURL, location_name: "StackPolicyURL"))
1638
1649
  UpdateStackInput.add_member(:notification_arns, Shapes::ShapeRef.new(shape: NotificationARNs, location_name: "NotificationARNs"))
1639
1650
  UpdateStackInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
1651
+ UpdateStackInput.add_member(:disable_rollback, Shapes::ShapeRef.new(shape: DisableRollback, location_name: "DisableRollback"))
1640
1652
  UpdateStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
1641
1653
  UpdateStackInput.struct_class = Types::UpdateStackInput
1642
1654
 
@@ -2300,6 +2312,15 @@ module Aws::CloudFormation
2300
2312
  o.errors << Shapes::ShapeRef.new(shape: CFNRegistryException)
2301
2313
  end)
2302
2314
 
2315
+ api.add_operation(:rollback_stack, Seahorse::Model::Operation.new.tap do |o|
2316
+ o.name = "RollbackStack"
2317
+ o.http_method = "POST"
2318
+ o.http_request_uri = "/"
2319
+ o.input = Shapes::ShapeRef.new(shape: RollbackStackInput)
2320
+ o.output = Shapes::ShapeRef.new(shape: RollbackStackOutput)
2321
+ o.errors << Shapes::ShapeRef.new(shape: TokenAlreadyExistsException)
2322
+ end)
2323
+
2303
2324
  api.add_operation(:set_stack_policy, Seahorse::Model::Operation.new.tap do |o|
2304
2325
  o.name = "SetStackPolicy"
2305
2326
  o.http_method = "POST"
@@ -82,8 +82,8 @@ module Aws::CloudFormation
82
82
  # the Region in which you are creating the stack.
83
83
  #
84
84
  # <note markdown="1"> A stack name can contain only alphanumeric characters (case sensitive)
85
- # and hyphens. It must start with an alphabetic character and cannot be
86
- # longer than 128 characters.
85
+ # and hyphens. It must start with an alphabetical character and cannot
86
+ # be longer than 128 characters.
87
87
  #
88
88
  # </note>
89
89
  # @option options [String] :template_body
@@ -142,9 +142,10 @@ module Aws::CloudFormation
142
142
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
143
143
  #
144
144
  # Some stack templates might include resources that can affect
145
- # permissions in your account; for example, by creating new Identity
146
- # and Access Management (IAM) users. For those stacks, you must
147
- # explicitly acknowledge this by specifying one of these capabilities.
145
+ # permissions in your Amazon Web Services account; for example, by
146
+ # creating new Identity and Access Management (IAM) users. For those
147
+ # stacks, you must explicitly acknowledge this by specifying one of
148
+ # these capabilities.
148
149
  #
149
150
  # The following IAM resources require you to specify either the
150
151
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -488,9 +488,10 @@ module Aws::CloudFormation
488
488
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
489
489
  #
490
490
  # Some stack templates might include resources that can affect
491
- # permissions in your account; for example, by creating new Identity
492
- # and Access Management (IAM) users. For those stacks, you must
493
- # explicitly acknowledge this by specifying one of these capabilities.
491
+ # permissions in your Amazon Web Services account; for example, by
492
+ # creating new Identity and Access Management (IAM) users. For those
493
+ # stacks, you must explicitly acknowledge this by specifying one of
494
+ # these capabilities.
494
495
  #
495
496
  # The following IAM resources require you to specify either the
496
497
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -757,6 +758,7 @@ module Aws::CloudFormation
757
758
  # value: "TagValue", # required
758
759
  # },
759
760
  # ],
761
+ # disable_rollback: false,
760
762
  # client_request_token: "ClientRequestToken",
761
763
  # })
762
764
  # @param [Hash] options ({})
@@ -827,9 +829,10 @@ module Aws::CloudFormation
827
829
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
828
830
  #
829
831
  # Some stack templates might include resources that can affect
830
- # permissions in your account; for example, by creating new Identity
831
- # and Access Management (IAM) users. For those stacks, you must
832
- # explicitly acknowledge this by specifying one of these capabilities.
832
+ # permissions in your Amazon Web Services account; for example, by
833
+ # creating new Identity and Access Management (IAM) users. For those
834
+ # stacks, you must explicitly acknowledge this by specifying one of
835
+ # these capabilities.
833
836
  #
834
837
  # The following IAM resources require you to specify either the
835
838
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -968,6 +971,11 @@ module Aws::CloudFormation
968
971
  # If you don't specify this parameter, CloudFormation doesn't modify
969
972
  # the stack's tags. If you specify an empty value, CloudFormation
970
973
  # removes all associated tags.
974
+ # @option options [Boolean] :disable_rollback
975
+ # Preserve the state of previously provisioned resources when an
976
+ # operation fails.
977
+ #
978
+ # Default: `False`
971
979
  # @option options [String] :client_request_token
972
980
  # A unique identifier for this `UpdateStack` request. Specify this token
973
981
  # if you plan to retry requests so that CloudFormation knows that
@@ -718,10 +718,10 @@ module Aws::CloudFormation
718
718
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
719
719
  #
720
720
  # Some stack templates might include resources that can affect
721
- # permissions in your account; for example, by creating new Identity
722
- # and Access Management (IAM) users. For those stacks, you must
723
- # explicitly acknowledge this by specifying one of these
724
- # capabilities.
721
+ # permissions in your Amazon Web Services account; for example, by
722
+ # creating new Identity and Access Management (IAM) users. For those
723
+ # stacks, you must explicitly acknowledge this by specifying one of
724
+ # these capabilities.
725
725
  #
726
726
  # The following IAM resources require you to specify either the
727
727
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -994,7 +994,7 @@ module Aws::CloudFormation
994
994
  # in the Region in which you are creating the stack.
995
995
  #
996
996
  # <note markdown="1"> A stack name can contain only alphanumeric characters (case
997
- # sensitive) and hyphens. It must start with an alphabetic character
997
+ # sensitive) and hyphens. It must start with an alphabetical character
998
998
  # and cannot be longer than 128 characters.
999
999
  #
1000
1000
  # </note>
@@ -1070,10 +1070,10 @@ module Aws::CloudFormation
1070
1070
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
1071
1071
  #
1072
1072
  # Some stack templates might include resources that can affect
1073
- # permissions in your account; for example, by creating new Identity
1074
- # and Access Management (IAM) users. For those stacks, you must
1075
- # explicitly acknowledge this by specifying one of these
1076
- # capabilities.
1073
+ # permissions in your Amazon Web Services account; for example, by
1074
+ # creating new Identity and Access Management (IAM) users. For those
1075
+ # stacks, you must explicitly acknowledge this by specifying one of
1076
+ # these capabilities.
1077
1077
  #
1078
1078
  # The following IAM resources require you to specify either the
1079
1079
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -1325,8 +1325,9 @@ module Aws::CloudFormation
1325
1325
  # @return [String]
1326
1326
  #
1327
1327
  # @!attribute [rw] accounts
1328
- # \[Self-managed permissions\] The names of one or more accounts that
1329
- # you want to create stack instances in the specified Region(s) for.
1328
+ # \[Self-managed permissions\] The names of one or more Amazon Web
1329
+ # Services accounts that you want to create stack instances in the
1330
+ # specified Region(s) for.
1330
1331
  #
1331
1332
  # You can specify `Accounts` or `DeploymentTargets`, but not both.
1332
1333
  # @return [Array<String>]
@@ -1340,7 +1341,7 @@ module Aws::CloudFormation
1340
1341
  #
1341
1342
  # @!attribute [rw] regions
1342
1343
  # The names of one or more Regions where you want to create stack
1343
- # instances using the specified accounts.
1344
+ # instances using the specified Amazon Web Services accounts.
1344
1345
  # @return [Array<String>]
1345
1346
  #
1346
1347
  # @!attribute [rw] parameter_overrides
@@ -1415,9 +1416,10 @@ module Aws::CloudFormation
1415
1416
  # * If you are signed in to a delegated administrator account, specify
1416
1417
  # `DELEGATED_ADMIN`.
1417
1418
  #
1418
- # Your account must be registered as a delegated administrator in
1419
- # the management account. For more information, see [Register a
1420
- # delegated administrator][1] in the *CloudFormation User Guide*.
1419
+ # Your Amazon Web Services account must be registered as a delegated
1420
+ # administrator in the management account. For more information, see
1421
+ # [Register a delegated administrator][1] in the *CloudFormation
1422
+ # User Guide*.
1421
1423
  #
1422
1424
  #
1423
1425
  #
@@ -1562,10 +1564,10 @@ module Aws::CloudFormation
1562
1564
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
1563
1565
  #
1564
1566
  # Some stack templates might include resources that can affect
1565
- # permissions in your account; for example, by creating new Identity
1566
- # and Access Management (IAM) users. For those stack sets, you must
1567
- # explicitly acknowledge this by specifying one of these
1568
- # capabilities.
1567
+ # permissions in your Amazon Web Services account; for example, by
1568
+ # creating new Identity and Access Management (IAM) users. For those
1569
+ # stack sets, you must explicitly acknowledge this by specifying one
1570
+ # of these capabilities.
1569
1571
  #
1570
1572
  # The following IAM resources require you to specify either the
1571
1573
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -1712,9 +1714,10 @@ module Aws::CloudFormation
1712
1714
  # signed in to a delegated administrator account, specify
1713
1715
  # `DELEGATED_ADMIN`.
1714
1716
  #
1715
- # Your account must be registered as a delegated admin in the
1716
- # management account. For more information, see [Register a
1717
- # delegated administrator][1] in the *CloudFormation User Guide*.
1717
+ # Your Amazon Web Services account must be registered as a delegated
1718
+ # admin in the management account. For more information, see
1719
+ # [Register a delegated administrator][1] in the *CloudFormation
1720
+ # User Guide*.
1718
1721
  #
1719
1722
  # Stack sets with service-managed permissions are created in the
1720
1723
  # management account, including stack sets that are created by
@@ -1962,8 +1965,8 @@ module Aws::CloudFormation
1962
1965
  # @return [String]
1963
1966
  #
1964
1967
  # @!attribute [rw] accounts
1965
- # \[Self-managed permissions\] The names of the accounts that you want
1966
- # to delete stack instances for.
1968
+ # \[Self-managed permissions\] The names of the Amazon Web Services
1969
+ # accounts that you want to delete stack instances for.
1967
1970
  #
1968
1971
  # You can specify `Accounts` or `DeploymentTargets`, but not both.
1969
1972
  # @return [Array<String>]
@@ -2028,9 +2031,10 @@ module Aws::CloudFormation
2028
2031
  # * If you are signed in to a delegated administrator account, specify
2029
2032
  # `DELEGATED_ADMIN`.
2030
2033
  #
2031
- # Your account must be registered as a delegated administrator in
2032
- # the management account. For more information, see [Register a
2033
- # delegated administrator][1] in the *CloudFormation User Guide*.
2034
+ # Your Amazon Web Services account must be registered as a delegated
2035
+ # administrator in the management account. For more information, see
2036
+ # [Register a delegated administrator][1] in the *CloudFormation
2037
+ # User Guide*.
2034
2038
  #
2035
2039
  #
2036
2040
  #
@@ -2090,9 +2094,10 @@ module Aws::CloudFormation
2090
2094
  # * If you are signed in to a delegated administrator account, specify
2091
2095
  # `DELEGATED_ADMIN`.
2092
2096
  #
2093
- # Your account must be registered as a delegated administrator in
2094
- # the management account. For more information, see [Register a
2095
- # delegated administrator][1] in the *CloudFormation User Guide*.
2097
+ # Your Amazon Web Services account must be registered as a delegated
2098
+ # administrator in the management account. For more information, see
2099
+ # [Register a delegated administrator][1] in the *CloudFormation
2100
+ # User Guide*.
2096
2101
  #
2097
2102
  #
2098
2103
  #
@@ -2131,8 +2136,8 @@ module Aws::CloudFormation
2131
2136
  # }
2132
2137
  #
2133
2138
  # @!attribute [rw] accounts
2134
- # The names of one or more accounts for which you want to deploy stack
2135
- # set updates.
2139
+ # The names of one or more Amazon Web Services accounts for which you
2140
+ # want to deploy stack set updates.
2136
2141
  # @return [Array<String>]
2137
2142
  #
2138
2143
  # @!attribute [rw] accounts_url
@@ -2643,7 +2648,8 @@ module Aws::CloudFormation
2643
2648
  # @return [String]
2644
2649
  #
2645
2650
  # @!attribute [rw] stack_instance_account
2646
- # The ID of an account that's associated with this stack instance.
2651
+ # The ID of an Amazon Web Services account that's associated with
2652
+ # this stack instance.
2647
2653
  # @return [String]
2648
2654
  #
2649
2655
  # @!attribute [rw] stack_instance_region
@@ -2663,9 +2669,10 @@ module Aws::CloudFormation
2663
2669
  # * If you are signed in to a delegated administrator account, specify
2664
2670
  # `DELEGATED_ADMIN`.
2665
2671
  #
2666
- # Your account must be registered as a delegated administrator in
2667
- # the management account. For more information, see [Register a
2668
- # delegated administrator][1] in the *CloudFormation User Guide*.
2672
+ # Your Amazon Web Services account must be registered as a delegated
2673
+ # administrator in the management account. For more information, see
2674
+ # [Register a delegated administrator][1] in the *CloudFormation
2675
+ # User Guide*.
2669
2676
  #
2670
2677
  #
2671
2678
  #
@@ -2933,9 +2940,10 @@ module Aws::CloudFormation
2933
2940
  # * If you are signed in to a delegated administrator account, specify
2934
2941
  # `DELEGATED_ADMIN`.
2935
2942
  #
2936
- # Your account must be registered as a delegated administrator in
2937
- # the management account. For more information, see [Register a
2938
- # delegated administrator][1] in the *CloudFormation User Guide*.
2943
+ # Your Amazon Web Services account must be registered as a delegated
2944
+ # administrator in the management account. For more information, see
2945
+ # [Register a delegated administrator][1] in the *CloudFormation
2946
+ # User Guide*.
2939
2947
  #
2940
2948
  #
2941
2949
  #
@@ -2982,9 +2990,10 @@ module Aws::CloudFormation
2982
2990
  # * If you are signed in to a delegated administrator account, specify
2983
2991
  # `DELEGATED_ADMIN`.
2984
2992
  #
2985
- # Your account must be registered as a delegated administrator in
2986
- # the management account. For more information, see [Register a
2987
- # delegated administrator][1] in the *CloudFormation User Guide*.
2993
+ # Your Amazon Web Services account must be registered as a delegated
2994
+ # administrator in the management account. For more information, see
2995
+ # [Register a delegated administrator][1] in the *CloudFormation
2996
+ # User Guide*.
2988
2997
  #
2989
2998
  #
2990
2999
  #
@@ -3678,9 +3687,10 @@ module Aws::CloudFormation
3678
3687
  # * If you are signed in to a delegated administrator account, specify
3679
3688
  # `DELEGATED_ADMIN`.
3680
3689
  #
3681
- # Your account must be registered as a delegated administrator in
3682
- # the management account. For more information, see [Register a
3683
- # delegated administrator][1] in the *CloudFormation User Guide*.
3690
+ # Your Amazon Web Services account must be registered as a delegated
3691
+ # administrator in the management account. For more information, see
3692
+ # [Register a delegated administrator][1] in the *CloudFormation
3693
+ # User Guide*.
3684
3694
  #
3685
3695
  #
3686
3696
  #
@@ -3796,6 +3806,7 @@ module Aws::CloudFormation
3796
3806
  # change_set_name: "ChangeSetNameOrId", # required
3797
3807
  # stack_name: "StackNameOrId",
3798
3808
  # client_request_token: "ClientRequestToken",
3809
+ # disable_rollback: false,
3799
3810
  # }
3800
3811
  #
3801
3812
  # @!attribute [rw] change_set_name
@@ -3816,12 +3827,20 @@ module Aws::CloudFormation
3816
3827
  # requests to ensure that CloudFormation successfully received them.
3817
3828
  # @return [String]
3818
3829
  #
3830
+ # @!attribute [rw] disable_rollback
3831
+ # Preserves the state of previously provisioned resources when an
3832
+ # operation fails.
3833
+ #
3834
+ # Default: `True`
3835
+ # @return [Boolean]
3836
+ #
3819
3837
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSetInput AWS API Documentation
3820
3838
  #
3821
3839
  class ExecuteChangeSetInput < Struct.new(
3822
3840
  :change_set_name,
3823
3841
  :stack_name,
3824
- :client_request_token)
3842
+ :client_request_token,
3843
+ :disable_rollback)
3825
3844
  SENSITIVE = []
3826
3845
  include Aws::Structure
3827
3846
  end
@@ -4058,9 +4077,10 @@ module Aws::CloudFormation
4058
4077
  # * If you are signed in to a delegated administrator account, specify
4059
4078
  # `DELEGATED_ADMIN`.
4060
4079
  #
4061
- # Your account must be registered as a delegated administrator in
4062
- # the management account. For more information, see [Register a
4063
- # delegated administrator][1] in the *CloudFormation User Guide*.
4080
+ # Your Amazon Web Services account must be registered as a delegated
4081
+ # administrator in the management account. For more information, see
4082
+ # [Register a delegated administrator][1] in the *CloudFormation
4083
+ # User Guide*.
4064
4084
  #
4065
4085
  #
4066
4086
  #
@@ -4461,7 +4481,8 @@ module Aws::CloudFormation
4461
4481
  # @return [Array<Types::StackInstanceFilter>]
4462
4482
  #
4463
4483
  # @!attribute [rw] stack_instance_account
4464
- # The name of the account that you want to list stack instances for.
4484
+ # The name of the Amazon Web Services account that you want to list
4485
+ # stack instances for.
4465
4486
  # @return [String]
4466
4487
  #
4467
4488
  # @!attribute [rw] stack_instance_region
@@ -4481,9 +4502,10 @@ module Aws::CloudFormation
4481
4502
  # * If you are signed in to a delegated administrator account, specify
4482
4503
  # `DELEGATED_ADMIN`.
4483
4504
  #
4484
- # Your account must be registered as a delegated administrator in
4485
- # the management account. For more information, see [Register a
4486
- # delegated administrator][1] in the *CloudFormation User Guide*.
4505
+ # Your Amazon Web Services account must be registered as a delegated
4506
+ # administrator in the management account. For more information, see
4507
+ # [Register a delegated administrator][1] in the *CloudFormation
4508
+ # User Guide*.
4487
4509
  #
4488
4510
  #
4489
4511
  #
@@ -4633,9 +4655,10 @@ module Aws::CloudFormation
4633
4655
  # * If you are signed in to a delegated administrator account, specify
4634
4656
  # `DELEGATED_ADMIN`.
4635
4657
  #
4636
- # Your account must be registered as a delegated administrator in
4637
- # the management account. For more information, see [Register a
4638
- # delegated administrator][1] in the *CloudFormation User Guide*.
4658
+ # Your Amazon Web Services account must be registered as a delegated
4659
+ # administrator in the management account. For more information, see
4660
+ # [Register a delegated administrator][1] in the *CloudFormation
4661
+ # User Guide*.
4639
4662
  #
4640
4663
  #
4641
4664
  #
@@ -4722,9 +4745,10 @@ module Aws::CloudFormation
4722
4745
  # * If you are signed in to a delegated administrator account, specify
4723
4746
  # `DELEGATED_ADMIN`.
4724
4747
  #
4725
- # Your account must be registered as a delegated administrator in
4726
- # the management account. For more information, see [Register a
4727
- # delegated administrator][1] in the *CloudFormation User Guide*.
4748
+ # Your Amazon Web Services account must be registered as a delegated
4749
+ # administrator in the management account. For more information, see
4750
+ # [Register a delegated administrator][1] in the *CloudFormation
4751
+ # User Guide*.
4728
4752
  #
4729
4753
  #
4730
4754
  #
@@ -4808,9 +4832,10 @@ module Aws::CloudFormation
4808
4832
  # * If you are signed in to a delegated administrator account, specify
4809
4833
  # `DELEGATED_ADMIN`.
4810
4834
  #
4811
- # Your account must be registered as a delegated administrator in
4812
- # the management account. For more information, see [Register a
4813
- # delegated administrator][1] in the *CloudFormation User Guide*.
4835
+ # Your Amazon Web Services account must be registered as a delegated
4836
+ # administrator in the management account. For more information, see
4837
+ # [Register a delegated administrator][1] in the *CloudFormation
4838
+ # User Guide*.
4814
4839
  #
4815
4840
  #
4816
4841
  #
@@ -4857,7 +4882,7 @@ module Aws::CloudFormation
4857
4882
  #
4858
4883
  # {
4859
4884
  # next_token: "NextToken",
4860
- # stack_status_filter: ["CREATE_IN_PROGRESS"], # accepts 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_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
4885
+ # stack_status_filter: ["CREATE_IN_PROGRESS"], # accepts 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
4861
4886
  # }
4862
4887
  #
4863
4888
  # @!attribute [rw] next_token
@@ -5462,7 +5487,7 @@ module Aws::CloudFormation
5462
5487
  #
5463
5488
  # @!attribute [rw] no_echo
5464
5489
  # Flag that indicates whether the parameter value is shown as plain
5465
- # text in logs and in the Management Console.
5490
+ # text in logs and in the Amazon Web Services Management Console.
5466
5491
  # @return [Boolean]
5467
5492
  #
5468
5493
  # @!attribute [rw] description
@@ -6323,6 +6348,50 @@ module Aws::CloudFormation
6323
6348
  include Aws::Structure
6324
6349
  end
6325
6350
 
6351
+ # @note When making an API call, you may pass RollbackStackInput
6352
+ # data as a hash:
6353
+ #
6354
+ # {
6355
+ # stack_name: "StackNameOrId", # required
6356
+ # role_arn: "RoleARN",
6357
+ # client_request_token: "ClientRequestToken",
6358
+ # }
6359
+ #
6360
+ # @!attribute [rw] stack_name
6361
+ # The name that is associated with the stack.
6362
+ # @return [String]
6363
+ #
6364
+ # @!attribute [rw] role_arn
6365
+ # The Amazon Resource Name (ARN) of an Identity and Access Management
6366
+ # role that CloudFormation assumes to rollback the stack.
6367
+ # @return [String]
6368
+ #
6369
+ # @!attribute [rw] client_request_token
6370
+ # A unique identifier for this `RollbackStack` request.
6371
+ # @return [String]
6372
+ #
6373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStackInput AWS API Documentation
6374
+ #
6375
+ class RollbackStackInput < Struct.new(
6376
+ :stack_name,
6377
+ :role_arn,
6378
+ :client_request_token)
6379
+ SENSITIVE = []
6380
+ include Aws::Structure
6381
+ end
6382
+
6383
+ # @!attribute [rw] stack_id
6384
+ # Unique identifier of the stack.
6385
+ # @return [String]
6386
+ #
6387
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStackOutput AWS API Documentation
6388
+ #
6389
+ class RollbackStackOutput < Struct.new(
6390
+ :stack_id)
6391
+ SENSITIVE = []
6392
+ include Aws::Structure
6393
+ end
6394
+
6326
6395
  # A rollback trigger CloudFormation monitors during creation and
6327
6396
  # updating of stacks. If any of the alarms you specify goes to ALARM
6328
6397
  # state during the stack operation or within the specified monitoring
@@ -6942,12 +7011,13 @@ module Aws::CloudFormation
6942
7011
  # @return [String]
6943
7012
  #
6944
7013
  # @!attribute [rw] region
6945
- # The name of the Region that the stack instance is associated with.
7014
+ # The name of the Amazon Web Services Region that the stack instance
7015
+ # is associated with.
6946
7016
  # @return [String]
6947
7017
  #
6948
7018
  # @!attribute [rw] account
6949
- # \[Self-managed permissions\] The name of the account that the stack
6950
- # instance is associated with.
7019
+ # \[Self-managed permissions\] The name of the Amazon Web Services
7020
+ # account that the stack instance is associated with.
6951
7021
  # @return [String]
6952
7022
  #
6953
7023
  # @!attribute [rw] stack_id
@@ -7125,12 +7195,13 @@ module Aws::CloudFormation
7125
7195
  # @return [String]
7126
7196
  #
7127
7197
  # @!attribute [rw] region
7128
- # The name of the Region that the stack instance is associated with.
7198
+ # The name of the Amazon Web Services Region that the stack instance
7199
+ # is associated with.
7129
7200
  # @return [String]
7130
7201
  #
7131
7202
  # @!attribute [rw] account
7132
- # \[Self-managed permissions\] The name of the account that the stack
7133
- # instance is associated with.
7203
+ # \[Self-managed permissions\] The name of the Amazon Web Services
7204
+ # account that the stack instance is associated with.
7134
7205
  # @return [String]
7135
7206
  #
7136
7207
  # @!attribute [rw] stack_id
@@ -7671,10 +7742,10 @@ module Aws::CloudFormation
7671
7742
  end
7672
7743
 
7673
7744
  # A structure that contains information about a stack set. A stack set
7674
- # enables you to provision stacks into accounts and across Regions by
7675
- # using a single CloudFormation template. In the stack set, you specify
7676
- # the template to use, as well as any parameters and capabilities that
7677
- # the template requires.
7745
+ # enables you to provision stacks into Amazon Web Services accounts and
7746
+ # across Regions by using a single CloudFormation template. In the stack
7747
+ # set, you specify the template to use, as well as any parameters and
7748
+ # capabilities that the template requires.
7678
7749
  #
7679
7750
  # @!attribute [rw] stack_set_name
7680
7751
  # The name that's associated with the stack set.
@@ -7705,9 +7776,9 @@ module Aws::CloudFormation
7705
7776
  # @!attribute [rw] capabilities
7706
7777
  # The capabilities that are allowed in the stack set. Some stack set
7707
7778
  # templates might include resources that can affect permissions in
7708
- # your account—for example, by creating new Identity and Access
7709
- # Management (IAM) users. For more information, see [Acknowledging IAM
7710
- # Resources in CloudFormation Templates.][1]
7779
+ # your Amazon Web Services account—for example, by creating new
7780
+ # Identity and Access Management (IAM) users. For more information,
7781
+ # see [Acknowledging IAM Resources in CloudFormation Templates.][1]
7711
7782
  #
7712
7783
  #
7713
7784
  #
@@ -8193,12 +8264,13 @@ module Aws::CloudFormation
8193
8264
  # results for a given account in a given Region.
8194
8265
  #
8195
8266
  # @!attribute [rw] account
8196
- # \[Self-managed permissions\] The name of the account for this
8197
- # operation result.
8267
+ # \[Self-managed permissions\] The name of the Amazon Web Services
8268
+ # account for this operation result.
8198
8269
  # @return [String]
8199
8270
  #
8200
8271
  # @!attribute [rw] region
8201
- # The name of the Region for this operation result.
8272
+ # The name of the Amazon Web Services Region for this operation
8273
+ # result.
8202
8274
  # @return [String]
8203
8275
  #
8204
8276
  # @!attribute [rw] status
@@ -8554,9 +8626,10 @@ module Aws::CloudFormation
8554
8626
  # * If you are signed in to a delegated administrator account, specify
8555
8627
  # `DELEGATED_ADMIN`.
8556
8628
  #
8557
- # Your account must be registered as a delegated administrator in
8558
- # the management account. For more information, see [Register a
8559
- # delegated administrator][1] in the *CloudFormation User Guide*.
8629
+ # Your Amazon Web Services account must be registered as a delegated
8630
+ # administrator in the management account. For more information, see
8631
+ # [Register a delegated administrator][1] in the *CloudFormation
8632
+ # User Guide*.
8560
8633
  #
8561
8634
  #
8562
8635
  #
@@ -9205,6 +9278,7 @@ module Aws::CloudFormation
9205
9278
  # value: "TagValue", # required
9206
9279
  # },
9207
9280
  # ],
9281
+ # disable_rollback: false,
9208
9282
  # client_request_token: "ClientRequestToken",
9209
9283
  # }
9210
9284
  #
@@ -9291,10 +9365,10 @@ module Aws::CloudFormation
9291
9365
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
9292
9366
  #
9293
9367
  # Some stack templates might include resources that can affect
9294
- # permissions in your account; for example, by creating new Identity
9295
- # and Access Management (IAM) users. For those stacks, you must
9296
- # explicitly acknowledge this by specifying one of these
9297
- # capabilities.
9368
+ # permissions in your Amazon Web Services account; for example, by
9369
+ # creating new Identity and Access Management (IAM) users. For those
9370
+ # stacks, you must explicitly acknowledge this by specifying one of
9371
+ # these capabilities.
9298
9372
  #
9299
9373
  # The following IAM resources require you to specify either the
9300
9374
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -9451,6 +9525,13 @@ module Aws::CloudFormation
9451
9525
  # removes all associated tags.
9452
9526
  # @return [Array<Types::Tag>]
9453
9527
  #
9528
+ # @!attribute [rw] disable_rollback
9529
+ # Preserve the state of previously provisioned resources when an
9530
+ # operation fails.
9531
+ #
9532
+ # Default: `False`
9533
+ # @return [Boolean]
9534
+ #
9454
9535
  # @!attribute [rw] client_request_token
9455
9536
  # A unique identifier for this `UpdateStack` request. Specify this
9456
9537
  # token if you plan to retry requests so that CloudFormation knows
@@ -9491,6 +9572,7 @@ module Aws::CloudFormation
9491
9572
  :stack_policy_url,
9492
9573
  :notification_arns,
9493
9574
  :tags,
9575
+ :disable_rollback,
9494
9576
  :client_request_token)
9495
9577
  SENSITIVE = []
9496
9578
  include Aws::Structure
@@ -9534,10 +9616,10 @@ module Aws::CloudFormation
9534
9616
  # @return [String]
9535
9617
  #
9536
9618
  # @!attribute [rw] accounts
9537
- # \[Self-managed permissions\] The names of one or more accounts for
9538
- # which you want to update parameter values for stack instances. The
9539
- # overridden parameter values will be applied to all stack instances
9540
- # in the specified accounts and Regions.
9619
+ # \[Self-managed permissions\] The names of one or more Amazon Web
9620
+ # Services accounts for which you want to update parameter values for
9621
+ # stack instances. The overridden parameter values will be applied to
9622
+ # all stack instances in the specified accounts and Regions.
9541
9623
  #
9542
9624
  # You can specify `Accounts` or `DeploymentTargets`, but not both.
9543
9625
  # @return [Array<String>]
@@ -9635,9 +9717,10 @@ module Aws::CloudFormation
9635
9717
  # * If you are signed in to a delegated administrator account, specify
9636
9718
  # `DELEGATED_ADMIN`.
9637
9719
  #
9638
- # Your account must be registered as a delegated administrator in
9639
- # the management account. For more information, see [Register a
9640
- # delegated administrator][1] in the *CloudFormation User Guide*.
9720
+ # Your Amazon Web Services account must be registered as a delegated
9721
+ # administrator in the management account. For more information, see
9722
+ # [Register a delegated administrator][1] in the *CloudFormation
9723
+ # User Guide*.
9641
9724
  #
9642
9725
  #
9643
9726
  #
@@ -9795,10 +9878,10 @@ module Aws::CloudFormation
9795
9878
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
9796
9879
  #
9797
9880
  # Some stack templates might include resources that can affect
9798
- # permissions in your account; for example, by creating new Identity
9799
- # and Access Management (IAM) users. For those stacks sets, you must
9800
- # explicitly acknowledge this by specifying one of these
9801
- # capabilities.
9881
+ # permissions in your Amazon Web Services account; for example, by
9882
+ # creating new Identity and Access Management (IAM) users. For those
9883
+ # stacks sets, you must explicitly acknowledge this by specifying
9884
+ # one of these capabilities.
9802
9885
  #
9803
9886
  # The following IAM resources require you to specify either the
9804
9887
  # `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
@@ -10059,9 +10142,10 @@ module Aws::CloudFormation
10059
10142
  # * If you are signed in to a delegated administrator account, specify
10060
10143
  # `DELEGATED_ADMIN`.
10061
10144
  #
10062
- # Your account must be registered as a delegated administrator in
10063
- # the management account. For more information, see [Register a
10064
- # delegated administrator][1] in the *CloudFormation User Guide*.
10145
+ # Your Amazon Web Services account must be registered as a delegated
10146
+ # administrator in the management account. For more information, see
10147
+ # [Register a delegated administrator][1] in the *CloudFormation
10148
+ # User Guide*.
10065
10149
  #
10066
10150
  #
10067
10151
  #