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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +5 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-cloudformation/client.rb +185 -91
 - data/lib/aws-sdk-cloudformation/client_api.rb +21 -0
 - data/lib/aws-sdk-cloudformation/resource.rb +6 -5
 - data/lib/aws-sdk-cloudformation/stack.rb +14 -6
 - data/lib/aws-sdk-cloudformation/types.rb +185 -101
 - data/lib/aws-sdk-cloudformation.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: b025ee4315fb41a60eceb4cd6578e2c677aba67b0b60b05c7922c40636805975
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a353c99c194db166f2ae77b3caacd7e6d32b94eefe890cc024d9ed427ffa4f82
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: bcc52107f71d24280f51d322b401f9af27385c77941ea96de8a2c681bd19079b7005d9ef3a4cf6e02425611812388d8a86a4bf4109ccb63ed8ad431f252e5631
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 6b2348e6ead24b7ffb7b0117184e4681df13b98b0ff4f55d75ea6d8adbd1206ca51a20c91ac35aca3912d5f2e41dae72737ef5c674b1596f7f1a724d7eaea8a5
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,6 +1,11 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Unreleased Changes
         
     | 
| 
       2 
2 
     | 
    
         
             
            ------------------
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
      
 4 
     | 
    
         
            +
            1.56.0 (2021-08-30)
         
     | 
| 
      
 5 
     | 
    
         
            +
            ------------------
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            * Feature - AWS CloudFormation allows you to iteratively develop your applications when failures are encountered without rolling back successfully provisioned resources. By specifying stack failure options, you can troubleshoot resources in a CREATE_FAILED or UPDATE_FAILED status.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
       4 
9 
     | 
    
         
             
            1.55.0 (2021-07-30)
         
     | 
| 
       5 
10 
     | 
    
         
             
            ------------------
         
     | 
| 
       6 
11 
     | 
    
         | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            1. 
     | 
| 
      
 1 
     | 
    
         
            +
            1.56.0
         
     | 
| 
         @@ -733,9 +733,10 @@ module Aws::CloudFormation 
     | 
|
| 
       733 
733 
     | 
    
         
             
                #   * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
         
     | 
| 
       734 
734 
     | 
    
         
             
                #
         
     | 
| 
       735 
735 
     | 
    
         
             
                #     Some stack templates might include resources that can affect
         
     | 
| 
       736 
     | 
    
         
            -
                #     permissions in your account; for example, by 
     | 
| 
       737 
     | 
    
         
            -
                #     and Access Management (IAM) users. For those 
     | 
| 
       738 
     | 
    
         
            -
                #     explicitly acknowledge this by specifying one of 
     | 
| 
      
 736 
     | 
    
         
            +
                #     permissions in your Amazon Web Services account; for example, by
         
     | 
| 
      
 737 
     | 
    
         
            +
                #     creating new Identity and Access Management (IAM) users. For those
         
     | 
| 
      
 738 
     | 
    
         
            +
                #     stacks, you must explicitly acknowledge this by specifying one of
         
     | 
| 
      
 739 
     | 
    
         
            +
                #     these capabilities.
         
     | 
| 
       739 
740 
     | 
    
         
             
                #
         
     | 
| 
       740 
741 
     | 
    
         
             
                #     The following IAM resources require you to specify either the
         
     | 
| 
       741 
742 
     | 
    
         
             
                #     `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
         
     | 
| 
         @@ -980,8 +981,8 @@ module Aws::CloudFormation 
     | 
|
| 
       980 
981 
     | 
    
         
             
                #   the Region in which you are creating the stack.
         
     | 
| 
       981 
982 
     | 
    
         
             
                #
         
     | 
| 
       982 
983 
     | 
    
         
             
                #   <note markdown="1"> A stack name can contain only alphanumeric characters (case sensitive)
         
     | 
| 
       983 
     | 
    
         
            -
                #   and hyphens. It must start with an  
     | 
| 
       984 
     | 
    
         
            -
                #   longer than 128 characters.
         
     | 
| 
      
 984 
     | 
    
         
            +
                #   and hyphens. It must start with an alphabetical character and cannot
         
     | 
| 
      
 985 
     | 
    
         
            +
                #   be longer than 128 characters.
         
     | 
| 
       985 
986 
     | 
    
         
             
                #
         
     | 
| 
       986 
987 
     | 
    
         
             
                #    </note>
         
     | 
| 
       987 
988 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1048,9 +1049,10 @@ module Aws::CloudFormation 
     | 
|
| 
       1048 
1049 
     | 
    
         
             
                #   * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
         
     | 
| 
       1049 
1050 
     | 
    
         
             
                #
         
     | 
| 
       1050 
1051 
     | 
    
         
             
                #     Some stack templates might include resources that can affect
         
     | 
| 
       1051 
     | 
    
         
            -
                #     permissions in your account; for example, by 
     | 
| 
       1052 
     | 
    
         
            -
                #     and Access Management (IAM) users. For those 
     | 
| 
       1053 
     | 
    
         
            -
                #     explicitly acknowledge this by specifying one of 
     | 
| 
      
 1052 
     | 
    
         
            +
                #     permissions in your Amazon Web Services account; for example, by
         
     | 
| 
      
 1053 
     | 
    
         
            +
                #     creating new Identity and Access Management (IAM) users. For those
         
     | 
| 
      
 1054 
     | 
    
         
            +
                #     stacks, you must explicitly acknowledge this by specifying one of
         
     | 
| 
      
 1055 
     | 
    
         
            +
                #     these capabilities.
         
     | 
| 
       1054 
1056 
     | 
    
         
             
                #
         
     | 
| 
       1055 
1057 
     | 
    
         
             
                #     The following IAM resources require you to specify either the
         
     | 
| 
       1056 
1058 
     | 
    
         
             
                #     `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
         
     | 
| 
         @@ -1299,8 +1301,9 @@ module Aws::CloudFormation 
     | 
|
| 
       1299 
1301 
     | 
    
         
             
                #   instances from.
         
     | 
| 
       1300 
1302 
     | 
    
         
             
                #
         
     | 
| 
       1301 
