@aws-sdk/client-cloudformation 3.535.0 → 3.537.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.
Files changed (38) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +91 -2
  3. package/dist-es/CloudFormation.js +2 -0
  4. package/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +0 -4
  7. package/dist-es/models/models_1.js +4 -0
  8. package/dist-es/protocols/Aws_query.js +73 -0
  9. package/dist-types/CloudFormation.d.ts +7 -0
  10. package/dist-types/CloudFormationClient.d.ts +3 -2
  11. package/dist-types/commands/ActivateTypeCommand.d.ts +3 -3
  12. package/dist-types/commands/CreateStackInstancesCommand.d.ts +2 -2
  13. package/dist-types/commands/DeregisterTypeCommand.d.ts +1 -3
  14. package/dist-types/commands/DescribePublisherCommand.d.ts +1 -3
  15. package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -1
  16. package/dist-types/commands/DetectStackSetDriftCommand.d.ts +2 -2
  17. package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +73 -0
  18. package/dist-types/commands/PublishTypeCommand.d.ts +1 -3
  19. package/dist-types/commands/RegisterTypeCommand.d.ts +3 -7
  20. package/dist-types/commands/SetTypeConfigurationCommand.d.ts +2 -4
  21. package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +2 -1
  22. package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
  23. package/dist-types/commands/TestTypeCommand.d.ts +2 -6
  24. package/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -9
  25. package/dist-types/commands/index.d.ts +1 -0
  26. package/dist-types/models/models_0.d.ts +257 -347
  27. package/dist-types/models/models_1.d.ts +99 -89
  28. package/dist-types/protocols/Aws_query.d.ts +9 -0
  29. package/dist-types/ts3.4/CloudFormation.d.ts +23 -0
  30. package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
  31. package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +39 -0
  32. package/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +2 -4
  33. package/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +14 -13
  36. package/dist-types/ts3.4/models/models_1.d.ts +13 -0
  37. package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
  38. package/package.json +1 -1