1303 
     | 
    
         
             
                # @option params [Array<String>] :accounts
         
     | 
| 
       1302 
     | 
    
         
            -
                #   \[Self-managed permissions\] The names of one or more  
     | 
| 
       1303 
     | 
    
         
            -
                #   you want to create stack instances in the 
     | 
| 
      
 1304 
     | 
    
         
            +
                #   \[Self-managed permissions\] The names of one or more Amazon Web
         
     | 
| 
      
 1305 
     | 
    
         
            +
                #   Services accounts that you want to create stack instances in the
         
     | 
| 
      
 1306 
     | 
    
         
            +
                #   specified Region(s) for.
         
     | 
| 
       1304 
1307 
     | 
    
         
             
                #
         
     | 
| 
       1305 
1308 
     | 
    
         
             
                #   You can specify `Accounts` or `DeploymentTargets`, but not both.
         
     | 
| 
       1306 
1309 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1312,7 +1315,7 @@ module Aws::CloudFormation 
     | 
|
| 
       1312 
1315 
     | 
    
         
             
                #
         
     | 
| 
       1313 
1316 
     | 
    
         
             
                # @option params [required, Array<String>] :regions
         
     | 
| 
       1314 
1317 
     | 
    
         
             
                #   The names of one or more Regions where you want to create stack
         
     | 
| 
       1315 
     | 
    
         
            -
                #   instances using the specified accounts.
         
     | 
| 
      
 1318 
     | 
    
         
            +
                #   instances using the specified Amazon Web Services accounts.
         
     | 
| 
       1316 
1319 
     | 
    
         
             
                #
         
     | 
| 
       1317 
1320 
     | 
    
         
             
                # @option params [Array<Types::Parameter>] :parameter_overrides
         
     | 
| 
       1318 
1321 
     | 
    
         
             
                #   A list of stack set parameters whose values you want to override in
         
     | 
| 
         @@ -1382,9 +1385,10 @@ module Aws::CloudFormation 
     | 
|
| 
       1382 
1385 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       1383 
1386 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       1384 
1387 
     | 
    
         
             
                #
         
     | 
| 
       1385 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       1386 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       1387 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 1388 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 1389 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 1390 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 1391 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       1388 
1392 
     | 
    
         
             
                #
         
     | 
| 
       1389 
1393 
     | 
    
         
             
                #
         
     | 
| 
       1390 
1394 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1495,9 +1499,10 @@ module Aws::CloudFormation 
     | 
|
| 
       1495 
1499 
     | 
    
         
             
                #   * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
         
     | 
| 
       1496 
1500 
     | 
    
         
             
                #
         
     | 
| 
       1497 
1501 
     | 
    
         
             
                #     Some stack templates might include resources that can affect
         
     | 
| 
       1498 
     | 
    
         
            -
                #     permissions in your account; for example, by 
     | 
| 
       1499 
     | 
    
         
            -
                #     and Access Management (IAM) users. For those 
     | 
| 
       1500 
     | 
    
         
            -
                #     explicitly acknowledge this by specifying one 
     | 
| 
      
 1502 
     | 
    
         
            +
                #     permissions in your Amazon Web Services account; for example, by
         
     | 
| 
      
 1503 
     | 
    
         
            +
                #     creating new Identity and Access Management (IAM) users. For those
         
     | 
| 
      
 1504 
     | 
    
         
            +
                #     stack sets, you must explicitly acknowledge this by specifying one
         
     | 
| 
      
 1505 
     | 
    
         
            +
                #     of these capabilities.
         
     | 
| 
       1501 
1506 
     | 
    
         
             
                #
         
     | 
| 
       1502 
1507 
     | 
    
         
             
                #     The following IAM resources require you to specify either the
         
     | 
| 
       1503 
1508 
     | 
    
         
             
                #     `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
         
     | 
| 
         @@ -1635,9 +1640,9 @@ module Aws::CloudFormation 
     | 
|
| 
       1635 
1640 
     | 
    
         
             
                #   * To create a stack set with service-managed permissions while signed
         
     | 
| 
       1636 
1641 
     | 
    
         
             
                #     in to a delegated administrator account, specify `DELEGATED_ADMIN`.
         
     | 
| 
       1637 
1642 
     | 
    
         
             
                #
         
     | 
| 
       1638 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       1639 
     | 
    
         
            -
                #     management account. For more information, see [Register 
     | 
| 
       1640 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User Guide*.
         
     | 
| 
      
 1643 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 1644 
     | 
    
         
            +
                #     admin in the management account. For more information, see [Register
         
     | 
| 
      
 1645 
     | 
    
         
            +
                #     a delegated administrator][1] in the *CloudFormation User Guide*.
         
     | 
| 
       1641 
1646 
     | 
    
         
             
                #
         
     | 
| 
       1642 
1647 
     | 
    
         
             
                #   Stack sets with service-managed permissions are created in the
         
     | 
| 
       1643 
1648 
     | 
    
         
             
                #   management account, including stack sets that are created by delegated
         
     | 
| 
         @@ -1870,8 +1875,8 @@ module Aws::CloudFormation 
     | 
|
| 
       1870 
1875 
     | 
    
         
             
                #   instances for.
         
     | 
| 
       1871 
1876 
     | 
    
         
             
                #
         
     | 
| 
       1872 
1877 
     | 
    
         
             
                # @option params [Array<String>] :accounts
         
     | 
| 
       1873 
     | 
    
         
            -
                #   \[Self-managed permissions\] The names of the  
     | 
| 
       1874 
     | 
    
         
            -
                #   to delete stack instances for.
         
     | 
| 
      
 1878 
     | 
    
         
            +
                #   \[Self-managed permissions\] The names of the Amazon Web Services
         
     | 
| 
      
 1879 
     | 
    
         
            +
                #   accounts that you want to delete stack instances for.
         
     | 
| 
       1875 
1880 
     | 
    
         
             
                #
         
     | 
| 
       1876 
1881 
     | 
    
         
             
                #   You can specify `Accounts` or `DeploymentTargets`, but not both.
         
     | 
| 
       1877 
1882 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1929,9 +1934,10 @@ module Aws::CloudFormation 
     | 
|
| 
       1929 
1934 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       1930 
1935 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       1931 
1936 
     | 
    
         
             
                #
         
     | 
| 
       1932 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       1933 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       1934 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 1937 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 1938 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 1939 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 1940 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       1935 
1941 
     | 
    
         
             
                #
         
     | 
| 
       1936 
1942 
     | 
    
         
             
                #
         
     | 
| 
       1937 
1943 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1999,9 +2005,10 @@ module Aws::CloudFormation 
     | 
|
| 
       1999 
2005 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       2000 
2006 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       2001 
2007 
     | 
    
         
             
                #
         
     | 
| 
       2002 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       2003 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       2004 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 2008 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 2009 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 2010 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 2011 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       2005 
2012 
     | 
    
         
             
                #
         
     | 
| 
       2006 
2013 
     | 
    
         
             
                #
         
     | 
| 
       2007 
2014 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2415,7 +2422,7 @@ module Aws::CloudFormation 
     | 
|
| 
       2415 
2422 
     | 
    
         
             
                #   resp.stack_events[0].physical_resource_id #=> String
         
     | 
| 
       2416 
2423 
     | 
    
         
             
                #   resp.stack_events[0].resource_type #=> String
         
     | 
| 
       2417 
2424 
     | 
    
         
             
                #   resp.stack_events[0].timestamp #=> Time
         
     | 
| 
       2418 
     | 
    
         
            -
                #   resp.stack_events[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE"
         
     | 
| 
      
 2425 
     | 
    
         
            +
                #   resp.stack_events[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
         
     | 
| 
       2419 
2426 
     | 
    
         
             
                #   resp.stack_events[0].resource_status_reason #=> String
         
     | 
| 
       2420 
2427 
     | 
    
         
             
                #   resp.stack_events[0].resource_properties #=> String
         
     | 
| 
       2421 
2428 
     | 
    
         
             
                #   resp.stack_events[0].client_request_token #=> String
         
     | 
| 
         @@ -2431,7 +2438,7 @@ module Aws::CloudFormation 
     | 
|
| 
       2431 
2438 
     | 
    
         
             
                end
         
     | 
| 
       2432 
2439 
     | 
    
         | 
| 
       2433 
2440 
     | 
    
         
             
                # Returns the stack instance that's associated with the specified stack
         
     | 
| 
       2434 
     | 
    
         
            -
                # set, account, and Region.
         
     | 
| 
      
 2441 
     | 
    
         
            +
                # set, Amazon Web Services account, and Region.
         
     | 
| 
       2435 
2442 
     | 
    
         
             
                #
         
     | 
| 
       2436 
2443 
     | 
    
         
             
                # For a list of stack instances that are associated with a specific
         
     | 
| 
       2437 
2444 
     | 
    
         
             
                # stack set, use ListStackInstances.
         
     | 
| 
         @@ -2441,7 +2448,8 @@ module Aws::CloudFormation 
     | 
|
| 
       2441 
2448 
     | 
    
         
             
                #   stack instance information for.
         
     | 
| 
       2442 
2449 
     | 
    
         
             
                #
         
     | 
| 
       2443 
2450 
     | 
    
         
             
                # @option params [required, String] :stack_instance_account
         
     | 
| 
       2444 
     | 
    
         
            -
                #   The ID of an account that's associated with this 
     | 
| 
      
 2451 
     | 
    
         
            +
                #   The ID of an Amazon Web Services account that's associated with this
         
     | 
| 
      
 2452 
     | 
    
         
            +
                #   stack instance.
         
     | 
| 
       2445 
2453 
     | 
    
         
             
                #
         
     | 
| 
       2446 
2454 
     | 
    
         
             
                # @option params [required, String] :stack_instance_region
         
     | 
| 
       2447 
2455 
     | 
    
         
             
                #   The name of a Region that's associated with this stack instance.
         
     | 
| 
         @@ -2459,9 +2467,10 @@ module Aws::CloudFormation 
     | 
|
| 
       2459 
2467 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       2460 
2468 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       2461 
2469 
     | 
    
         
             
                #
         
     | 
| 
       2462 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       2463 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       2464 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 2470 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 2471 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 2472 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 2473 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       2465 
2474 
     | 
    
         
             
                #
         
     | 
| 
       2466 
2475 
     | 
    
         
             
                #
         
     | 
| 
       2467 
2476 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2548,7 +2557,7 @@ module Aws::CloudFormation 
     | 
|
| 
       2548 
2557 
     | 
    
         
             
                #   resp.stack_resource_detail.physical_resource_id #=> String
         
     | 
| 
       2549 
2558 
     | 
    
         
             
                #   resp.stack_resource_detail.resource_type #=> String
         
     | 
| 
       2550 
2559 
     | 
    
         
             
                #   resp.stack_resource_detail.last_updated_timestamp #=> Time
         
     | 
| 
       2551 
     | 
    
         
            -
                #   resp.stack_resource_detail.resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE"
         
     | 
| 
      
 2560 
     | 
    
         
            +
                #   resp.stack_resource_detail.resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
         
     | 
| 
       2552 
2561 
     | 
    
         
             
                #   resp.stack_resource_detail.resource_status_reason #=> String
         
     | 
| 
       2553 
2562 
     | 
    
         
             
                #   resp.stack_resource_detail.description #=> String
         
     | 
| 
       2554 
2563 
     | 
    
         
             
                #   resp.stack_resource_detail.metadata #=> String
         
     | 
| 
         @@ -2745,7 +2754,7 @@ module Aws::CloudFormation 
     | 
|
| 
       2745 
2754 
     | 
    
         
             
                #   resp.stack_resources[0].physical_resource_id #=> String
         
     | 
| 
       2746 
2755 
     | 
    
         
             
                #   resp.stack_resources[0].resource_type #=> String
         
     | 
| 
       2747 
2756 
     | 
    
         
             
                #   resp.stack_resources[0].timestamp #=> Time
         
     | 
| 
       2748 
     | 
    
         
            -
                #   resp.stack_resources[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE"
         
     | 