@@ -353,7 +353,7 @@ export interface AutoDeployment {
353
353
  /**
354
354
  * <p>If set to <code>true</code>, stack resources are retained when an account is removed from a target organization
355
355
  * or OU. If set to <code>false</code>, stack resources are deleted. Specify only if <code>Enabled</code> is set to
356
- * <code>True</code>.</p>
356
+ * <code>True</code>.</p>
357
357
  * @public
358
358
  */
359
359
  RetainStacksOnAccountRemoval?: boolean;
@@ -365,12 +365,9 @@ export interface AutoDeployment {
365
365
  export interface TypeConfigurationIdentifier {
366
366
  /**
367
367
  * <p>The Amazon Resource Name (ARN) for the extension, in this account and Region.</p>
368
- * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
369
- * <code>ActivateType</code>
370
- * </a> API operation in
371
- * this account and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
372
- * <code>RegisterType</code>
373
- * </a> API operation in this account and Region.</p>
368
+ * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a> API operation in this account
369
+ * and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a> API operation in this account
370
+ * and Region.</p>
374
371
  * @public
375
372
  */
376
373
  TypeArn?: string;
@@ -458,12 +455,9 @@ export interface TypeConfigurationDetails {
458
455
  LastUpdated?: Date;
459
456
  /**
460
457
  * <p>The Amazon Resource Name (ARN) for the extension, in this account and Region.</p>
461
- * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
462
- * <code>ActivateType</code>
463
- * </a> API operation in
464
- * this account and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
465
- * <code>RegisterType</code>
466
- * </a> API operation in this account and Region.</p>
458
+ * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a> API operation in this account
459
+ * and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a> API operation in this account
460
+ * and Region.</p>
467
461
  * @public
468
462
  */
469
463
  TypeArn?: string;
@@ -1372,11 +1366,7 @@ export interface RollbackTrigger {
1372
1366
  */
1373
1367
  Arn: string | undefined;
1374
1368
  /**
1375
- * <p>The resource type of the rollback trigger. Specify either <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html">
1376
- * <code>AWS::CloudWatch::Alarm</code>
1377
- * </a> or <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html">
1378
- * <code>AWS::CloudWatch::CompositeAlarm</code>
1379
- * </a> resource types.</p>
1369
+ * <p>The resource type of the rollback trigger. Specify either <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html">AWS::CloudWatch::Alarm</a> or <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html">AWS::CloudWatch::CompositeAlarm</a> resource types.</p>
1380
1370
  * @public
1381
1371
  */
1382
1372
  Type: string | undefined;
@@ -1420,9 +1410,7 @@ export interface RollbackConfiguration {
1420
1410
  * <p>The default is 0 minutes.</p>
1421
1411
  * <p>If you specify a monitoring period but don't specify any rollback triggers, CloudFormation still waits the specified
1422
1412
  * period of time before cleaning up old resources after update operations. You can use this monitoring period to
1423
- * perform any manual stack validation desired, and manually cancel the stack creation or update (using <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html">
1424
- * <code>CancelUpdateStack</code>
1425
- * </a>, for example) as necessary.</p>
1413
+ * perform any manual stack validation desired, and manually cancel the stack creation or update (using <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html">CancelUpdateStack</a>, for example) as necessary.</p>
1426
1414
  * <p>If you specify 0 for this parameter, CloudFormation still monitors the specified rollback triggers during stack
1427
1415
  * creation and update operations. Then, for update operations, it begins disposing of old resources immediately once
1428
1416
  * the operation completes.</p>
@@ -1523,50 +1511,41 @@ export interface CreateChangeSetInput {
1523
1511
  * <li>
1524
1512
  * <p>
1525
1513
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
1526
- * <code>AWS::IAM::AccessKey</code>
1527
- * </a>
1514
+ * AWS::IAM::AccessKey</a>
1528
1515
  * </p>
1529
1516
  * </li>
1530
1517
  * <li>
1531
1518
  * <p>
1532
1519
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
1533
- * <code>AWS::IAM::Group</code>
1534
- * </a>
1520
+ * AWS::IAM::Group</a>
1535
1521
  * </p>
1536
1522
  * </li>
1537
1523
  * <li>
1538
1524
  * <p>
1539
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
1540
- * <code>AWS::IAM::InstanceProfile</code>
1541
- * </a>
1525
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">AWS::IAM::InstanceProfile</a>
1542
1526
  * </p>
1543
1527
  * </li>
1544
1528
  * <li>
1545
1529
  * <p>
1546
1530
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
1547
- * <code>AWS::IAM::Policy</code>
1548
- * </a>
1531
+ * AWS::IAM::Policy</a>
1549
1532
  * </p>
1550
1533
  * </li>
1551
1534
  * <li>
1552
1535
  * <p>
1553
1536
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
1554
- * <code>AWS::IAM::Role</code>
1555
- * </a>
1537
+ * AWS::IAM::Role</a>
1556
1538
  * </p>
1557
1539
  * </li>
1558
1540
  * <li>
1559
1541
  * <p>
1560
1542
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
1561
- * <code>AWS::IAM::User</code>
1562
- * </a>
1543
+ * AWS::IAM::User</a>
1563
1544
  * </p>
1564
1545
  * </li>
1565
1546
  * <li>
1566
1547
  * <p>
1567
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
1568
- * <code>AWS::IAM::UserToGroupAddition</code>
1569
- * </a>
1548
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">AWS::IAM::UserToGroupAddition</a>
1570
1549
  * </p>
1571
1550
  * </li>
1572
1551
  * </ul>
@@ -1582,11 +1561,7 @@ export interface CreateChangeSetInput {
1582
1561
  * users typically create a change set from the processed template, so that they can review the changes resulting from
1583
1562
  * the macros before actually creating the stack. If your stack template contains one or more macros, and you choose
1584
1563
  * to create a stack directly from the processed template, without first reviewing the resulting changes in a change
1585
- * set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">
1586
- * <code>AWS::Include</code>
1587
- * </a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">
1588
- * <code>AWS::Serverless</code>
1589
- * </a> transforms, which
1564
+ * set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which
1590
1565
  * are macros hosted by CloudFormation.</p>
1591
1566
  * <note>
1592
1567
  * <p>This capacity doesn't apply to creating change sets, and specifying it when creating change sets has no
@@ -1690,10 +1665,8 @@ export interface CreateChangeSetInput {
1690
1665
  IncludeNestedStacks?: boolean;
1691
1666
  /**
1692
1667
  * <p>Determines what action will be taken if stack creation fails. If this parameter is specified, the
1693
- * <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
1694
- * <code>ExecuteChangeSet</code>
1695
- * </a> API operation must not
1696
- * be specified. This must be one of these values:</p>
1668
+ * <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API operation must
1669
+ * not be specified. This must be one of these values:</p>
1697
1670
  * <ul>
1698
1671
  * <li>
1699
1672
  * <p>
@@ -1704,17 +1677,13 @@ export interface CreateChangeSetInput {
1704
1677
  * <li>
1705
1678
  * <p>
1706
1679
  * <code>DO_NOTHING</code> - if the stack creation fails, do nothing. This is equivalent to specifying
1707
- * <code>true</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
1708
- * <code>ExecuteChangeSet</code>
1709
- * </a> API
1680
+ * <code>true</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API
1710
1681
  * operation.</p>
1711
1682
  * </li>
1712
1683
  * <li>
1713
1684
  * <p>
1714
1685
  * <code>ROLLBACK</code> - if the stack creation fails, roll back the stack. This is equivalent to specifying
1715
- * <code>false</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
1716
- * <code>ExecuteChangeSet</code>
1717
- * </a> API
1686
+ * <code>false</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API
1718
1687
  * operation.</p>
1719
1688
  * </li>
1720
1689
  * </ul>
@@ -1866,9 +1835,8 @@ export interface TemplateConfiguration {
1866
1835
  * <code>RETAIN</code> - retain all resources when the stack is deleted.</p>
1867
1836
  * </li>
1868
1837
  * </ul>
1869
- * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html">
1870
- * <code>DeletionPolicy</code>
1871
- * attribute</a> in the <i>CloudFormation User Guide</i>.</p>
1838
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html">DeletionPolicy attribute</a> in the
1839
+ * <i>CloudFormation User Guide</i>.</p>
1872
1840
  * @public
1873
1841
  */
1874
1842
  DeletionPolicy?: GeneratedTemplateDeletionPolicy;
@@ -1885,9 +1853,8 @@ export interface TemplateConfiguration {
1885
1853
  * <code>RETAIN</code> - retain all resources when the resource is replaced during an update operation.</p>
1886
1854
  * </li>
1887
1855
  * </ul>
1888
- * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatereplacepolicy.html">
1889
- * <code>UpdateReplacePolicy</code>
1890
- * attribute</a> in the <i>CloudFormation User Guide</i>.</p>
1856
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatereplacepolicy.html">UpdateReplacePolicy
1857
+ * attribute</a> in the <i>CloudFormation User Guide</i>.</p>
1891
1858
  * @public
1892
1859
  */
1893
1860
  UpdateReplacePolicy?: GeneratedTemplateUpdateReplacePolicy;
@@ -1977,9 +1944,7 @@ export interface CreateStackInput {
1977
1944
  TemplateURL?: string;
1978
1945
  /**
1979
1946
  * <p>A list of <code>Parameter</code> structures that specify input parameters for the stack. For more information,
1980
- * see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">
1981
- * <code>Parameter</code>
1982
- * </a>
1947
+ * see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
1983
1948
  * data type.</p>
1984
1949
  * @public
1985
1950
  */
@@ -2041,50 +2006,37 @@ export interface CreateStackInput {
2041
2006
  * <ul>
2042
2007
  * <li>
2043
2008
  * <p>
2044
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
2045
- * <code>AWS::IAM::AccessKey</code> AWS::IAM::AccessKey</a>
2009
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">AWS::IAM::AccessKey</a>
2046
2010
  * </p>
2047
2011
  * </li>
2048
2012
  * <li>
2049
2013
  * <p>
2050
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
2051
- * <code>AWS::IAM::Group</code>
2052
- * </a>
2014
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">AWS::IAM::Group</a>
2053
2015
  * </p>
2054
2016
  * </li>
2055
2017
  * <li>
2056
2018
  * <p>
2057
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
2058
- * <code>AWS::IAM::InstanceProfile</code>
2059
- * </a>
2019
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">AWS::IAM::InstanceProfile</a>
2060
2020
  * </p>
2061
2021
  * </li>
2062
2022
  * <li>
2063
2023
  * <p>
2064
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
2065
- * <code>AWS::IAM::Policy</code>
2066
- * </a>
2024
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">AWS::IAM::Policy</a>
2067
2025
  * </p>
2068
2026
  * </li>
2069
2027
  * <li>
2070
2028
  * <p>
2071
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
2072
- * <code>AWS::IAM::Role</code>
2073
- * </a>
2029
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">AWS::IAM::Role</a>
2074
2030
  * </p>
2075
2031
  * </li>
2076
2032
  * <li>
2077
2033
  * <p>
2078
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
2079
- * <code>AWS::IAM::User</code>
2080
- * </a>
2034
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">AWS::IAM::User</a>
2081
2035
  * </p>
2082
2036
  * </li>
2083
2037
  * <li>
2084
2038
  * <p>
2085
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
2086
- * <code>AWS::IAM::UserToGroupAddition</code>
2087
- * </a>
2039
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">AWS::IAM::UserToGroupAddition</a>
2088
2040
  * </p>
2089
2041
  * </li>
2090
2042
  * </ul>
@@ -2100,11 +2052,7 @@ export interface CreateStackInput {
2100
2052
  * users typically create a change set from the processed template, so that they can review the changes resulting from
2101
2053
  * the macros before actually creating the stack. If your stack template contains one or more macros, and you choose
2102
2054
  * to create a stack directly from the processed template, without first reviewing the resulting changes in a change
2103
- * set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">
2104
- * <code>AWS::Include</code>
2105
- * </a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">
2106
- * <code>AWS::Serverless</code>
2107
- * </a> transforms, which
2055
+ * set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which
2108
2056
  * are macros hosted by CloudFormation.</p>
2109
2057
  * <p>If you want to create a stack from a stack template that contains macros <i>and</i> nested
2110
2058
  * stacks, you must create the stack directly from the template using this capability.</p>
@@ -2312,7 +2260,7 @@ export type RegionConcurrencyType = (typeof RegionConcurrencyType)[keyof typeof
2312
2260
  /**
2313
2261
  * <p>The user-specified preferences for how CloudFormation performs a stack set operation.</p>
2314
2262
  * <p>For more information about maximum concurrent accounts and failure tolerance, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation
2315
- * options</a>.</p>
2263
+ * options</a>.</p>
2316
2264
  * @public
2317
2265
  */
2318
2266
  export interface StackSetOperationPreferences {
@@ -2336,7 +2284,7 @@ export interface StackSetOperationPreferences {
2336
2284
  * that Region. If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent
2337
2285
  * Regions.</p>
2338
2286
  * <p>Conditional: You must specify either <code>FailureToleranceCount</code> or
2339
- * <code>FailureTolerancePercentage</code> (but not both).</p>
2287
+ * <code>FailureTolerancePercentage</code> (but not both).</p>
2340
2288
  * <p>By default, <code>0</code> is specified.</p>
2341
2289
  * @public
2342
2290
  */
@@ -2346,17 +2294,17 @@ export interface StackSetOperationPreferences {
2346
2294
  * in that Region. If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent
2347
2295
  * Regions.</p>
2348
2296
  * <p>When calculating the number of accounts based on the specified percentage, CloudFormation rounds
2349
- * <i>down</i> to the next whole number.</p>
2297
+ * <i>down</i> to the next whole number.</p>
2350
2298
  * <p>Conditional: You must specify either <code>FailureToleranceCount</code> or
2351
- * <code>FailureTolerancePercentage</code>, but not both.</p>
2299
+ * <code>FailureTolerancePercentage</code>, but not both.</p>
2352
2300
  * <p>By default, <code>0</code> is specified.</p>
2353
2301
  * @public
2354
2302
  */
2355
2303
  FailureTolerancePercentage?: number;
2356
2304
  /**
2357
2305
  * <p>The maximum number of accounts in which to perform this operation at one time. This can depend on the value of
2358
- * <code>FailureToleranceCount</code> depending on your <code>ConcurrencyMode</code>. <code>MaxConcurrentCount</code> is
2359
- * at most one more than the <code>FailureToleranceCount</code> if you're using
2306
+ * <code>FailureToleranceCount</code> depending on your <code>ConcurrencyMode</code>. <code>MaxConcurrentCount</code>
2307
+ * is at most one more than the <code>FailureToleranceCount</code> if you're using
2360
2308
  * <code>STRICT_FAILURE_TOLERANCE</code>.</p>
2361
2309
  * <p>Note that this setting lets you specify the <i>maximum</i> for operations. For large deployments,
2362
2310
  * under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service
@@ -2388,7 +2336,7 @@ export interface StackSetOperationPreferences {
2388
2336
  * <code>STRICT_FAILURE_TOLERANCE</code>: This option dynamically lowers the concurrency level to ensure the
2389
2337
  * number of failed accounts never exceeds the value of <code>FailureToleranceCount</code> +1. The initial actual
2390
2338
  * concurrency is set to the lower of either the value of the <code>MaxConcurrentCount</code>, or the value of
2391
- * <code>MaxConcurrentCount</code> +1. The actual concurrency is then reduced proportionally by the number of
2339
+ * <code>MaxConcurrentCount</code> +1. The actual concurrency is then reduced proportionally by the number of
2392
2340
  * failures. This is the default behavior.</p>
2393
2341
  * <p>If failure tolerance or Maximum concurrent accounts are set to percentages, the behavior is similar.</p>
2394
2342
  * </li>
@@ -2396,7 +2344,7 @@ export interface StackSetOperationPreferences {
2396
2344
  * <p>
2397
2345
  * <code>SOFT_FAILURE_TOLERANCE</code>: This option decouples <code>FailureToleranceCount</code> from the actual
2398
2346
  * concurrency. This allows stack set operations to run at the concurrency level set by the
2399
- * <code>MaxConcurrentCount</code> value, or <code>MaxConcurrentPercentage</code>, regardless of the number of
2347
+ * <code>MaxConcurrentCount</code> value, or <code>MaxConcurrentPercentage</code>, regardless of the number of
2400
2348
  * failures.</p>
2401
2349
  * </li>
2402
2350
  * </ul>
@@ -2429,7 +2377,7 @@ export interface CreateStackInstancesInput {
2429
2377
  DeploymentTargets?: DeploymentTargets;
2430
2378
  /**
2431
2379
  * <p>The names of one or more Amazon Web Services Regions where you want to create stack instances using the specified
2432
- * Amazon Web Services accounts.</p>
2380
+ * Amazon Web Services accounts.</p>
2433
2381
  * @public
2434
2382
  */
2435
2383
  Regions: string[] | undefined;
@@ -2443,8 +2391,8 @@ export interface CreateStackInstancesInput {
2443
2391
  * </li>
2444
2392
  * <li>
2445
2393
  * <p>To leave an overridden parameter set to its present value, include the parameter and specify
2446
- * <code>UsePreviousValue</code> as <code>true</code>. (You can't specify both a value and set
2447
- * <code>UsePreviousValue</code> to <code>true</code>.)</p>
2394
+ * <code>UsePreviousValue</code> as <code>true</code>. (You can't specify both a value and set
2395
+ * <code>UsePreviousValue</code> to <code>true</code>.)</p>
2448
2396
  * </li>
2449
2397
  * <li>
2450
2398
  * <p>To set an overridden parameter back to the value specified in the stack set, specify a parameter list but
@@ -2457,9 +2405,7 @@ export interface CreateStackInstancesInput {
2457
2405
  * <p>During stack set updates, any parameter values overridden for a stack instance aren't updated, but retain their
2458
2406
  * overridden value.</p>
2459
2407
  * <p>You can only override the parameter <i>values</i> that are specified in the stack set; to add or
2460
- * delete a parameter itself, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">
2461
- * <code>UpdateStackSet</code>
2462
- * </a> to update the stack set
2408
+ * delete a parameter itself, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a> to update the stack set
2463
2409
  * template.</p>
2464
2410
  * @public
2465
2411
  */
@@ -2476,13 +2422,13 @@ export interface CreateStackInstancesInput {
2476
2422
  * ensure that CloudFormation successfully received them.</p>
2477
2423
  * <p>If you don't specify an operation ID, the SDK generates one automatically.</p>
2478
2424
  * <p>Repeating this stack set operation with a new operation ID retries all stack instances whose status is
2479
- * <code>OUTDATED</code>.</p>
2425
+ * <code>OUTDATED</code>.</p>
2480
2426
  * @public
2481
2427
  */
2482
2428
  OperationId?: string;
2483
2429
  /**
2484
2430
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
2485
- * management account or as a delegated administrator in a member account.</p>
2431
+ * management account or as a delegated administrator in a member account.</p>
2486
2432
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
2487
2433
  * permissions.</p>
2488
2434
  * <ul>
@@ -2492,7 +2438,7 @@ export interface CreateStackInstancesInput {
2492
2438
  * <li>
2493
2439
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
2494
2440
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
2495
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
2441
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
2496
2442
  * </li>
2497
2443
  * </ul>
2498
2444
  * @public
@@ -2630,7 +2576,7 @@ export interface CreateStackSetInput {
2630
2576
  /**
2631
2577
  * <p>The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200
2632
2578
  * bytes. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template Anatomy</a> in the
2633
- * <i>CloudFormation User Guide</i>.</p>
2579
+ * <i>CloudFormation User Guide</i>.</p>
2634
2580
  * <p>Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.</p>
2635
2581
  * @public
2636
2582
  */
@@ -2638,7 +2584,7 @@ export interface CreateStackSetInput {
2638
2584
  /**
2639
2585
  * <p>The location of the file that contains the template body. The URL must point to a template (maximum size:
2640
2586
  * 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. For more information, see
2641
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template Anatomy</a>
2587
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template Anatomy</a>
2642
2588
  * in the <i>CloudFormation User Guide</i>.</p>
2643
2589
  * <p>Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.</p>
2644
2590
  * @public
@@ -2666,18 +2612,18 @@ export interface CreateStackSetInput {
2666
2612
  * for example, by creating new Identity and Access Management (IAM) users. For those stack sets, you must explicitly
2667
2613
  * acknowledge this by specifying one of these capabilities.</p>
2668
2614
  * <p>The following IAM resources require you to specify either the <code>CAPABILITY_IAM</code> or
2669
- * <code>CAPABILITY_NAMED_IAM</code> capability.</p>
2615
+ * <code>CAPABILITY_NAMED_IAM</code> capability.</p>
2670
2616
  * <ul>
2671
2617
  * <li>
2672
2618
  * <p>If you have IAM resources, you can specify either capability.</p>
2673
2619
  * </li>
2674
2620
  * <li>
2675
2621
  * <p>If you have IAM resources with custom names, you <i>must</i> specify
2676
- * <code>CAPABILITY_NAMED_IAM</code>.</p>
2622
+ * <code>CAPABILITY_NAMED_IAM</code>.</p>
2677
2623
  * </li>
2678
2624
  * <li>
2679
2625
  * <p>If you don't specify either of these capabilities, CloudFormation returns an
2680
- * <code>InsufficientCapabilities</code> error.</p>
2626
+ * <code>InsufficientCapabilities</code> error.</p>
2681
2627
  * </li>
2682
2628
  * </ul>
2683
2629
  * <p>If your stack template contains these resources, we recommend that you review all permissions associated with
@@ -2685,56 +2631,42 @@ export interface CreateStackSetInput {
2685
2631
  * <ul>
2686
2632
  * <li>
2687
2633
  * <p>
2688
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
2689
- * <code>AWS::IAM::AccessKey</code>
2690
- * </a>
2634
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">AWS::IAM::AccessKey</a>
2691
2635
  * </p>
2692
2636
  * </li>
2693
2637
  * <li>
2694
2638
  * <p>
2695
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
2696
- * <code>AWS::IAM::Group</code>
2697
- * </a>
2639
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">AWS::IAM::Group</a>
2698
2640
  * </p>
2699
2641
  * </li>
2700
2642
  * <li>
2701
2643
  * <p>
2702
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
2703
- * <code>AWS::IAM::InstanceProfile</code>
2704
- * </a>
2644
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">AWS::IAM::InstanceProfile</a>
2705
2645
  * </p>
2706
2646
  * </li>
2707
2647
  * <li>
2708
2648
  * <p>
2709
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
2710
- * <code>AWS::IAM::Policy</code>
2711
- * </a>
2649
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">AWS::IAM::Policy</a>
2712
2650
  * </p>
2713
2651
  * </li>
2714
2652
  * <li>
2715
2653
  * <p>
2716
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
2717
- * <code>AWS::IAM::Role</code>
2718
- * </a>
2654
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">AWS::IAM::Role</a>
2719
2655
  * </p>
2720
2656
  * </li>
2721
2657
  * <li>
2722
2658
  * <p>
2723
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
2724
- * <code>AWS::IAM::User</code>
2725
- * </a>
2659
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">AWS::IAM::User</a>
2726
2660
  * </p>
2727
2661
  * </li>
2728
2662
  * <li>
2729
2663
  * <p>
2730
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
2731
- * <code>AWS::IAM::UserToGroupAddition</code>
2732
- * </a>
2664
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">AWS::IAM::UserToGroupAddition</a>
2733
2665
  * </p>
2734
2666
  * </li>
2735
2667
  * </ul>
2736
2668
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging IAM Resources in
2737
- * CloudFormation Templates</a>.</p>
2669
+ * CloudFormation Templates</a>.</p>
2738
2670
  * </li>
2739
2671
  * <li>
2740
2672
  * <p>
@@ -2743,14 +2675,10 @@ export interface CreateStackSetInput {
2743
2675
  * <p>Some templates reference macros. If your stack set template references one or more macros, you must create the
2744
2676
  * stack set directly from the processed template, without first reviewing the resulting changes in a change set. To
2745
2677
  * create the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation Macros to
2746
- * Perform Custom Processing on Templates</a>.</p>
2678
+ * Perform Custom Processing on Templates</a>.</p>
2747
2679
  * <important>
2748
2680
  * <p>Stack sets with service-managed permissions don't currently support the use of macros in templates. (This
2749
- * includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">
2750
- * <code>AWS::Include</code>
2751
- * </a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">
2752
- * <code>AWS::Serverless</code>
2753
- * </a> transforms, which
2681
+ * includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which
2754
2682
  * are macros hosted by CloudFormation.) Even if you specify this capability for a stack set with service-managed permissions,
2755
2683
  * if you reference a macro in your template the stack set operation will fail.</p>
2756
2684
  * </important>
@@ -2765,7 +2693,7 @@ export interface CreateStackSetInput {
2765
2693
  * specified.</p>
2766
2694
  * <p>If you specify tags as part of a <code>CreateStackSet</code> action, CloudFormation checks to see if you have the
2767
2695
  * required IAM permission to tag resources. If you don't, the entire <code>CreateStackSet</code> action fails with an
2768
- * <code>access denied</code> error, and the stack set is not created.</p>
2696
+ * <code>access denied</code> error, and the stack set is not created.</p>
2769
2697
  * @public
2770
2698
  */
2771
2699
  Tags?: Tag[];
@@ -2773,7 +2701,7 @@ export interface CreateStackSetInput {
2773
2701
  * <p>The Amazon Resource Name (ARN) of the IAM role to use to create this stack set.</p>
2774
2702
  * <p>Specify an IAM role only if you are using customized administrator roles to control which users or groups can
2775
2703
  * manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: Granting
2776
- * Permissions for Stack Set Operations</a> in the <i>CloudFormation User Guide</i>.</p>
2704
+ * Permissions for Stack Set Operations</a> in the <i>CloudFormation User Guide</i>.</p>
2777
2705
  * @public
2778
2706
  */
2779
2707
  AdministrationRoleARN?: string;
@@ -2787,17 +2715,17 @@ export interface CreateStackSetInput {
2787
2715
  ExecutionRoleName?: string;
2788
2716
  /**
2789
2717
  * <p>Describes how the IAM roles required for stack set operations are created. By default,
2790
- * <code>SELF-MANAGED</code> is specified.</p>
2718
+ * <code>SELF-MANAGED</code> is specified.</p>
2791
2719
  * <ul>
2792
2720
  * <li>
2793
2721
  * <p>With <code>self-managed</code> permissions, you must create the administrator and execution roles required to
2794
2722
  * deploy to target accounts. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant Self-Managed Stack Set
2795
- * Permissions</a>.</p>
2723
+ * Permissions</a>.</p>
2796
2724
  * </li>
2797
2725
  * <li>
2798
2726
  * <p>With <code>service-managed</code> permissions, StackSets automatically creates the IAM roles required to
2799
2727
  * deploy to accounts managed by Organizations. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant Service-Managed Stack Set
2800
- * Permissions</a>.</p>
2728
+ * Permissions</a>.</p>
2801
2729
  * </li>
2802
2730
  * </ul>
2803
2731
  * @public
@@ -2806,13 +2734,13 @@ export interface CreateStackSetInput {
2806
2734
  /**
2807
2735
  * <p>Describes whether StackSets automatically deploys to Organizations accounts that are added to the target
2808
2736
  * organization or organizational unit (OU). Specify only if <code>PermissionModel</code> is
2809
- * <code>SERVICE_MANAGED</code>.</p>
2737
+ * <code>SERVICE_MANAGED</code>.</p>
2810
2738
  * @public
2811
2739
  */
2812
2740
  AutoDeployment?: AutoDeployment;
2813
2741
  /**
2814
2742
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
2815
- * management account or as a delegated administrator in a member account.</p>
2743
+ * management account or as a delegated administrator in a member account.</p>
2816
2744
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
2817
2745
  * permissions.</p>
2818
2746
  * <ul>
@@ -2825,7 +2753,7 @@ export interface CreateStackSetInput {
2825
2753
  * specify <code>DELEGATED_ADMIN</code>.</p>
2826
2754
  * <p>Your Amazon Web Services account must be registered as a delegated admin in the management account.
2827
2755
  * For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
2828
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
2756
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
2829
2757
  * </li>
2830
2758
  * </ul>
2831
2759
  * <p>Stack sets with service-managed permissions are created in the management account, including stack
@@ -3050,7 +2978,7 @@ export interface DeleteStackInstancesInput {
3050
2978
  * <p>Removes the stack instances from the specified stack set, but doesn't delete the stacks. You can't reassociate a
3051
2979
  * retained stack or add an existing, saved stack to a new stack set.</p>
3052
2980
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation
3053
- * options</a>.</p>
2981
+ * options</a>.</p>
3054
2982
  * @public
3055
2983
  */
3056
2984
  RetainStacks: boolean | undefined;
@@ -3061,13 +2989,13 @@ export interface DeleteStackInstancesInput {
3061
2989
  * operation only once, even if you retry the request multiple times. You can retry stack set operation requests to
3062
2990
  * ensure that CloudFormation successfully received them.</p>
3063
2991
  * <p>Repeating this stack set operation with a new operation ID retries all stack instances whose status is
3064
- * <code>OUTDATED</code>.</p>
2992
+ * <code>OUTDATED</code>.</p>
3065
2993
  * @public
3066
2994
  */
3067
2995
  OperationId?: string;
3068
2996
  /**
3069
2997
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
3070
- * management account or as a delegated administrator in a member account.</p>
2998
+ * management account or as a delegated administrator in a member account.</p>
3071
2999
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
3072
3000
  * permissions.</p>
3073
3001
  * <ul>
@@ -3077,7 +3005,7 @@ export interface DeleteStackInstancesInput {
3077
3005
  * <li>
3078
3006
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
3079
3007
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
3080
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3008
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3081
3009
  * </li>
3082
3010
  * </ul>
3083
3011
  * @public
@@ -3105,7 +3033,7 @@ export interface DeleteStackSetInput {
3105
3033
  StackSetName: string | undefined;
3106
3034
  /**
3107
3035
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
3108
- * management account or as a delegated administrator in a member account.</p>
3036
+ * management account or as a delegated administrator in a member account.</p>
3109
3037
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
3110
3038
  * permissions.</p>
3111
3039
  * <ul>
@@ -3115,7 +3043,7 @@ export interface DeleteStackSetInput {
3115
3043
  * <li>
3116
3044
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
3117
3045
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
3118
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3046
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3119
3047
  * </li>
3120
3048
  * </ul>
3121
3049
  * @public
@@ -3271,9 +3199,7 @@ export interface DescribeChangeSetOutput {
3271
3199
  Description?: string;
3272
3200
  /**
3273
3201
  * <p>A list of <code>Parameter</code> structures that describes the input parameters and their values used to create
3274
- * the change set. For more information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">
3275
- * <code>Parameter</code>
3276
- * </a> data type.</p>
3202
+ * the change set. For more information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a> data type.</p>
3277
3203
  * @public
3278
3204
  */
3279
3205
  Parameters?: Parameter[];
@@ -3353,10 +3279,8 @@ export interface DescribeChangeSetOutput {
3353
3279
  RootChangeSetId?: string;
3354
3280
  /**
3355
3281
  * <p>Determines what action will be taken if stack creation fails. When this parameter is specified, the
3356
- * <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
3357
- * <code>ExecuteChangeSet</code>
3358
- * </a> API operation must not
3359
- * be specified. This must be one of these values:</p>
3282
+ * <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API operation must
3283
+ * not be specified. This must be one of these values:</p>
3360
3284
  * <ul>
3361
3285
  * <li>
3362
3286
  * <p>
@@ -3367,17 +3291,13 @@ export interface DescribeChangeSetOutput {
3367
3291
  * <li>
3368
3292
  * <p>
3369
3293
  * <code>DO_NOTHING</code> - if the stack creation fails, do nothing. This is equivalent to specifying
3370
- * <code>true</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
3371
- * <code>ExecuteChangeSet</code>
3372
- * </a> API
3294
+ * <code>true</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API
3373
3295
  * operation.</p>
3374
3296
  * </li>
3375
3297
  * <li>
3376
3298
  * <p>
3377
3299
  * <code>ROLLBACK</code> - if the stack creation fails, roll back the stack. This is equivalent to specifying
3378
- * <code>false</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">
3379
- * <code>ExecuteChangeSet</code>
3380
- * </a> API
3300
+ * <code>false</code> for the <code>DisableRollback</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a> API
3381
3301
  * operation.</p>
3382
3302
  * </li>
3383
3303
  * </ul>
@@ -3773,7 +3693,7 @@ export interface DescribeGeneratedTemplateOutput {
3773
3693
  export interface DescribeOrganizationsAccessInput {
3774
3694
  /**
3775
3695
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
3776
- * management account or as a delegated administrator in a member account.</p>
3696
+ * management account or as a delegated administrator in a member account.</p>
3777
3697
  * <p>By default, <code>SELF</code> is specified.</p>
3778
3698
  * <ul>
3779
3699
  * <li>
@@ -3782,7 +3702,7 @@ export interface DescribeOrganizationsAccessInput {
3782
3702
  * <li>
3783
3703
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
3784
3704
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
3785
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3705
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
3786
3706
  * </li>
3787
3707
  * </ul>
3788
3708
  * @public
@@ -4357,7 +4277,7 @@ export interface DescribeStackInstanceInput {
4357
4277
  StackInstanceRegion: string | undefined;
4358
4278
  /**
4359
4279
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
4360
- * management account or as a delegated administrator in a member account.</p>
4280
+ * management account or as a delegated administrator in a member account.</p>
4361
4281
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
4362
4282
  * permissions.</p>
4363
4283
  * <ul>
@@ -4367,7 +4287,7 @@ export interface DescribeStackInstanceInput {
4367
4287
  * <li>
4368
4288
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
4369
4289
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
4370
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
4290
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
4371
4291
  * </li>
4372
4292
  * </ul>
4373
4293
  * @public
@@ -4413,10 +4333,17 @@ export interface StackInstanceComprehensiveStatus {
4413
4333
  * </li>
4414
4334
  * <li>
4415
4335
  * <p>
4336
+ * <code>FAILED_IMPORT</code>: The import of the stack instance in the specified account and Region failed and
4337
+ * left the stack in an unstable state. Once the issues causing the failure are fixed, the import operation can be
4338
+ * retried. If enough stack set operations fail in enough accounts within a Region, the failure tolerance for the
4339
+ * stack set operation as a whole might be exceeded.</p>
4340
+ * </li>
4341
+ * <li>
4342
+ * <p>
4416
4343
  * <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed and left the stack in an
4417
4344
  * unstable state. Stacks in this state are excluded from further <code>UpdateStackSet</code> operations. You might
4418
4345
  * need to perform a <code>DeleteStackInstances</code> operation, with <code>RetainStacks</code> set to
4419
- * <code>true</code>, to delete the stack instance, and then delete the stack manually.</p>
4346
+ * <code>true</code>, to delete the stack instance, and then delete the stack manually.</p>
4420
4347
  * </li>
4421
4348
  * <li>
4422
4349
  * <p>
@@ -4497,11 +4424,11 @@ export interface StackInstance {
4497
4424
  * <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed and left the stack in an
4498
4425
  * unstable state. Stacks in this state are excluded from further <code>UpdateStackSet</code> operations. You might
4499
4426
  * need to perform a <code>DeleteStackInstances</code> operation, with <code>RetainStacks</code> set to
4500
- * <code>true</code>, to delete the stack instance, and then delete the stack manually. <code>INOPERABLE</code> can be
4501
- * returned here when the cause is a failed import. If it's due to a failed import, the operation can be retried once
4502
- * the failures are fixed. To see if this is due to a failed import, look at the <code>DetailedStatus</code> member in
4503
- * the <code>StackInstanceSummary</code> member that is a peer to this <code>Status</code>
4504
- * member.</p>
4427
+ * <code>true</code>, to delete the stack instance, and then delete the stack manually.
4428
+ * <code>INOPERABLE</code> can be returned here when the cause is a failed import. If it's due to a failed import, the
4429
+ * operation can be retried once the failures are fixed. To see if this is due to a failed import, look at the
4430
+ * <code>DetailedStatus</code> member in the <code>StackInstanceSummary</code> member that is a peer to this
4431
+ * <code>Status</code> member.</p>
4505
4432
  * </li>
4506
4433
  * <li>
4507
4434
  * <p>
@@ -4537,9 +4464,7 @@ export interface StackInstance {
4537
4464
  StatusReason?: string;
4538
4465
  /**
4539
4466
  * <p>[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for
4540
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">
4541
- * <code>DeploymentTargets</code>
4542
- * </a>.</p>
4467
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>.</p>
4543
4468
  * @public
4544
4469
  */
4545
4470
  OrganizationalUnitId?: string;
@@ -4573,7 +4498,7 @@ export interface StackInstance {
4573
4498
  DriftStatus?: StackDriftStatus;
4574
4499
  /**
4575
4500
  * <p>Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be
4576
- * <code>NULL</code> for any stack instance on which drift detection hasn't yet been performed.</p>
4501
+ * <code>NULL</code> for any stack instance on which drift detection hasn't yet been performed.</p>
4577
4502
  * @public
4578
4503
  */
4579
4504
  LastDriftCheckTimestamp?: Date;
@@ -5448,7 +5373,7 @@ export interface DescribeStackSetInput {
5448
5373
  StackSetName: string | undefined;
5449
5374
  /**
5450
5375
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
5451
- * management account or as a delegated administrator in a member account.</p>
5376
+ * management account or as a delegated administrator in a member account.</p>
5452
5377
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
5453
5378
  * permissions.</p>
5454
5379
  * <ul>
@@ -5458,7 +5383,7 @@ export interface DescribeStackSetInput {
5458
5383
  * <li>
5459
5384
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
5460
5385
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
5461
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
5386
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
5462
5387
  * </li>
5463
5388
  * </ul>
5464
5389
  * @public
@@ -5558,7 +5483,7 @@ export interface StackSetDriftDetectionDetails {
5558
5483
  DriftDetectionStatus?: StackSetDriftDetectionStatus;
5559
5484
  /**
5560
5485
  * <p>Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be
5561
- * <code>NULL</code> for any stack set on which drift detection hasn't yet been performed.</p>
5486
+ * <code>NULL</code> for any stack set on which drift detection hasn't yet been performed.</p>
5562
5487
  * @public
5563
5488
  */
5564
5489
  LastDriftCheckTimestamp?: Date;
@@ -5620,7 +5545,7 @@ export declare const StackSetStatus: {
5620
5545
  export type StackSetStatus = (typeof StackSetStatus)[keyof typeof StackSetStatus];
5621
5546
  /**
5622
5547
  * <p>A structure that contains information about a stack set. A stack set enables you to provision stacks into
5623
- * Amazon Web Services accounts and across Regions by using a single CloudFormation template. In the stack set, you specify
5548
+ * Amazon Web Services accounts and across Regions by using a single CloudFormation template. In the stack set, you specify
5624
5549
  * the template to use, in addition to any parameters and capabilities that the template requires.</p>
5625
5550
  * @public
5626
5551
  */
@@ -5658,7 +5583,7 @@ export interface StackSet {
5658
5583
  /**
5659
5584
  * <p>The capabilities that are allowed in the stack set. Some stack set templates might include resources that can
5660
5585
  * affect permissions in your Amazon Web Services account—for example, by creating new Identity and Access Management (IAM) users. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging IAM Resources in CloudFormation
5661
- * Templates.</a>
5586
+ * Templates.</a>
5662
5587
  * </p>
5663
5588
  * @public
5664
5589
  */
@@ -5678,7 +5603,7 @@ export interface StackSet {
5678
5603
  * <p>The Amazon Resource Name (ARN) of the IAM role used to create or update the stack set.</p>
5679
5604
  * <p>Use customized administrator roles to control which users or groups can manage specific stack sets within the
5680
5605
  * same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack Set
5681
- * Operations</a> in the <i>CloudFormation User Guide</i>.</p>
5606
+ * Operations</a> in the <i>CloudFormation User Guide</i>.</p>
5682
5607
  * @public
5683
5608
  */
5684
5609
  AdministrationRoleARN?: string;
@@ -5708,12 +5633,12 @@ export interface StackSet {
5708
5633
  * <li>
5709
5634
  * <p>With <code>self-managed</code> permissions, you must create the administrator and execution roles required to
5710
5635
  * deploy to target accounts. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant Self-Managed Stack Set
5711
- * Permissions</a>.</p>
5636
+ * Permissions</a>.</p>
5712
5637
  * </li>
5713
5638
  * <li>
5714
5639
  * <p>With <code>service-managed</code> permissions, StackSets automatically creates the IAM roles required to
5715
5640
  * deploy to accounts managed by Organizations. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant Service-Managed Stack Set
5716
- * Permissions</a>.</p>
5641
+ * Permissions</a>.</p>
5717
5642
  * </li>
5718
5643
  * </ul>
5719
5644
  * @public
@@ -5721,9 +5646,7 @@ export interface StackSet {
5721
5646
  PermissionModel?: PermissionModels;
5722
5647
  /**
5723
5648
  * <p>[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for
5724
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">
5725
- * <code>DeploymentTargets</code>
5726
- * </a>.</p>
5649
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>.</p>
5727
5650
  * @public
5728
5651
  */
5729
5652
  OrganizationalUnitIds?: string[];
@@ -5765,7 +5688,7 @@ export interface DescribeStackSetOperationInput {
5765
5688
  OperationId: string | undefined;
5766
5689
  /**
5767
5690
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
5768
- * management account or as a delegated administrator in a member account.</p>
5691
+ * management account or as a delegated administrator in a member account.</p>
5769
5692
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
5770
5693
  * permissions.</p>
5771
5694
  * <ul>
@@ -5775,7 +5698,7 @@ export interface DescribeStackSetOperationInput {
5775
5698
  * <li>
5776
5699
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
5777
5700
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
5778
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
5701
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
5779
5702
  * </li>
5780
5703
  * </ul>
5781
5704
  * @public
@@ -5854,13 +5777,13 @@ export interface StackSetOperation {
5854
5777
  * <code>FAILED</code>: The operation exceeded the specified failure tolerance. The failure tolerance value that
5855
5778
  * you've set for an operation is applied for each Region during stack create and update operations. If the number of
5856
5779
  * failed stacks within a Region exceeds the failure tolerance, the status of the operation in the Region is set to
5857
- * <code>FAILED</code>. This in turn sets the status of the operation as a whole to <code>FAILED</code>, and CloudFormation cancels the operation in any remaining Regions.</p>
5780
+ * <code>FAILED</code>. This in turn sets the status of the operation as a whole to <code>FAILED</code>, and CloudFormation cancels the operation in any remaining Regions.</p>
5858
5781
  * </li>
5859
5782
  * <li>
5860
5783
  * <p>
5861
5784
  * <code>QUEUED</code>: [Service-managed permissions] For automatic deployments that require a sequence of
5862
5785
  * operations, the operation is queued to be performed. For more information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-status-codes">stack set operation status
5863
- * codes</a> in the <i>CloudFormation User Guide</i>.</p>
5786
+ * codes</a> in the <i>CloudFormation User Guide</i>.</p>
5864
5787
  * </li>
5865
5788
  * <li>
5866
5789
  * <p>
@@ -5899,7 +5822,7 @@ export interface StackSetOperation {
5899
5822
  * <p>The Amazon Resource Name (ARN) of the IAM role used to perform this stack set operation.</p>
5900
5823
  * <p>Use customized administrator roles to control which users or groups can manage specific stack sets within the
5901
5824
  * same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Define Permissions for Multiple
5902
- * Administrators</a> in the <i>CloudFormation User Guide</i>.</p>
5825
+ * Administrators</a> in the <i>CloudFormation User Guide</i>.</p>
5903
5826
  * @public
5904
5827
  */
5905
5828
  AdministrationRoleARN?: string;
@@ -5934,7 +5857,7 @@ export interface StackSetOperation {
5934
5857
  * <p>Detailed information about the drift status of the stack set. This includes information about drift operations
5935
5858
  * currently being performed on the stack set.</p>
5936
5859
  * <p>This information will only be present for stack set operations whose <code>Action</code> type is
5937
- * <code>DETECT_DRIFT</code>.</p>
5860
+ * <code>DETECT_DRIFT</code>.</p>
5938
5861
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting Unmanaged Changes in Stack Sets</a> in
5939
5862
  * the <i>CloudFormation User Guide</i>.</p>
5940
5863
  * @public
@@ -6105,9 +6028,7 @@ export interface DescribeTypeOutput {
6105
6028
  /**
6106
6029
  * <p>The name of the extension.</p>
6107
6030
  * <p>If the extension is a public third-party type you have activated with a type name alias, CloudFormation returns the
6108
- * type name alias. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
6109
- * <code>ActivateType</code>
6110
- * </a>.</p>
6031
+ * type name alias. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a>.</p>
6111
6032
  * @public
6112
6033
  */
6113
6034
  TypeName?: string;
@@ -6116,9 +6037,7 @@ export interface DescribeTypeOutput {
6116
6037
  * specified.</p>
6117
6038
  * <p>This applies only to private extensions you have registered in your account. For public extensions, both those
6118
6039
  * provided by Amazon Web Services and published by third parties, CloudFormation returns <code>null</code>. For more
6119
- * information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
6120
- * <code>RegisterType</code>
6121
- * </a>.</p>
6040
+ * information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
6122
6041
  * <p>To set the default version of an extension, use <a>SetTypeDefaultVersion</a>.</p>
6123
6042
  * @public
6124
6043
  */
@@ -6237,9 +6156,7 @@ export interface DescribeTypeOutput {
6237
6156
  /**
6238
6157
  * <p>Contains logging configuration information for private extensions. This applies only to private extensions you
6239
6158
  * have registered in your account. For public extensions, both those provided by Amazon Web Services and published by
6240
- * third parties, CloudFormation returns <code>null</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
6241
- * <code>RegisterType</code>
6242
- * </a>.</p>
6159
+ * third parties, CloudFormation returns <code>null</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
6243
6160
  * @public
6244
6161
  */
6245
6162
  LoggingConfig?: LoggingConfig;
@@ -6251,9 +6168,7 @@ export interface DescribeTypeOutput {
6251
6168
  RequiredActivatedTypes?: RequiredActivatedType[];
6252
6169
  /**
6253
6170
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to register the extension. This applies only to
6254
- * private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
6255
- * <code>RegisterType</code>
6256
- * </a>.</p>
6171
+ * private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
6257
6172
  * <p>If the registered extension calls any Amazon Web Services APIs, you must create an <i>
6258
6173
  * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM execution role</a>
6259
6174
  * </i> that includes
@@ -6294,15 +6209,11 @@ export interface DescribeTypeOutput {
6294
6209
  * <p>When the specified extension version was registered. This applies only to:</p>
6295
6210
  * <ul>
6296
6211
  * <li>
6297
- * <p>Private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
6298
- * <code>RegisterType</code>
6299
- * </a>.</p>
6212
+ * <p>Private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
6300
6213
  * </li>
6301
6214
  * <li>
6302
6215
  * <p>Public extensions you have activated in your account with auto-update specified. For more information, see
6303
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
6304
- * <code>ActivateType</code>
6305
- * </a>.</p>
6216
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a>.</p>
6306
6217
  * </li>
6307
6218
  * </ul>
6308
6219
  * @public
@@ -6315,11 +6226,9 @@ export interface DescribeTypeOutput {
6315
6226
  TimeCreated?: Date;
6316
6227
  /**
6317
6228
  * <p>A JSON string that represent the current configuration data for the extension in this account and Region.</p>
6318
- * <p>To set the configuration data for an extension, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">
6319
- * <code>SetTypeConfiguration</code>
6320
- * </a>. For more
6229
+ * <p>To set the configuration data for an extension, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">SetTypeConfiguration</a>. For more
6321
6230
  * information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring extensions at
6322
- * the account level</a> in the <i>CloudFormation User Guide</i>.</p>
6231
+ * the account level</a> in the <i>CloudFormation User Guide</i>.</p>
6323
6232
  * @public
6324
6233
  */
6325
6234
  ConfigurationSchema?: string;
@@ -6493,7 +6402,7 @@ export interface DetectStackSetDriftInput {
6493
6402
  /**
6494
6403
  * <p>The user-specified preferences for how CloudFormation performs a stack set operation.</p>
6495
6404
  * <p>For more information about maximum concurrent accounts and failure tolerance, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation
6496
- * options</a>.</p>
6405
+ * options</a>.</p>
6497
6406
  * @public
6498
6407
  */
6499
6408
  OperationPreferences?: StackSetOperationPreferences;
@@ -6506,7 +6415,7 @@ export interface DetectStackSetDriftInput {
6506
6415
  OperationId?: string;
6507
6416
  /**
6508
6417
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
6509
- * management account or as a delegated administrator in a member account.</p>
6418
+ * management account or as a delegated administrator in a member account.</p>
6510
6419
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
6511
6420
  * permissions.</p>
6512
6421
  * <ul>
@@ -6516,7 +6425,7 @@ export interface DetectStackSetDriftInput {
6516
6425
  * <li>
6517
6426
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
6518
6427
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
6519
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
6428
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
6520
6429
  * </li>
6521
6430
  * </ul>
6522
6431
  * @public
@@ -6600,24 +6509,18 @@ export interface ExecuteChangeSetInput {
6600
6509
  ClientRequestToken?: string;
6601
6510
  /**
6602
6511
  * <p>Preserves the state of previously provisioned resources when an operation fails. This parameter can't be
6603
- * specified when the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">
6604
- * <code>CreateChangeSet</code>
6605
- * </a> API operation was
6512
+ * specified when the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">CreateChangeSet</a> API operation was
6606
6513
  * specified.</p>
6607
6514
  * <ul>
6608
6515
  * <li>
6609
6516
  * <p>
6610
6517
  * <code>True</code> - if the stack creation fails, do nothing. This is equivalent to specifying
6611
- * <code>DO_NOTHING</code> for the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">
6612
- * <code>CreateChangeSet</code>
6613
- * </a> API operation.</p>
6518
+ * <code>DO_NOTHING</code> for the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">CreateChangeSet</a> API operation.</p>
6614
6519
  * </li>
6615
6520
  * <li>
6616
6521
  * <p>
6617
6522
  * <code>False</code> - if the stack creation fails, roll back the stack. This is equivalent to specifying
6618
- * <code>ROLLBACK</code> for the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">
6619
- * <code>CreateChangeSet</code>
6620
- * </a> API operation.</p>
6523
+ * <code>ROLLBACK</code> for the <code>OnStackFailure</code> parameter to the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">CreateChangeSet</a> API operation.</p>
6621
6524
  * </li>
6622
6525
  * </ul>
6623
6526
  * <p>Default: <code>True</code>
@@ -7079,7 +6982,7 @@ export interface ImportStacksToStackSetInput {
7079
6982
  /**
7080
6983
  * <p>The user-specified preferences for how CloudFormation performs a stack set operation.</p>
7081
6984
  * <p>For more information about maximum concurrent accounts and failure tolerance, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation
7082
- * options</a>.</p>
6985
+ * options</a>.</p>
7083
6986
  * @public
7084
6987
  */
7085
6988
  OperationPreferences?: StackSetOperationPreferences;
@@ -7635,9 +7538,9 @@ export interface ListStackInstanceResourceDriftsInput {
7635
7538
  StackSetName: string | undefined;
7636
7539
  /**
7637
7540
  * <p>If the previous paginated request didn't return all of the remaining results, the response object's
7638
- * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call this action again
7639
- * and assign that token to the request object's <code>NextToken</code> parameter. If there are no remaining results,
7640
- * the previous response object's <code>NextToken</code> parameter is set to <code>null</code>.</p>
7541
+ * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call this action
7542
+ * again and assign that token to the request object's <code>NextToken</code> parameter. If there are no remaining
7543
+ * results, the previous response object's <code>NextToken</code> parameter is set to <code>null</code>.</p>
7641
7544
  * @public
7642
7545
  */
7643
7546
  NextToken?: string;
@@ -7689,7 +7592,7 @@ export interface ListStackInstanceResourceDriftsInput {
7689
7592
  OperationId: string | undefined;
7690
7593
  /**
7691
7594
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
7692
- * management account or as a delegated administrator in a member account.</p>
7595
+ * management account or as a delegated administrator in a member account.</p>
7693
7596
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
7694
7597
  * permissions.</p>
7695
7598
  * <ul>
@@ -7699,7 +7602,7 @@ export interface ListStackInstanceResourceDriftsInput {
7699
7602
  * <li>
7700
7603
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
7701
7604
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
7702
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
7605
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
7703
7606
  * </li>
7704
7607
  * </ul>
7705
7608
  * @public
@@ -7735,7 +7638,7 @@ export interface StackInstanceResourceDriftsSummary {
7735
7638
  PhysicalResourceIdContext?: PhysicalResourceIdContextKeyValuePair[];
7736
7639
  /**
7737
7640
  * <p>Type of resource. For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services Resource Types
7738
- * Reference</a> in the <i>CloudFormation User Guide</i>.</p>
7641
+ * Reference</a> in the <i>CloudFormation User Guide</i>.</p>
7739
7642
  * @public
7740
7643
  */
7741
7644
  ResourceType: string | undefined;
@@ -7787,9 +7690,9 @@ export interface ListStackInstanceResourceDriftsOutput {
7787
7690
  Summaries?: StackInstanceResourceDriftsSummary[];
7788
7691
  /**
7789
7692
  * <p>If the previous paginated request didn't return all of the remaining results, the response object's
7790
- * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call this action again
7791
- * and assign that token to the request object's <code>NextToken</code> parameter. If there are no remaining results,
7792
- * the previous response object's <code>NextToken</code> parameter is set to <code>null</code>.</p>
7693
+ * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call this action
7694
+ * again and assign that token to the request object's <code>NextToken</code> parameter. If there are no remaining
7695
+ * results, the previous response object's <code>NextToken</code> parameter is set to <code>null</code>.</p>
7793
7696
  * @public
7794
7697
  */
7795
7698
  NextToken?: string;
@@ -7864,7 +7767,7 @@ export interface ListStackInstancesInput {
7864
7767
  StackInstanceRegion?: string;
7865
7768
  /**
7866
7769
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
7867
- * management account or as a delegated administrator in a member account.</p>
7770
+ * management account or as a delegated administrator in a member account.</p>
7868
7771
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
7869
7772
  * permissions.</p>
7870
7773
  * <ul>
@@ -7874,7 +7777,7 @@ export interface ListStackInstancesInput {
7874
7777
  * <li>
7875
7778
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
7876
7779
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
7877
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
7780
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
7878
7781
  * </li>
7879
7782
  * </ul>
7880
7783
  * @public
@@ -7915,11 +7818,10 @@ export interface StackInstanceSummary {
7915
7818
  * <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed and left the stack in an
7916
7819
  * unstable state. Stacks in this state are excluded from further <code>UpdateStackSet</code> operations. You might
7917
7820
  * need to perform a <code>DeleteStackInstances</code> operation, with <code>RetainStacks</code> set to
7918
- * <code>true</code>, to delete the stack instance, and then delete the stack manually. <code>INOPERABLE</code> can be
7919
- * returned here when the cause is a failed import. If it's due to a failed import, the operation can be retried once
7920
- * the failures are fixed. To see if this is due to a failed import, call the <a>DescribeStackInstance</a>
7921
- * API operation, look at the <code>DetailedStatus</code> member returned in the <code>StackInstanceSummary</code>
7922
- * member.</p>
7821
+ * <code>true</code>, to delete the stack instance, and then delete the stack manually.
7822
+ * <code>INOPERABLE</code> can be returned here when the cause is a failed import. If it's due to a failed import, the
7823
+ * operation can be retried once the failures are fixed. To see if this is due to a failed import, call the <a>DescribeStackInstance</a> API operation, look at the <code>DetailedStatus</code> member returned in the
7824
+ * <code>StackInstanceSummary</code> member.</p>
7923
7825
  * </li>
7924
7826
  * <li>
7925
7827
  * <p>
@@ -7955,9 +7857,7 @@ export interface StackInstanceSummary {
7955
7857
  StackInstanceStatus?: StackInstanceComprehensiveStatus;
7956
7858
  /**
7957
7859
  * <p>[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for
7958
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">
7959
- * <code>DeploymentTargets</code>
7960
- * </a>.</p>
7860
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>.</p>
7961
7861
  * @public
7962
7862
  */
7963
7863
  OrganizationalUnitId?: string;
@@ -7991,7 +7891,7 @@ export interface StackInstanceSummary {
7991
7891
  DriftStatus?: StackDriftStatus;
7992
7892
  /**
7993
7893
  * <p>Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be
7994
- * <code>NULL</code> for any stack instance on which drift detection hasn't yet been performed.</p>
7894
+ * <code>NULL</code> for any stack instance on which drift detection hasn't yet been performed.</p>
7995
7895
  * @public
7996
7896
  */
7997
7897
  LastDriftCheckTimestamp?: Date;
@@ -8014,8 +7914,8 @@ export interface ListStackInstancesOutput {
8014
7914
  /**
8015
7915
  * <p>If the request doesn't return all the remaining results, <code>NextToken</code> is set to a token. To retrieve
8016
7916
  * the next set of results, call <code>ListStackInstances</code> again and assign that token to the request object's
8017
- * <code>NextToken</code> parameter. If the request returns all results, <code>NextToken</code> is set to
8018
- * <code>null</code>.</p>
7917
+ * <code>NextToken</code> parameter. If the request returns all results, <code>NextToken</code> is set to
7918
+ * <code>null</code>.</p>
8019
7919
  * @public
8020
7920
  */
8021
7921
  NextToken?: string;
@@ -8298,6 +8198,78 @@ export interface ListStacksOutput {
8298
8198
  */
8299
8199
  NextToken?: string;
8300
8200
  }
8201
+ /**
8202
+ * @public
8203
+ */
8204
+ export interface ListStackSetAutoDeploymentTargetsInput {
8205
+ /**
8206
+ * <p>The name or unique ID of the stack set that you want to get automatic deployment targets for.</p>
8207
+ * @public
8208
+ */
8209
+ StackSetName: string | undefined;
8210
+ /**
8211
+ * <p>A string that identifies the next page of stack set deployment targets that you want to retrieve.</p>
8212
+ * @public
8213
+ */
8214
+ NextToken?: string;
8215
+ /**
8216
+ * <p>The maximum number of results to be returned with a single call. If the number of available results exceeds this
8217
+ * maximum, the response includes a <code>NextToken</code> value that you can assign to the <code>NextToken</code>
8218
+ * request parameter to get the next set of results.</p>
8219
+ * @public
8220
+ */
8221
+ MaxResults?: number;
8222
+ /**
8223
+ * <p>Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.</p>
8224
+ * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for StackSets with self-managed
8225
+ * permissions.</p>
8226
+ * <ul>
8227
+ * <li>
8228
+ * <p>If you are signed in to the management account, specify <code>SELF</code>.</p>
8229
+ * </li>
8230
+ * <li>
8231
+ * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
8232
+ * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
8233
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8234
+ * </li>
8235
+ * </ul>
8236
+ * @public
8237
+ */
8238
+ CallAs?: CallAs;
8239
+ }
8240
+ /**
8241
+ * <p>One of the targets for the stack set. Returned by the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetAutoDeploymentTargets.html">ListStackSetAutoDeploymentTargets</a> API operation.</p>
8242
+ * @public
8243
+ */
8244
+ export interface StackSetAutoDeploymentTargetSummary {
8245
+ /**
8246
+ * <p>The organization root ID or organizational unit (OU) IDs where the stack set is targeted.</p>
8247
+ * @public
8248
+ */
8249
+ OrganizationalUnitId?: string;
8250
+ /**
8251
+ * <p>The list of Regions targeted for this organization or OU.</p>
8252
+ * @public
8253
+ */
8254
+ Regions?: string[];
8255
+ }
8256
+ /**
8257
+ * @public
8258
+ */
8259
+ export interface ListStackSetAutoDeploymentTargetsOutput {
8260
+ /**
8261
+ * <p>An array of summaries of the deployment targets for the stack set.</p>
8262
+ * @public
8263
+ */
8264
+ Summaries?: StackSetAutoDeploymentTargetSummary[];
8265
+ /**
8266
+ * <p>If the request doesn't return all the remaining results, <code>NextToken</code> is set to a token. To retrieve
8267
+ * the next set of results, call <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetAutoDeploymentTargets.html">ListStackSetAutoDeploymentTargets</a> again and use that value for the <code>NextToken</code> parameter. If the
8268
+ * request returns all results, <code>NextToken</code> is set to an empty string.</p>
8269
+ * @public
8270
+ */
8271
+ NextToken?: string;
8272
+ }
8301
8273
  /**
8302
8274
  * @public
8303
8275
  * @enum
@@ -8342,7 +8314,7 @@ export interface ListStackSetOperationResultsInput {
8342
8314
  /**
8343
8315
  * <p>If the previous request didn't return all the remaining results, the response object's <code>NextToken</code>
8344
8316
  * parameter value is set to a token. To retrieve the next set of results, call
8345
- * <code>ListStackSetOperationResults</code> again and assign that token to the request object's <code>NextToken</code>
8317
+ * <code>ListStackSetOperationResults</code> again and assign that token to the request object's <code>NextToken</code>
8346
8318
  * parameter. If there are no remaining results, the previous response object's <code>NextToken</code> parameter is set
8347
8319
  * to <code>null</code>.</p>
8348
8320
  * @public
@@ -8357,7 +8329,7 @@ export interface ListStackSetOperationResultsInput {
8357
8329
  MaxResults?: number;
8358
8330
  /**
8359
8331
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
8360
- * management account or as a delegated administrator in a member account.</p>
8332
+ * management account or as a delegated administrator in a member account.</p>
8361
8333
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
8362
8334
  * permissions.</p>
8363
8335
  * <ul>
@@ -8367,7 +8339,7 @@ export interface ListStackSetOperationResultsInput {
8367
8339
  * <li>
8368
8340
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
8369
8341
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
8370
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8342
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8371
8343
  * </li>
8372
8344
  * </ul>
8373
8345
  * @public
@@ -8454,9 +8426,7 @@ export interface StackSetOperationResultSummary {
8454
8426
  AccountGateResult?: AccountGateResult;
8455
8427
  /**
8456
8428
  * <p>[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for
8457
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">
8458
- * <code>DeploymentTargets</code>
8459
- * </a>.</p>
8429
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>.</p>
8460
8430
  * @public
8461
8431
  */
8462
8432
  OrganizationalUnitId?: string;
@@ -8474,8 +8444,8 @@ export interface ListStackSetOperationResultsOutput {
8474
8444
  /**
8475
8445
  * <p>If the request doesn't return all results, <code>NextToken</code> is set to a token. To retrieve the next set of
8476
8446
  * results, call <code>ListOperationResults</code> again and assign that token to the request object's
8477
- * <code>NextToken</code> parameter. If there are no remaining results, <code>NextToken</code> is set to
8478
- * <code>null</code>.</p>
8447
+ * <code>NextToken</code> parameter. If there are no remaining results, <code>NextToken</code> is set to
8448
+ * <code>null</code>.</p>
8479
8449
  * @public
8480
8450
  */
8481
8451
  NextToken?: string;
@@ -8491,8 +8461,8 @@ export interface ListStackSetOperationsInput {
8491
8461
  StackSetName: string | undefined;
8492
8462
  /**
8493
8463
  * <p>If the previous paginated request didn't return all of the remaining results, the response object's
8494
- * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call
8495
- * <code>ListStackSetOperations</code> again and assign that token to the request object's <code>NextToken</code>
8464
+ * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call
8465
+ * <code>ListStackSetOperations</code> again and assign that token to the request object's <code>NextToken</code>
8496
8466
  * parameter. If there are no remaining results, the previous response object's <code>NextToken</code> parameter is set
8497
8467
  * to <code>null</code>.</p>
8498
8468
  * @public
@@ -8507,7 +8477,7 @@ export interface ListStackSetOperationsInput {
8507
8477
  MaxResults?: number;
8508
8478
  /**
8509
8479
  * <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
8510
- * management account or as a delegated administrator in a member account.</p>
8480
+ * management account or as a delegated administrator in a member account.</p>
8511
8481
  * <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
8512
8482
  * permissions.</p>
8513
8483
  * <ul>
@@ -8517,7 +8487,7 @@ export interface ListStackSetOperationsInput {
8517
8487
  * <li>
8518
8488
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
8519
8489
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
8520
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8490
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8521
8491
  * </li>
8522
8492
  * </ul>
8523
8493
  * @public
@@ -8549,13 +8519,13 @@ export interface StackSetOperationSummary {
8549
8519
  * <code>FAILED</code>: The operation exceeded the specified failure tolerance. The failure tolerance value that
8550
8520
  * you've set for an operation is applied for each Region during stack create and update operations. If the number of
8551
8521
  * failed stacks within a Region exceeds the failure tolerance, the status of the operation in the Region is set to
8552
- * <code>FAILED</code>. This in turn sets the status of the operation as a whole to <code>FAILED</code>, and CloudFormation cancels the operation in any remaining Regions.</p>
8522
+ * <code>FAILED</code>. This in turn sets the status of the operation as a whole to <code>FAILED</code>, and CloudFormation cancels the operation in any remaining Regions.</p>
8553
8523
  * </li>
8554
8524
  * <li>
8555
8525
  * <p>
8556
8526
  * <code>QUEUED</code>: [Service-managed permissions] For automatic deployments that require a sequence of
8557
8527
  * operations, the operation is queued to be performed. For more information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-status-codes">stack set operation status
8558
- * codes</a> in the <i>CloudFormation User Guide</i>.</p>
8528
+ * codes</a> in the <i>CloudFormation User Guide</i>.</p>
8559
8529
  * </li>
8560
8530
  * <li>
8561
8531
  * <p>
@@ -8606,7 +8576,7 @@ export interface StackSetOperationSummary {
8606
8576
  /**
8607
8577
  * <p>The user-specified preferences for how CloudFormation performs a stack set operation.</p>
8608
8578
  * <p>For more information about maximum concurrent accounts and failure tolerance, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation
8609
- * options</a>.</p>
8579
+ * options</a>.</p>
8610
8580
  * @public
8611
8581
  */
8612
8582
  OperationPreferences?: StackSetOperationPreferences;
@@ -8624,8 +8594,8 @@ export interface ListStackSetOperationsOutput {
8624
8594
  /**
8625
8595
  * <p>If the request doesn't return all results, <code>NextToken</code> is set to a token. To retrieve the next set of
8626
8596
  * results, call <code>ListOperationResults</code> again and assign that token to the request object's
8627
- * <code>NextToken</code> parameter. If there are no remaining results, <code>NextToken</code> is set to
8628
- * <code>null</code>.</p>
8597
+ * <code>NextToken</code> parameter. If there are no remaining results, <code>NextToken</code> is set to
8598
+ * <code>null</code>.</p>
8629
8599
  * @public
8630
8600
  */
8631
8601
  NextToken?: string;
@@ -8636,10 +8606,10 @@ export interface ListStackSetOperationsOutput {
8636
8606
  export interface ListStackSetsInput {
8637
8607
  /**
8638
8608
  * <p>If the previous paginated request didn't return all the remaining results, the response object's
8639
- * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call
8640
- * <code>ListStackSets</code> again and assign that token to the request object's <code>NextToken</code> parameter. If
8609
+ * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of results, call
8610
+ * <code>ListStackSets</code> again and assign that token to the request object's <code>NextToken</code> parameter. If
8641
8611
  * there are no remaining results, the previous response object's <code>NextToken</code> parameter is set to
8642
- * <code>null</code>.</p>
8612
+ * <code>null</code>.</p>
8643
8613
  * @public
8644
8614
  */
8645
8615
  NextToken?: string;
@@ -8666,7 +8636,7 @@ export interface ListStackSetsInput {
8666
8636
  * <li>
8667
8637
  * <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
8668
8638
  * <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
8669
- * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8639
+ * administrator</a> in the <i>CloudFormation User Guide</i>.</p>
8670
8640
  * </li>
8671
8641
  * </ul>
8672
8642
  * @public
@@ -8710,12 +8680,12 @@ export interface StackSetSummary {
8710
8680
  * <li>
8711
8681
  * <p>With <code>self-managed</code> permissions, you must create the administrator and execution roles required to
8712
8682
  * deploy to target accounts. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant Self-Managed Stack Set
8713
- * Permissions</a>.</p>
8683
+ * Permissions</a>.</p>
8714
8684
  * </li>
8715
8685
  * <li>
8716
8686
  * <p>With <code>service-managed</code> permissions, StackSets automatically creates the IAM roles required to
8717
8687
  * deploy to accounts managed by Organizations. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant Service-Managed Stack Set
8718
- * Permissions</a>.</p>
8688
+ * Permissions</a>.</p>
8719
8689
  * </li>
8720
8690
  * </ul>
8721
8691
  * @public
@@ -8751,7 +8721,7 @@ export interface StackSetSummary {
8751
8721
  DriftStatus?: StackDriftStatus;
8752
8722
  /**
8753
8723
  * <p>Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be
8754
- * <code>NULL</code> for any stack set on which drift detection hasn't yet been performed.</p>
8724
+ * <code>NULL</code> for any stack set on which drift detection hasn't yet been performed.</p>
8755
8725
  * @public
8756
8726
  */
8757
8727
  LastDriftCheckTimestamp?: Date;
@@ -8775,7 +8745,7 @@ export interface ListStackSetsOutput {
8775
8745
  * <p>If the request doesn't return all of the remaining results, <code>NextToken</code> is set to a token. To
8776
8746
  * retrieve the next set of results, call <code>ListStackInstances</code> again and assign that token to the request
8777
8747
  * object's <code>NextToken</code> parameter. If the request returns all results, <code>NextToken</code> is set to
8778
- * <code>null</code>.</p>
8748
+ * <code>null</code>.</p>
8779
8749
  * @public
8780
8750
  */
8781
8751
  NextToken?: string;
@@ -9005,10 +8975,8 @@ export interface TypeSummary {
9005
8975
  Type?: RegistryType;
9006
8976
  /**
9007
8977
  * <p>The name of the extension.</p>
9008
- * <p>If you specified a <code>TypeNameAlias</code> when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
9009
- * <code>ActivateType</code>
9010
- * </a> API operation in
9011
- * your account and Region, CloudFormation considers that alias as the type name.</p>
8978
+ * <p>If you specified a <code>TypeNameAlias</code> when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a> API operation in your account
8979
+ * and Region, CloudFormation considers that alias as the type name.</p>
9012
8980
  * @public
9013
8981
  */
9014
8982
  TypeName?: string;
@@ -9017,9 +8985,7 @@ export interface TypeSummary {
9017
8985
  * specified.</p>
9018
8986
  * <p>This applies only to private extensions you have registered in your account. For public extensions, both those
9019
8987
  * provided by Amazon and published by third parties, CloudFormation returns <code>null</code>. For more information, see
9020
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
9021
- * <code>RegisterType</code>
9022
- * </a>.</p>
8988
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
9023
8989
  * <p>To set the default version of an extension, use <a>SetTypeDefaultVersion</a>.</p>
9024
8990
  * @public
9025
8991
  */
@@ -9033,15 +8999,11 @@ export interface TypeSummary {
9033
8999
  * <p>When the specified extension version was registered. This applies only to:</p>
9034
9000
  * <ul>
9035
9001
  * <li>
9036
- * <p>Private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
9037
- * <code>RegisterType</code>
9038
- * </a>.</p>
9002
+ * <p>Private extensions you have registered in your account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
9039
9003
  * </li>
9040
9004
  * <li>
9041
9005
  * <p>Public extensions you have activated in your account with auto-update specified. For more information, see
9042
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
9043
- * <code>ActivateType</code>
9044
- * </a>.</p>
9006
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a>.</p>
9045
9007
  * </li>
9046
9008
  * </ul>
9047
9009
  * <p>For all other extension types, CloudFormation returns <code>null</code>.</p>
@@ -9643,12 +9605,9 @@ export interface SetStackPolicyInput {
9643
9605
  export interface SetTypeConfigurationInput {
9644
9606
  /**
9645
9607
  * <p>The Amazon Resource Name (ARN) for the extension, in this account and Region.</p>
9646
- * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">
9647
- * <code>ActivateType</code>
9648
- * </a> API operation
9649
- * in this account and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
9650
- * <code>RegisterType</code>
9651
- * </a> API operation in this account and Region.</p>
9608
+ * <p>For public extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a> API operation in this account
9609
+ * and Region. For private extensions, this will be the ARN assigned when you call the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a> API operation in this account
9610
+ * and Region.</p>
9652
9611
  * <p>Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an
9653
9612
  * extension, but not for a specific extension version.</p>
9654
9613
  * @public
@@ -9657,11 +9616,9 @@ export interface SetTypeConfigurationInput {
9657
9616
  /**
9658
9617
  * <p>The configuration data for the extension, in this account and Region.</p>
9659
9618
  * <p>The configuration data must be formatted as JSON, and validate against the schema returned in the
9660
- * <code>ConfigurationSchema</code> response element of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">
9661
- * <code>DescribeType</code>
9662
- * </a>. For more information, see
9663
- * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration">Defining
9664
- * account-level configuration data for an extension</a> in the <i>CloudFormation CLI User
9619
+ * <code>ConfigurationSchema</code> response element of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>. For more information, see
9620
+ * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration">Defining
9621
+ * account-level configuration data for an extension</a> in the <i>CloudFormation CLI User
9665
9622
  * Guide</i>.</p>
9666
9623
  * @public
9667
9624
  */
@@ -9729,50 +9686,3 @@ export interface SetTypeDefaultVersionInput {
9729
9686
  */
9730
9687
  VersionId?: string;
9731
9688
  }
9732
- /**
9733
- * @public
9734
- */
9735
- export interface SetTypeDefaultVersionOutput {
9736
- }
9737
- /**
9738
- * @public
9739
- * @enum
9740
- */
9741
- export declare const ResourceSignalStatus: {
9742
- readonly FAILURE: "FAILURE";
9743
- readonly SUCCESS: "SUCCESS";
9744
- };
9745
- /**
9746
- * @public
9747
- */
9748
- export type ResourceSignalStatus = (typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
9749
- /**
9750
- * <p>The input for the <a>SignalResource</a> action.</p>
9751
- * @public
9752
- */
9753
- export interface SignalResourceInput {
9754
- /**
9755
- * <p>The stack name or unique stack ID that includes the resource that you want to signal.</p>
9756
- * @public
9757
- */
9758
- StackName: string | undefined;
9759
- /**
9760
- * <p>The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in
9761
- * the template.</p>
9762
- * @public
9763
- */
9764
- LogicalResourceId: string | undefined;
9765
- /**
9766
- * <p>A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the
9767
- * instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as
9768
- * signaling a wait condition), each signal requires a different unique ID.</p>
9769
- * @public
9770
- */
9771
- UniqueId: string | undefined;
9772
- /**
9773
- * <p>The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately
9774
- * fail the stack creation or update.</p>
9775
- * @public
9776
- */
9777
- Status: ResourceSignalStatus | undefined;
9778
- }