| 
      
 2757 
     | 
    
         
            +
                #   resp.stack_resources[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
         
     | 
| 
       2749 
2758 
     | 
    
         
             
                #   resp.stack_resources[0].resource_status_reason #=> String
         
     | 
| 
       2750 
2759 
     | 
    
         
             
                #   resp.stack_resources[0].description #=> String
         
     | 
| 
       2751 
2760 
     | 
    
         
             
                #   resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
         
     | 
| 
         @@ -2780,9 +2789,10 @@ module Aws::CloudFormation 
     | 
|
| 
       2780 
2789 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       2781 
2790 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       2782 
2791 
     | 
    
         
             
                #
         
     | 
| 
       2783 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       2784 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       2785 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 2792 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 2793 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 2794 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 2795 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       2786 
2796 
     | 
    
         
             
                #
         
     | 
| 
       2787 
2797 
     | 
    
         
             
                #
         
     | 
| 
       2788 
2798 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2864,9 +2874,10 @@ module Aws::CloudFormation 
     | 
|
| 
       2864 
2874 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       2865 
2875 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       2866 
2876 
     | 
    
         
             
                #
         
     | 
| 
       2867 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       2868 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       2869 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 2877 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 2878 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 2879 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 2880 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       2870 
2881 
     | 
    
         
             
                #
         
     | 
| 
       2871 
2882 
     | 
    
         
             
                #
         
     | 
| 
       2872 
2883 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2981,7 +2992,7 @@ module Aws::CloudFormation 
     | 
|
| 
       2981 
2992 
     | 
    
         
             
                #   resp.stacks[0].rollback_configuration.rollback_triggers[0].arn #=> String
         
     | 
| 
       2982 
2993 
     | 
    
         
             
                #   resp.stacks[0].rollback_configuration.rollback_triggers[0].type #=> String
         
     | 
| 
       2983 
2994 
     | 
    
         
             
                #   resp.stacks[0].rollback_configuration.monitoring_time_in_minutes #=> Integer
         
     | 
| 
       2984 
     | 
    
         
            -
                #   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_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"
         
     | 
| 
      
 2995 
     | 
    
         
            +
                #   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"
         
     | 
| 
       2985 
2996 
     | 
    
         
             
                #   resp.stacks[0].stack_status_reason #=> String
         
     | 
| 
       2986 
2997 
     | 
    
         
             
                #   resp.stacks[0].disable_rollback #=> Boolean
         
     | 
| 
       2987 
2998 
     | 
    
         
             
                #   resp.stacks[0].notification_arns #=> Array
         
     | 
| 
         @@ -3410,9 +3421,10 @@ module Aws::CloudFormation 
     | 
|
| 
       3410 
3421 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       3411 
3422 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       3412 
3423 
     | 
    
         
             
                #
         
     | 
| 
       3413 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       3414 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       3415 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 3424 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 3425 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 3426 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 3427 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       3416 
3428 
     | 
    
         
             
                #
         
     | 
| 
       3417 
3429 
     | 
    
         
             
                #
         
     | 
| 
       3418 
3430 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3546,6 +3558,12 @@ module Aws::CloudFormation 
     | 
|
| 
       3546 
3558 
     | 
    
         
             
                #   the same name. You might retry `ExecuteChangeSet` requests to ensure
         
     | 
| 
       3547 
3559 
     | 
    
         
             
                #   that CloudFormation successfully received them.
         
     | 
| 
       3548 
3560 
     | 
    
         
             
                #
         
     | 
| 
      
 3561 
     | 
    
         
            +
                # @option params [Boolean] :disable_rollback
         
     | 
| 
      
 3562 
     | 
    
         
            +
                #   Preserves the state of previously provisioned resources when an
         
     | 
| 
      
 3563 
     | 
    
         
            +
                #   operation fails.
         
     | 
| 
      
 3564 
     | 
    
         
            +
                #
         
     | 
| 
      
 3565 
     | 
    
         
            +
                #   Default: `True`
         
     | 
| 
      
 3566 
     | 
    
         
            +
                #
         
     | 
| 
       3549 
3567 
     | 
    
         
             
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         
     | 
| 
       3550 
3568 
     | 
    
         
             
                #
         
     | 
| 
       3551 
3569 
     | 
    
         
             
                # @example Request syntax with placeholder values
         
     | 
| 
         @@ -3554,6 +3572,7 @@ module Aws::CloudFormation 
     | 
|
| 
       3554 
3572 
     | 
    
         
             
                #     change_set_name: "ChangeSetNameOrId", # required
         
     | 
| 
       3555 
3573 
     | 
    
         
             
                #     stack_name: "StackNameOrId",
         
     | 
| 
       3556 
3574 
     | 
    
         
             
                #     client_request_token: "ClientRequestToken",
         
     | 
| 
      
 3575 
     | 
    
         
            +
                #     disable_rollback: false,
         
     | 
| 
       3557 
3576 
     | 
    
         
             
                #   })
         
     | 
| 
       3558 
3577 
     | 
    
         
             
                #
         
     | 
| 
       3559 
3578 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSet AWS API Documentation
         
     | 
| 
         @@ -3726,9 +3745,10 @@ module Aws::CloudFormation 
     | 
|
| 
       3726 
3745 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       3727 
3746 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       3728 
3747 
     | 
    
         
             
                #
         
     | 
| 
       3729 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       3730 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       3731 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 3748 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 3749 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 3750 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 3751 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       3732 
3752 
     | 
    
         
             
                #
         
     | 
| 
       3733 
3753 
     | 
    
         
             
                #
         
     | 
| 
       3734 
3754 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4021,8 +4041,8 @@ module Aws::CloudFormation 
     | 
|
| 
       4021 
4041 
     | 
    
         | 
| 
       4022 
4042 
     | 
    
         
             
                # Returns summary information about stack instances that are associated
         
     | 
| 
       4023 
4043 
     | 
    
         
             
                # with the specified stack set. You can filter for stack instances that
         
     | 
| 
       4024 
     | 
    
         
            -
                # are associated with a specific account name or 
     | 
| 
       4025 
     | 
    
         
            -
                # specific status.
         
     | 
| 
      
 4044 
     | 
    
         
            +
                # are associated with a specific Amazon Web Services account name or
         
     | 
| 
      
 4045 
     | 
    
         
            +
                # Region, or that have a specific status.
         
     | 
| 
       4026 
4046 
     | 
    
         
             
                #
         
     | 
| 
       4027 
4047 
     | 
    
         
             
                # @option params [required, String] :stack_set_name
         
     | 
| 
       4028 
4048 
     | 
    
         
             
                #   The name or unique ID of the stack set that you want to list stack
         
     | 
| 
         @@ -4046,7 +4066,8 @@ module Aws::CloudFormation 
     | 
|
| 
       4046 
4066 
     | 
    
         
             
                #   The status that stack instances are filtered by.
         
     | 
| 
       4047 
4067 
     | 
    
         
             
                #
         
     | 
| 
       4048 
4068 
     | 
    
         
             
                # @option params [String] :stack_instance_account
         
     | 
| 
       4049 
     | 
    
         
            -
                #   The name of the account that you want to list 
     | 
| 
      
 4069 
     | 
    
         
            +
                #   The name of the Amazon Web Services account that you want to list
         
     | 
| 
      
 4070 
     | 
    
         
            +
                #   stack instances for.
         
     | 
| 
       4050 
4071 
     | 
    
         
             
                #
         
     | 
| 
       4051 
4072 
     | 
    
         
             
                # @option params [String] :stack_instance_region
         
     | 
| 
       4052 
4073 
     | 
    
         
             
                #   The name of the Region where you want to list stack instances.
         
     | 
| 
         @@ -4064,9 +4085,10 @@ module Aws::CloudFormation 
     | 
|
| 
       4064 
4085 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       4065 
4086 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       4066 
4087 
     | 
    
         
             
                #
         
     | 
| 
       4067 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       4068 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       4069 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 4088 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 4089 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 4090 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 4091 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       4070 
4092 
     | 
    
         
             
                #
         
     | 
| 
       4071 
4093 
     | 
    
         
             
                #
         
     | 
| 
       4072 
4094 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4161,7 +4183,7 @@ module Aws::CloudFormation 
     | 
|
| 
       4161 
4183 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].physical_resource_id #=> String
         
     | 
| 
       4162 
4184 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].resource_type #=> String
         
     | 
| 
       4163 
4185 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
         
     | 
| 
       4164 
     | 
    
         
            -
                #   resp.stack_resource_summaries[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE"
         
     | 
| 
      
 4186 
     | 
    
         
            +
                #   resp.stack_resource_summaries[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
         
     | 
| 
       4165 
4187 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].resource_status_reason #=> String
         
     | 
| 
       4166 
4188 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
         
     | 
| 
       4167 
4189 
     | 
    
         
             
                #   resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
         
     | 
| 
         @@ -4216,9 +4238,10 @@ module Aws::CloudFormation 
     | 
|
| 
       4216 
4238 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       4217 
4239 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       4218 
4240 
     | 
    
         
             
                #
         
     | 
| 
       4219 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       4220 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       4221 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 4241 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 4242 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 4243 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 4244 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       4222 
4245 
     | 
    
         
             
                #
         
     | 
| 
       4223 
4246 
     | 
    
         
             
                #
         
     | 
| 
       4224 
4247 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4296,9 +4319,10 @@ module Aws::CloudFormation 
     | 
|
| 
       4296 
4319 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       4297 
4320 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       4298 
4321 
     | 
    
         
             
                #
         
     | 
| 
       4299 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       4300 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       4301 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 4322 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 4323 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 4324 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 4325 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       4302 
4326 
     | 
    
         
             
                #
         
     | 
| 
       4303 
4327 
     | 
    
         
             
                #
         
     | 
| 
       4304 
4328 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4343,8 +4367,9 @@ module Aws::CloudFormation 
     | 
|
| 
       4343 
4367 
     | 
    
         
             
                # the user.
         
     | 
| 
       4344 
4368 
     | 
    
         
             
                #
         
     | 
| 
       4345 
4369 
     | 
    
         
             
                # * \[Self-managed permissions\] If you set the `CallAs` parameter to
         
     | 
| 
       4346 
     | 
    
         
            -
                #   `SELF` while signed in to your  
     | 
| 
       4347 
     | 
    
         
            -
                #   self-managed stack sets in your  
     | 
| 
      
 4370 
     | 
    
         
            +
                #   `SELF` while signed in to your Amazon Web Services account,
         
     | 
| 
      
 4371 
     | 
    
         
            +
                #   `ListStackSets` returns all self-managed stack sets in your Amazon
         
     | 
| 
      
 4372 
     | 
    
         
            +
                #   Web Services account.
         
     | 
| 
       4348 
4373 
     | 
    
         
             
                #
         
     | 
| 
       4349 
4374 
     | 
    
         
             
                # * \[Service-managed permissions\] If you set the `CallAs` parameter to
         
     | 
| 
       4350 
4375 
     | 
    
         
             
                #   `SELF` while signed in to the organization's management account,
         
     | 
| 
         @@ -4386,9 +4411,10 @@ module Aws::CloudFormation 
     | 
|
| 
       4386 
4411 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       4387 
4412 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       4388 
4413 
     | 
    
         
             
                #
         
     | 
| 
       4389 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       4390 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       4391 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 4414 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 4415 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 4416 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 4417 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       4392 
4418 
     | 
    
         
             
                #
         
     | 
| 
       4393 
4419 
     | 
    
         
             
                #
         
     | 
| 
       4394 
4420 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4461,7 +4487,7 @@ module Aws::CloudFormation 
     | 
|
| 
       4461 
4487 
     | 
    
         
             
                #
         
     | 
| 
       4462 
4488 
     | 
    
         
             
                #   resp = client.list_stacks({
         
     | 
| 
       4463 
4489 
     | 
    
         
             
                #     next_token: "NextToken",
         
     | 
| 
       4464 
     | 
    
         
            -
                #     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
         
     | 
| 
      
 4490 
     | 
    
         
            +
                #     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
         
     | 
| 
       4465 
4491 
     | 
    
         
             
                #   })
         
     | 
| 
       4466 
4492 
     | 
    
         
             
                #
         
     | 
| 
       4467 
4493 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -4473,7 +4499,7 @@ module Aws::CloudFormation 
     | 
|
| 
       4473 
4499 
     | 
    
         
             
                #   resp.stack_summaries[0].creation_time #=> Time
         
     | 
| 
       4474 
4500 
     | 
    
         
             
                #   resp.stack_summaries[0].last_updated_time #=> Time
         
     | 
| 
       4475 
4501 
     | 
    
         
             
                #   resp.stack_summaries[0].deletion_time #=> Time
         
     | 
| 
       4476 
     | 
    
         
            -
                #   resp.stack_summaries[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_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"
         
     | 
| 
      
 4502 
     | 
    
         
            +
                #   resp.stack_summaries[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"
         
     | 
| 
       4477 
4503 
     | 
    
         
             
                #   resp.stack_summaries[0].stack_status_reason #=> String
         
     | 
| 
       4478 
4504 
     | 
    
         
             
                #   resp.stack_summaries[0].parent_id #=> String
         
     | 
| 
       4479 
4505 
     | 
    
         
             
                #   resp.stack_summaries[0].root_id #=> String
         
     | 
| 
         @@ -4941,7 +4967,7 @@ module Aws::CloudFormation 
     | 
|
| 
       4941 
4967 
     | 
    
         
             
                # Registers your account as a publisher of public extensions in the
         
     | 
| 
       4942 
4968 
     | 
    
         
             
                # CloudFormation registry. Public extensions are available for use by
         
     | 
| 
       4943 
4969 
     | 
    
         
             
                # all CloudFormation users. This publisher ID applies to your account in
         
     | 
| 
       4944 
     | 
    
         
            -
                # all Regions.
         
     | 
| 
      
 4970 
     | 
    
         
            +
                # all Amazon Web Services Regions.
         
     | 
| 
       4945 
4971 
     | 
    
         
             
                #
         
     | 
| 
       4946 
4972 
     | 
    
         
             
                # For information on requirements for registering as a public extension
         
     | 
| 
       4947 
4973 
     | 
    
         
             
                # publisher, see [Registering your account to publish CloudFormation
         
     | 
| 
         @@ -5003,7 +5029,7 @@ module Aws::CloudFormation 
     | 
|
| 
       5003 
5029 
     | 
    
         | 
| 
       5004 
5030 
     | 
    
         
             
                # Registers an extension with the CloudFormation service. Registering an
         
     | 
| 
       5005 
5031 
     | 
    
         
             
                # extension makes it available for use in CloudFormation templates in
         
     | 
| 
       5006 
     | 
    
         
            -
                # your account, and includes:
         
     | 
| 
      
 5032 
     | 
    
         
            +
                # your Amazon Web Services account, and includes:
         
     | 
| 
       5007 
5033 
     | 
    
         
             
                #
         
     | 
| 
       5008 
5034 
     | 
    
         
             
                # * Validating the extension schema
         
     | 
| 
       5009 
5035 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5153,6 +5179,62 @@ module Aws::CloudFormation 
     | 
|
| 
       5153 
5179 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       5154 
5180 
     | 
    
         
             
                end
         
     | 
| 
       5155 
5181 
     | 
    
         | 
| 
      
 5182 
     | 
    
         
            +
                # When specifying `RollbackStack`, you preserve the state of previously
         
     | 
| 
      
 5183 
     | 
    
         
            +
                # provisioned resources when an operation fails. You can check the
         
     | 
| 
      
 5184 
     | 
    
         
            +
                # status of the stack through the DescribeStacks API.
         
     | 
| 
      
 5185 
     | 
    
         
            +
                #
         
     | 
| 
      
 5186 
     | 
    
         
            +
                # Rolls back the specified stack to the last known stable state from
         
     | 
| 
      
 5187 
     | 
    
         
            +
                # `CREATE_FAILED` or `UPDATE_FAILED` stack statuses.
         
     | 
| 
      
 5188 
     | 
    
         
            +
                #
         
     | 
| 
      
 5189 
     | 
    
         
            +
                # This operation will delete a stack if it doesn't contain a last known
         
     | 
| 
      
 5190 
     | 
    
         
            +
                # stable state. A last known stable state includes any status in a
         
     | 
| 
      
 5191 
     | 
    
         
            +
                # `*_COMPLETE`. This includes the following stack statuses.
         
     | 
| 
      
 5192 
     | 
    
         
            +
                #
         
     | 
| 
      
 5193 
     | 
    
         
            +
                # * `CREATE_COMPLETE`
         
     | 
| 
      
 5194 
     | 
    
         
            +
                #
         
     | 
| 
      
 5195 
     | 
    
         
            +
                # * `UPDATE_COMPLETE`
         
     | 
| 
      
 5196 
     | 
    
         
            +
                #
         
     | 
| 
      
 5197 
     | 
    
         
            +
                # * `UPDATE_ROLLBACK_COMPLETE`
         
     | 
| 
      
 5198 
     | 
    
         
            +
                #
         
     | 
| 
      
 5199 
     | 
    
         
            +
                # * `IMPORT_COMPLETE`
         
     | 
| 
      
 5200 
     | 
    
         
            +
                #
         
     | 
| 
      
 5201 
     | 
    
         
            +
                # * `IMPORT_ROLLBACK_COMPLETE`
         
     | 
| 
      
 5202 
     | 
    
         
            +
                #
         
     | 
| 
      
 5203 
     | 
    
         
            +
                # @option params [required, String] :stack_name
         
     | 
| 
      
 5204 
     | 
    
         
            +
                #   The name that is associated with the stack.
         
     | 
| 
      
 5205 
     | 
    
         
            +
                #
         
     | 
| 
      
 5206 
     | 
    
         
            +
                # @option params [String] :role_arn
         
     | 
| 
      
 5207 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of an Identity and Access Management
         
     | 
| 
      
 5208 
     | 
    
         
            +
                #   role that CloudFormation assumes to rollback the stack.
         
     | 
| 
      
 5209 
     | 
    
         
            +
                #
         
     | 
| 
      
 5210 
     | 
    
         
            +
                # @option params [String] :client_request_token
         
     | 
| 
      
 5211 
     | 
    
         
            +
                #   A unique identifier for this `RollbackStack` request.
         
     | 
| 
      
 5212 
     | 
    
         
            +
                #
         
     | 
| 
      
 5213 
     | 
    
         
            +
                # @return [Types::RollbackStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
      
 5214 
     | 
    
         
            +
                #
         
     | 
| 
      
 5215 
     | 
    
         
            +
                #   * {Types::RollbackStackOutput#stack_id #stack_id} => String
         
     | 
| 
      
 5216 
     | 
    
         
            +
                #
         
     | 
| 
      
 5217 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 5218 
     | 
    
         
            +
                #
         
     | 
| 
      
 5219 
     | 
    
         
            +
                #   resp = client.rollback_stack({
         
     | 
| 
      
 5220 
     | 
    
         
            +
                #     stack_name: "StackNameOrId", # required
         
     | 
| 
      
 5221 
     | 
    
         
            +
                #     role_arn: "RoleARN",
         
     | 
| 
      
 5222 
     | 
    
         
            +
                #     client_request_token: "ClientRequestToken",
         
     | 
| 
      
 5223 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 5224 
     | 
    
         
            +
                #
         
     | 
| 
      
 5225 
     | 
    
         
            +
                # @example Response structure
         
     | 
| 
      
 5226 
     | 
    
         
            +
                #
         
     | 
| 
      
 5227 
     | 
    
         
            +
                #   resp.stack_id #=> String
         
     | 
| 
      
 5228 
     | 
    
         
            +
                #
         
     | 
| 
      
 5229 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStack AWS API Documentation
         
     | 
| 
      
 5230 
     | 
    
         
            +
                #
         
     | 
| 
      
 5231 
     | 
    
         
            +
                # @overload rollback_stack(params = {})
         
     | 
| 
      
 5232 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 5233 
     | 
    
         
            +
                def rollback_stack(params = {}, options = {})
         
     | 
| 
      
 5234 
     | 
    
         
            +
                  req = build_request(:rollback_stack, params)
         
     | 
| 
      
 5235 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 5236 
     | 
    
         
            +
                end
         
     | 
| 
      
 5237 
     | 
    
         
            +
             
     | 
| 
       5156 
5238 
     | 
    
         
             
                # Sets a stack policy for a specified stack.
         
     | 
| 
       5157 
5239 
     | 
    
         
             
                #
         
     | 
| 
       5158 
5240 
     | 
    
         
             
                # @option params [required, String] :stack_name
         
     | 
| 
         @@ -5403,9 +5485,10 @@ module Aws::CloudFormation 
     | 
|
| 
       5403 
5485 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       5404 
5486 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       5405 
5487 
     | 
    
         
             
                #
         
     | 
| 
       5406 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       5407 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       5408 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 5488 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 5489 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 5490 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 5491 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       5409 
5492 
     | 
    
         
             
                #
         
     | 
| 
       5410 
5493 
     | 
    
         
             
                #
         
     | 
| 
       5411 
5494 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5630,9 +5713,10 @@ module Aws::CloudFormation 
     | 
|
| 
       5630 
5713 
     | 
    
         
             
                #   * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
         
     | 
| 
       5631 
5714 
     | 
    
         
             
                #
         
     | 
| 
       5632 
5715 
     | 
    
         
             
                #     Some stack templates might include resources that can affect
         
     | 
| 
       5633 
     | 
    
         
            -
                #     permissions in your account; for example, by 
     | 
| 
       5634 
     | 
    
         
            -
                #     and Access Management (IAM) users. For those 
     | 
| 
       5635 
     | 
    
         
            -
                #     explicitly acknowledge this by specifying one of 
     | 
| 
      
 5716 
     | 
    
         
            +
                #     permissions in your Amazon Web Services account; for example, by
         
     | 
| 
      
 5717 
     | 
    
         
            +
                #     creating new Identity and Access Management (IAM) users. For those
         
     | 
| 
      
 5718 
     | 
    
         
            +
                #     stacks, you must explicitly acknowledge this by specifying one of
         
     | 
| 
      
 5719 
     | 
    
         
            +
                #     these capabilities.
         
     | 
| 
       5636 
5720 
     | 
    
         
             
                #
         
     | 
| 
       5637 
5721 
     | 
    
         
             
                #     The following IAM resources require you to specify either the
         
     | 
| 
       5638 
5722 
     | 
    
         
             
                #     `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
         
     | 
| 
         @@ -5779,6 +5863,12 @@ module Aws::CloudFormation 
     | 
|
| 
       5779 
5863 
     | 
    
         
             
                #   the stack's tags. If you specify an empty value, CloudFormation
         
     | 
| 
       5780 
5864 
     | 
    
         
             
                #   removes all associated tags.
         
     | 
| 
       5781 
5865 
     | 
    
         
             
                #
         
     | 
| 
      
 5866 
     | 
    
         
            +
                # @option params [Boolean] :disable_rollback
         
     | 
| 
      
 5867 
     | 
    
         
            +
                #   Preserve the state of previously provisioned resources when an
         
     | 
| 
      
 5868 
     | 
    
         
            +
                #   operation fails.
         
     | 
| 
      
 5869 
     | 
    
         
            +
                #
         
     | 
| 
      
 5870 
     | 
    
         
            +
                #   Default: `False`
         
     | 
| 
      
 5871 
     | 
    
         
            +
                #
         
     | 
| 
       5782 
5872 
     | 
    
         
             
                # @option params [String] :client_request_token
         
     | 
| 
       5783 
5873 
     | 
    
         
             
                #   A unique identifier for this `UpdateStack` request. Specify this token
         
     | 
| 
       5784 
5874 
     | 
    
         
             
                #   if you plan to retry requests so that CloudFormation knows that
         
     | 
| 
         @@ -5842,6 +5932,7 @@ module Aws::CloudFormation 
     | 
|
| 
       5842 
5932 
     | 
    
         
             
                #         value: "TagValue", # required
         
     | 
| 
       5843 
5933 
     | 
    
         
             
                #       },
         
     | 
| 
       5844 
5934 
     | 
    
         
             
                #     ],
         
     | 
| 
      
 5935 
     | 
    
         
            +
                #     disable_rollback: false,
         
     | 
| 
       5845 
5936 
     | 
    
         
             
                #     client_request_token: "ClientRequestToken",
         
     | 
| 
       5846 
5937 
     | 
    
         
             
                #   })
         
     | 
| 
       5847 
5938 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5889,10 +5980,10 @@ module Aws::CloudFormation 
     | 
|
| 
       5889 
5980 
     | 
    
         
             
                #   instances.
         
     | 
| 
       5890 
5981 
     | 
    
         
             
                #
         
     | 
| 
       5891 
5982 
     | 
    
         
             
                # @option params [Array<String>] :accounts
         
     | 
| 
       5892 
     | 
    
         
            -
                #   \[Self-managed permissions\] The names of one or more  
     | 
| 
       5893 
     | 
    
         
            -
                #   which you want to update parameter values for 
     | 
| 
       5894 
     | 
    
         
            -
                #   overridden parameter values will be applied to 
     | 
| 
       5895 
     | 
    
         
            -
                #   the specified accounts and Regions.
         
     | 
| 
      
 5983 
     | 
    
         
            +
                #   \[Self-managed permissions\] The names of one or more Amazon Web
         
     | 
| 
      
 5984 
     | 
    
         
            +
                #   Services accounts for which you want to update parameter values for
         
     | 
| 
      
 5985 
     | 
    
         
            +
                #   stack instances. The overridden parameter values will be applied to
         
     | 
| 
      
 5986 
     | 
    
         
            +
                #   all stack instances in the specified accounts and Regions.
         
     | 
| 
       5896 
5987 
     | 
    
         
             
                #
         
     | 
| 
       5897 
5988 
     | 
    
         
             
                #   You can specify `Accounts` or `DeploymentTargets`, but not both.
         
     | 
| 
       5898 
5989 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5982,9 +6073,10 @@ module Aws::CloudFormation 
     | 
|
| 
       5982 
6073 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       5983 
6074 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       5984 
6075 
     | 
    
         
             
                #
         
     | 
| 
       5985 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       5986 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       5987 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 6076 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 6077 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 6078 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 6079 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       5988 
6080 
     | 
    
         
             
                #
         
     | 
| 
       5989 
6081 
     | 
    
         
             
                #
         
     | 
| 
       5990 
6082 
     | 
    
         
             
                #
         
     | 
| 
         @@ -6097,9 +6189,10 @@ module Aws::CloudFormation 
     | 
|
| 
       6097 
6189 
     | 
    
         
             
                #   * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
         
     | 
| 
       6098 
6190 
     | 
    
         
             
                #
         
     | 
| 
       6099 
6191 
     | 
    
         
             
                #     Some stack templates might include resources that can affect
         
     | 
| 
       6100 
     | 
    
         
            -
                #     permissions in your account; for example, by 
     | 
| 
       6101 
     | 
    
         
            -
                #     and Access Management (IAM) users. For those 
     | 
| 
       6102 
     | 
    
         
            -
                #     explicitly acknowledge this by specifying one 
     | 
| 
      
 6192 
     | 
    
         
            +
                #     permissions in your Amazon Web Services account; for example, by
         
     | 
| 
      
 6193 
     | 
    
         
            +
                #     creating new Identity and Access Management (IAM) users. For those
         
     | 
| 
      
 6194 
     | 
    
         
            +
                #     stacks sets, you must explicitly acknowledge this by specifying one
         
     | 
| 
      
 6195 
     | 
    
         
            +
                #     of these capabilities.
         
     | 
| 
       6103 
6196 
     | 
    
         
             
                #
         
     | 
| 
       6104 
6197 
     | 
    
         
             
                #     The following IAM resources require you to specify either the
         
     | 
| 
       6105 
6198 
     | 
    
         
             
                #     `CAPABILITY_IAM` or `CAPABILITY_NAMED_IAM` capability.
         
     | 
| 
         @@ -6344,9 +6437,10 @@ module Aws::CloudFormation 
     | 
|
| 
       6344 
6437 
     | 
    
         
             
                #   * If you are signed in to a delegated administrator account, specify
         
     | 
| 
       6345 
6438 
     | 
    
         
             
                #     `DELEGATED_ADMIN`.
         
     | 
| 
       6346 
6439 
     | 
    
         
             
                #
         
     | 
| 
       6347 
     | 
    
         
            -
                #     Your account must be registered as a delegated 
     | 
| 
       6348 
     | 
    
         
            -
                #     management account. For more information, see 
     | 
| 
       6349 
     | 
    
         
            -
                #     administrator][1] in the *CloudFormation User 
     | 
| 
      
 6440 
     | 
    
         
            +
                #     Your Amazon Web Services account must be registered as a delegated
         
     | 
| 
      
 6441 
     | 
    
         
            +
                #     administrator in the management account. For more information, see
         
     | 
| 
      
 6442 
     | 
    
         
            +
                #     [Register a delegated administrator][1] in the *CloudFormation User
         
     | 
| 
      
 6443 
     | 
    
         
            +
                #     Guide*.
         
     | 
| 
       6350 
6444 
     | 
    
         
             
                #
         
     | 
| 
       6351 
6445 
     | 
    
         
             
                #
         
     | 
| 
       6352 
6446 
     | 
    
         
             
                #
         
     | 
| 
         @@ -6544,7 +6638,7 @@ module Aws::CloudFormation 
     | 
|
| 
       6544 
6638 
     | 
    
         
             
                    params: params,
         
     | 
| 
       6545 
6639 
     | 
    
         
             
                    config: config)
         
     | 
| 
       6546 
6640 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-cloudformation'
         
     | 
| 
       6547 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 6641 
     | 
    
         
            +
                  context[:gem_version] = '1.56.0'
         
     | 
| 
       6548 
6642 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       6549 
6643 
     | 
    
         
             
                end
         
     | 
| 
       6550 
6644 
     | 
    
         |