@aws-sdk/client-cloudformation 3.95.0 → 3.105.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-cloudformation
20
+
21
+
22
+
23
+
24
+
25
+ # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
26
+
27
+
28
+ ### Features
29
+
30
+ * **client-cloudformation:** Add a new parameter statusReason to DescribeStackSetOperation output for additional details ([9051437](https://github.com/aws/aws-sdk-js-v3/commit/90514375503b4df2e6709371728c46cfa8042492))
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
7
37
 
8
38
  **Note:** Version bump only for package @aws-sdk/client-cloudformation
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class CloudFormationClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -8029,6 +8029,7 @@ const deserializeAws_queryStackSetOperation = (output, context) => {
8029
8029
  EndTimestamp: undefined,
8030
8030
  DeploymentTargets: undefined,
8031
8031
  StackSetDriftDetectionDetails: undefined,
8032
+ StatusReason: undefined,
8032
8033
  };
8033
8034
  if (output["OperationId"] !== undefined) {
8034
8035
  contents.OperationId = (0, smithy_client_1.expectString)(output["OperationId"]);
@@ -8066,6 +8067,9 @@ const deserializeAws_queryStackSetOperation = (output, context) => {
8066
8067
  if (output["StackSetDriftDetectionDetails"] !== undefined) {
8067
8068
  contents.StackSetDriftDetectionDetails = deserializeAws_queryStackSetDriftDetectionDetails(output["StackSetDriftDetectionDetails"], context);
8068
8069
  }
8070
+ if (output["StatusReason"] !== undefined) {
8071
+ contents.StatusReason = (0, smithy_client_1.expectString)(output["StatusReason"]);
8072
+ }
8069
8073
  return contents;
8070
8074
  };
8071
8075
  const deserializeAws_queryStackSetOperationPreferences = (output, context) => {
@@ -8156,6 +8160,7 @@ const deserializeAws_queryStackSetOperationSummary = (output, context) => {
8156
8160
  Status: undefined,
8157
8161
  CreationTimestamp: undefined,
8158
8162
  EndTimestamp: undefined,
8163
+ StatusReason: undefined,
8159
8164
  };
8160
8165
  if (output["OperationId"] !== undefined) {
8161
8166
  contents.OperationId = (0, smithy_client_1.expectString)(output["OperationId"]);
@@ -8172,6 +8177,9 @@ const deserializeAws_queryStackSetOperationSummary = (output, context) => {
8172
8177
  if (output["EndTimestamp"] !== undefined) {
8173
8178
  contents.EndTimestamp = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTime)(output["EndTimestamp"]));
8174
8179
  }
8180
+ if (output["StatusReason"] !== undefined) {
8181
+ contents.StatusReason = (0, smithy_client_1.expectString)(output["StatusReason"]);
8182
+ }
8175
8183
  return contents;
8176
8184
  };
8177
8185
  const deserializeAws_queryStackSetSummaries = (output, context) => {
@@ -17,8 +17,10 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
17
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
18
18
  const smithy_client_1 = require("@aws-sdk/smithy-client");
19
19
  const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
20
+ const smithy_client_2 = require("@aws-sdk/smithy-client");
20
21
  const getRuntimeConfig = (config) => {
21
22
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
23
+ (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
22
24
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
23
25
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
26
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var CloudFormationClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -9046,6 +9046,7 @@ var deserializeAws_queryStackSetOperation = function (output, context) {
9046
9046
  EndTimestamp: undefined,
9047
9047
  DeploymentTargets: undefined,
9048
9048
  StackSetDriftDetectionDetails: undefined,
9049
+ StatusReason: undefined,
9049
9050
  };
9050
9051
  if (output["OperationId"] !== undefined) {
9051
9052
  contents.OperationId = __expectString(output["OperationId"]);
@@ -9083,6 +9084,9 @@ var deserializeAws_queryStackSetOperation = function (output, context) {
9083
9084
  if (output["StackSetDriftDetectionDetails"] !== undefined) {
9084
9085
  contents.StackSetDriftDetectionDetails = deserializeAws_queryStackSetDriftDetectionDetails(output["StackSetDriftDetectionDetails"], context);
9085
9086
  }
9087
+ if (output["StatusReason"] !== undefined) {
9088
+ contents.StatusReason = __expectString(output["StatusReason"]);
9089
+ }
9086
9090
  return contents;
9087
9091
  };
9088
9092
  var deserializeAws_queryStackSetOperationPreferences = function (output, context) {
@@ -9173,6 +9177,7 @@ var deserializeAws_queryStackSetOperationSummary = function (output, context) {
9173
9177
  Status: undefined,
9174
9178
  CreationTimestamp: undefined,
9175
9179
  EndTimestamp: undefined,
9180
+ StatusReason: undefined,
9176
9181
  };
9177
9182
  if (output["OperationId"] !== undefined) {
9178
9183
  contents.OperationId = __expectString(output["OperationId"]);
@@ -9189,6 +9194,9 @@ var deserializeAws_queryStackSetOperationSummary = function (output, context) {
9189
9194
  if (output["EndTimestamp"] !== undefined) {
9190
9195
  contents.EndTimestamp = __expectNonNull(__parseRfc3339DateTime(output["EndTimestamp"]));
9191
9196
  }
9197
+ if (output["StatusReason"] !== undefined) {
9198
+ contents.StatusReason = __expectString(output["StatusReason"]);
9199
+ }
9192
9200
  return contents;
9193
9201
  };
9194
9202
  var deserializeAws_queryStackSetSummaries = function (output, context) {
@@ -14,8 +14,10 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
16
16
  import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
17
+ import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
17
18
  export var getRuntimeConfig = function (config) {
18
19
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
20
+ emitWarningIfUnsupportedVersion(process.version);
19
21
  var defaultsMode = resolveDefaultsModeConfig(config);
20
22
  var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
21
23
  var clientSharedValues = getSharedRuntimeConfig(config);
@@ -219,8 +219,8 @@ export declare class CloudFormation extends CloudFormationClient {
219
219
  deleteStackInstances(args: DeleteStackInstancesCommandInput, cb: (err: any, data?: DeleteStackInstancesCommandOutput) => void): void;
220
220
  deleteStackInstances(args: DeleteStackInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStackInstancesCommandOutput) => void): void;
221
221
  /**
222
- * <p>Deletes a stack set. Before you can delete a stack set, all of its member stack
223
- * instances must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.</p>
222
+ * <p>Deletes a stack set. Before you can delete a stack set, all its member stack instances
223
+ * must be deleted. For more information about how to complete this, see <a>DeleteStackInstances</a>.</p>
224
224
  */
225
225
  deleteStackSet(args: DeleteStackSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStackSetCommandOutput>;
226
226
  deleteStackSet(args: DeleteStackSetCommandInput, cb: (err: any, data?: DeleteStackSetCommandOutput) => void): void;
@@ -266,7 +266,7 @@ export declare class CloudFormation extends CloudFormationClient {
266
266
  * <p>If you don't supply a <code>PublisherId</code>, and you have registered as an extension
267
267
  * publisher, <code>DescribePublisher</code> returns information about your own publisher
268
268
  * account.</p>
269
- * <p>For more information on registering as a publisher, see:</p>
269
+ * <p>For more information about registering as a publisher, see:</p>
270
270
  * <ul>
271
271
  * <li>
272
272
  * <p>
@@ -289,7 +289,7 @@ export declare class CloudFormation extends CloudFormationClient {
289
289
  * operation detects whether a stack's actual configuration differs, or has
290
290
  * <i>drifted</i>, from it's expected configuration, as defined in the stack
291
291
  * template and any values specified as template parameters. A stack is considered to have
292
- * drifted if one or more of its resources have drifted. For more information on stack and
292
+ * drifted if one or more of its resources have drifted. For more information about stack and
293
293
  * resource drift, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting
294
294
  * Unregulated Configuration Changes to Stacks and Resources</a>.</p>
295
295
  * <p>Use <a>DetectStackDrift</a> to initiate a stack drift detection operation.
@@ -496,7 +496,7 @@ export declare class CloudFormation extends CloudFormationClient {
496
496
  * drift time checked.</p>
497
497
  * </li>
498
498
  * </ul>
499
- * <p>For more information on performing a drift detection operation on a stack set, see
499
+ * <p>For more information about performing a drift detection operation on a stack set, see
500
500
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting unmanaged
501
501
  * changes in stack sets</a>.</p>
502
502
  * <p>You can only run a single drift detection operation on a given stack set at one
@@ -689,7 +689,7 @@ export declare class CloudFormation extends CloudFormationClient {
689
689
  listTypeVersions(args: ListTypeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTypeVersionsCommandOutput) => void): void;
690
690
  /**
691
691
  * <p>Publishes the specified extension to the CloudFormation registry as a public
692
- * extension in this region. Public extensions are available for use by all CloudFormation users. For more information on publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
692
+ * extension in this region. Public extensions are available for use by all CloudFormation users. For more information about publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
693
693
  * <i>CloudFormation CLI User Guide</i>.</p>
694
694
  * <p>To publish an extension, you must be registered as a publisher with CloudFormation. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterPublisher.html">RegisterPublisher</a>.</p>
695
695
  */
@@ -706,7 +706,7 @@ export declare class CloudFormation extends CloudFormationClient {
706
706
  /**
707
707
  * <p>Registers your account as a publisher of public extensions in the CloudFormation registry. Public extensions are available for use by all CloudFormation users.
708
708
  * This publisher ID applies to your account in all Amazon Web Services Regions.</p>
709
- * <p>For information on requirements for registering as a public extension publisher, see
709
+ * <p>For information about requirements for registering as a public extension publisher, see
710
710
  * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering your account to publish CloudFormation
711
711
  * extensions</a> in the <i>CloudFormation CLI User
712
712
  * Guide</i>.</p>
@@ -729,8 +729,8 @@ export declare class CloudFormation extends CloudFormationClient {
729
729
  * <p>Making the extension available for use in your account.</p>
730
730
  * </li>
731
731
  * </ul>
732
- * <p>For more information on how to develop extensions and ready them for registration, see
733
- * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
732
+ * <p>For more information about how to develop extensions and ready them for registration,
733
+ * see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
734
734
  * Providers</a> in the <i>CloudFormation CLI User
735
735
  * Guide</i>.</p>
736
736
  * <p>You can have a maximum of 50 resource extension versions registered at a time. This
@@ -7,8 +7,8 @@ export interface DeleteStackSetCommandInput extends DeleteStackSetInput {
7
7
  export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes a stack set. Before you can delete a stack set, all of its member stack
11
- * instances must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.</p>
10
+ * <p>Deletes a stack set. Before you can delete a stack set, all its member stack instances
11
+ * must be deleted. For more information about how to complete this, see <a>DeleteStackInstances</a>.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -11,7 +11,7 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
11
11
  * <p>If you don't supply a <code>PublisherId</code>, and you have registered as an extension
12
12
  * publisher, <code>DescribePublisher</code> returns information about your own publisher
13
13
  * account.</p>
14
- * <p>For more information on registering as a publisher, see:</p>
14
+ * <p>For more information about registering as a publisher, see:</p>
15
15
  * <ul>
16
16
  * <li>
17
17
  * <p>
@@ -11,7 +11,7 @@ export interface DescribeStackDriftDetectionStatusCommandOutput extends Describe
11
11
  * operation detects whether a stack's actual configuration differs, or has
12
12
  * <i>drifted</i>, from it's expected configuration, as defined in the stack
13
13
  * template and any values specified as template parameters. A stack is considered to have
14
- * drifted if one or more of its resources have drifted. For more information on stack and
14
+ * drifted if one or more of its resources have drifted. For more information about stack and
15
15
  * resource drift, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting
16
16
  * Unregulated Configuration Changes to Stacks and Resources</a>.</p>
17
17
  * <p>Use <a>DetectStackDrift</a> to initiate a stack drift detection operation.
@@ -44,7 +44,7 @@ export interface DetectStackSetDriftCommandOutput extends DetectStackSetDriftOut
44
44
  * drift time checked.</p>
45
45
  * </li>
46
46
  * </ul>
47
- * <p>For more information on performing a drift detection operation on a stack set, see
47
+ * <p>For more information about performing a drift detection operation on a stack set, see
48
48
  * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting unmanaged
49
49
  * changes in stack sets</a>.</p>
50
50
  * <p>You can only run a single drift detection operation on a given stack set at one
@@ -8,7 +8,7 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
8
8
  }
9
9
  /**
10
10
  * <p>Publishes the specified extension to the CloudFormation registry as a public
11
- * extension in this region. Public extensions are available for use by all CloudFormation users. For more information on publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
11
+ * extension in this region. Public extensions are available for use by all CloudFormation users. For more information about publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
12
12
  * <i>CloudFormation CLI User Guide</i>.</p>
13
13
  * <p>To publish an extension, you must be registered as a publisher with CloudFormation. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterPublisher.html">RegisterPublisher</a>.</p>
14
14
  * @example
@@ -9,7 +9,7 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
9
9
  /**
10
10
  * <p>Registers your account as a publisher of public extensions in the CloudFormation registry. Public extensions are available for use by all CloudFormation users.
11
11
  * This publisher ID applies to your account in all Amazon Web Services Regions.</p>
12
- * <p>For information on requirements for registering as a public extension publisher, see
12
+ * <p>For information about requirements for registering as a public extension publisher, see
13
13
  * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering your account to publish CloudFormation
14
14
  * extensions</a> in the <i>CloudFormation CLI User
15
15
  * Guide</i>.</p>
@@ -20,8 +20,8 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
20
20
  * <p>Making the extension available for use in your account.</p>
21
21
  * </li>
22
22
  * </ul>
23
- * <p>For more information on how to develop extensions and ready them for registration, see
24
- * <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
23
+ * <p>For more information about how to develop extensions and ready them for registration,
24
+ * see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
25
25
  * Providers</a> in the <i>CloudFormation CLI User
26
26
  * Guide</i>.</p>
27
27
  * <p>You can have a maximum of 50 resource extension versions registered at a time. This
@@ -143,7 +143,7 @@ export interface ActivateTypeInput {
143
143
  */
144
144
  Type?: ThirdPartyType | string;
145
145
  /**
146
- * <p>The Amazon Resource Number (ARN) of the public extension.</p>
146
+ * <p>The Amazon Resource Name (ARN) of the public extension.</p>
147
147
  * <p>Conditional: You must specify <code>PublicTypeArn</code>, or <code>TypeName</code>,
148
148
  * <code>Type</code>, and <code>PublisherId</code>.</p>
149
149
  */
@@ -221,7 +221,7 @@ export declare namespace ActivateTypeInput {
221
221
  }
222
222
  export interface ActivateTypeOutput {
223
223
  /**
224
- * <p>The Amazon Resource Number (ARN) of the activated extension, in this account and
224
+ * <p>The Amazon Resource Name (ARN) of the activated extension, in this account and
225
225
  * region.</p>
226
226
  */
227
227
  Arn?: string;
@@ -407,8 +407,7 @@ export interface TypeConfigurationDetails {
407
407
  */
408
408
  TypeName?: string;
409
409
  /**
410
- * <p>Whether or not this configuration data is the default configuration for the
411
- * extension.</p>
410
+ * <p>Whether this configuration data is the default configuration for the extension.</p>
412
411
  */
413
412
  IsDefaultConfiguration?: boolean;
414
413
  }
@@ -649,7 +648,7 @@ export declare namespace ResourceChangeDetail {
649
648
  /**
650
649
  * <p>Contains information about the module from which the resource was created, if the
651
650
  * resource was created from a module included in the stack template.</p>
652
- * <p>For more information on modules, see <a href="AWSCloudFormation/latest/UserGuide/modules.html">Using modules to encapsulate and
651
+ * <p>For more information about modules, see <a href="AWSCloudFormation/latest/UserGuide/modules.html">Using modules to encapsulate and
653
652
  * reuse resource configurations</a> in the
654
653
  * <i>CloudFormation User Guide</i>.</p>
655
654
  */
@@ -1174,9 +1173,7 @@ export interface ResourceToImport {
1174
1173
  * (for example, <code>BucketName</code> for <code>AWS::S3::Bucket</code> resources) and the
1175
1174
  * value is the actual property value (for example, <code>MyS3Bucket</code>).</p>
1176
1175
  */
1177
- ResourceIdentifier: {
1178
- [key: string]: string;
1179
- } | undefined;
1176
+ ResourceIdentifier: Record<string, string> | undefined;
1180
1177
  }
1181
1178
  export declare namespace ResourceToImport {
1182
1179
  /**
@@ -1355,7 +1352,7 @@ export interface CreateChangeSetInput {
1355
1352
  * returns an <code>InsufficientCapabilities</code> error.</p>
1356
1353
  * </li>
1357
1354
  * </ul>
1358
- * <p>If your stack template contains these resources, we recommend that you review all
1355
+ * <p>If your stack template contains these resources, we suggest that you review all
1359
1356
  * permissions associated with them and edit their permissions if necessary.</p>
1360
1357
  * <ul>
1361
1358
  * <li>
@@ -1420,7 +1417,7 @@ export interface CreateChangeSetInput {
1420
1417
  * <i>and</i> nested stacks, you must create or update the stack
1421
1418
  * directly from the template using the <a>CreateStack</a> or <a>UpdateStack</a> action, and specifying this capability.</p>
1422
1419
  * </note>
1423
- * <p>For more information on macros, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation macros to
1420
+ * <p>For more information about macros, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation macros to
1424
1421
  * perform custom processing on templates</a>.</p>
1425
1422
  * </li>
1426
1423
  * </ul>
@@ -1548,7 +1545,7 @@ export declare class InsufficientCapabilitiesException extends __BaseException {
1548
1545
  }
1549
1546
  /**
1550
1547
  * <p>The quota for the resource has already been reached.</p>
1551
- * <p>For information on resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
1548
+ * <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
1552
1549
  * quotas</a> in the <i>CloudFormation User Guide</i>.</p>
1553
1550
  */
1554
1551
  export declare class LimitExceededException extends __BaseException {
@@ -1878,7 +1875,7 @@ export declare enum RegionConcurrencyType {
1878
1875
  /**
1879
1876
  * <p>The user-specified preferences for how CloudFormation performs a stack set
1880
1877
  * operation.</p>
1881
- * <p>For more information on 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 options</a>.</p>
1878
+ * <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 options</a>.</p>
1882
1879
  */
1883
1880
  export interface StackSetOperationPreferences {
1884
1881
  /**
@@ -2190,7 +2187,7 @@ export interface CreateStackSetInput {
2190
2187
  */
2191
2188
  TemplateURL?: string;
2192
2189
  /**
2193
- * <p>The stack ID you are importing into a new stack set. Specify the Amazon Resource Number
2190
+ * <p>The stack ID you are importing into a new stack set. Specify the Amazon Resource Name
2194
2191
  * (ARN) of the stack.</p>
2195
2192
  */
2196
2193
  StackId?: string;
@@ -2304,7 +2301,7 @@ export interface CreateStackSetInput {
2304
2301
  */
2305
2302
  Tags?: Tag[];
2306
2303
  /**
2307
- * <p>The Amazon Resource Number (ARN) of the IAM role to use to create this
2304
+ * <p>The Amazon Resource Name (ARN) of the IAM role to use to create this
2308
2305
  * stack set.</p>
2309
2306
  * <p>Specify an IAM role only if you are using customized administrator roles
2310
2307
  * to control which users or groups can manage specific stack sets within the same
@@ -3935,8 +3932,8 @@ export interface DescribeStackResourceDriftsOutput {
3935
3932
  */
3936
3933
  StackResourceDrifts: StackResourceDrift[] | undefined;
3937
3934
  /**
3938
- * <p>If the request doesn't return all of the remaining results, <code>NextToken</code> is
3939
- * set to a token. To retrieve the next set of results, call
3935
+ * <p>If the request doesn't return all the remaining results, <code>NextToken</code> is set
3936
+ * to a token. To retrieve the next set of results, call
3940
3937
  * <code>DescribeStackResourceDrifts</code> again and assign that token to the request
3941
3938
  * object's <code>NextToken</code> parameter. If the request returns all results,
3942
3939
  * <code>NextToken</code> is set to <code>null</code>.</p>
@@ -4292,9 +4289,9 @@ export interface Stack {
4292
4289
  /**
4293
4290
  * <p>Whether termination protection is enabled for the stack.</p>
4294
4291
  * <p>For <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">nested stacks</a>,
4295
- * termination protection is set on the root stack and cannot be changed directly on the
4296
- * nested stack. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html">Protecting a Stack From Being
4297
- * Deleted</a> in the <i>CloudFormation User Guide</i>.</p>
4292
+ * termination protection is set on the root stack and can't be changed directly on the nested
4293
+ * stack. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html">Protecting a Stack From Being Deleted</a> in the
4294
+ * <i>CloudFormation User Guide</i>.</p>
4298
4295
  */
4299
4296
  EnableTerminationProtection?: boolean;
4300
4297
  /**
@@ -4311,7 +4308,7 @@ export interface Stack {
4311
4308
  */
4312
4309
  RootId?: string;
4313
4310
  /**
4314
- * <p>Information on whether a stack's actual configuration differs, or has
4311
+ * <p>Information about whether a stack's actual configuration differs, or has
4315
4312
  * <i>drifted</i>, from it's expected configuration, as defined in the stack
4316
4313
  * template and any values specified as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting Unregulated Configuration
4317
4314
  * Changes to Stacks and Resources</a>.</p>
@@ -4555,11 +4552,11 @@ export interface StackSet {
4555
4552
  */
4556
4553
  Tags?: Tag[];
4557
4554
  /**
4558
- * <p>The Amazon Resource Number (ARN) of the stack set.</p>
4555
+ * <p>The Amazon Resource Name (ARN) of the stack set.</p>
4559
4556
  */
4560
4557
  StackSetARN?: string;
4561
4558
  /**
4562
- * <p>The Amazon Resource Number (ARN) of the IAM role used to create or update
4559
+ * <p>The Amazon Resource Name (ARN) of the IAM role used to create or update
4563
4560
  * the stack set.</p>
4564
4561
  * <p>Use customized administrator roles to control which users or groups can manage specific
4565
4562
  * stack sets within the same administrator account. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack
@@ -4741,7 +4738,7 @@ export interface StackSetOperation {
4741
4738
  */
4742
4739
  RetainStacks?: boolean;
4743
4740
  /**
4744
- * <p>The Amazon Resource Number (ARN) of the IAM role used to perform this
4741
+ * <p>The Amazon Resource Name (ARN) of the IAM role used to perform this
4745
4742
  * stack set operation.</p>
4746
4743
  * <p>Use customized administrator roles to control which users or groups can manage specific
4747
4744
  * stack sets within the same administrator account. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Define Permissions for Multiple
@@ -4783,6 +4780,10 @@ export interface StackSetOperation {
4783
4780
  * Changes in Stack Sets</a> in the CloudFormation User Guide.</p>
4784
4781
  */
4785
4782
  StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
4783
+ /**
4784
+ * <p>The status of the operation in details.</p>
4785
+ */
4786
+ StatusReason?: string;
4786
4787
  }
4787
4788
  export declare namespace StackSetOperation {
4788
4789
  /**
@@ -4844,7 +4845,7 @@ export interface DescribeTypeInput {
4844
4845
  VersionId?: string;
4845
4846
  /**
4846
4847
  * <p>The publisher ID of the extension publisher.</p>
4847
- * <p>Extensions provided by Amazon are not assigned a publisher ID.</p>
4848
+ * <p>Extensions provided by Amazon Web Services are not assigned a publisher ID.</p>
4848
4849
  */
4849
4850
  PublisherId?: string;
4850
4851
  /**
@@ -4925,7 +4926,7 @@ export interface DescribeTypeOutput {
4925
4926
  * <p>The ID of the default version of the extension. The default version is used when the
4926
4927
  * extension version isn't specified.</p>
4927
4928
  * <p>This applies only to private extensions you have registered in your account. For public
4928
- * extensions, both those provided by Amazon and published by 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>
4929
+ * extensions, both those provided by Amazon Web Services and published by 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>
4929
4930
  * <p>To set the default version of an extension, use <code>
4930
4931
  * <a>SetTypeDefaultVersion</a>
4931
4932
  * </code>.</p>
@@ -4934,8 +4935,8 @@ export interface DescribeTypeOutput {
4934
4935
  /**
4935
4936
  * <p>Whether the specified extension version is set as the default version.</p>
4936
4937
  * <p>This applies only to private extensions you have registered in your account, and
4937
- * extensions published by Amazon. For public third-party extensions, whether or not they are
4938
- * activated in your account, CloudFormation returns <code>null</code>.</p>
4938
+ * extensions published by Amazon Web Services. For public third-party extensions, whether they
4939
+ * are activated in your account, CloudFormation returns <code>null</code>.</p>
4939
4940
  */
4940
4941
  IsDefaultVersion?: boolean;
4941
4942
  /**
@@ -4943,8 +4944,8 @@ export interface DescribeTypeOutput {
4943
4944
  * test status of a specific extension version, you must specify
4944
4945
  * <code>VersionId</code>.</p>
4945
4946
  * <p>This applies only to registered private extension versions. CloudFormation
4946
- * doesn't return this information for public extensions, whether or not they are activated in
4947
- * your account.</p>
4947
+ * doesn't return this information for public extensions, whether they are activated in your
4948
+ * account.</p>
4948
4949
  * <ul>
4949
4950
  * <li>
4950
4951
  * <p>
@@ -4975,8 +4976,8 @@ export interface DescribeTypeOutput {
4975
4976
  * <p>The description of the test status. To return the extension test status of a specific
4976
4977
  * extension version, you must specify <code>VersionId</code>.</p>
4977
4978
  * <p>This applies only to registered private extension versions. CloudFormation
4978
- * doesn't return this information for public extensions, whether or not they are activated in
4979
- * your account.</p>
4979
+ * doesn't return this information for public extensions, whether they are activated in your
4980
+ * account.</p>
4980
4981
  */
4981
4982
  TypeTestsStatusDescription?: string;
4982
4983
  /**
@@ -4985,7 +4986,7 @@ export interface DescribeTypeOutput {
4985
4986
  Description?: string;
4986
4987
  /**
4987
4988
  * <p>The schema that defines the extension.</p>
4988
- * <p>For more information on extension schemas, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html">Resource Provider
4989
+ * <p>For more information about extension schemas, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html">Resource Provider
4989
4990
  * Schema</a> in the <i>CloudFormation CLI User
4990
4991
  * Guide</i>.</p>
4991
4992
  */
@@ -5049,7 +5050,7 @@ export interface DescribeTypeOutput {
5049
5050
  /**
5050
5051
  * <p>Contains logging configuration information for private extensions. This applies only to
5051
5052
  * private extensions you have registered in your account. For public extensions, both those
5052
- * provided by Amazon and published by third parties, CloudFormation returns
5053
+ * provided by Amazon Web Services and published by third parties, CloudFormation returns
5053
5054
  * <code>null</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
5054
5055
  */
5055
5056
  LoggingConfig?: LoggingConfig;
@@ -5062,7 +5063,6 @@ export interface DescribeTypeOutput {
5062
5063
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to register
5063
5064
  * the extension. This applies only to private extensions you have registered in your account.
5064
5065
  * For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
5065
- * <p></p>
5066
5066
  * <p>If the registered extension calls any Amazon Web Services APIs, you must create an
5067
5067
  * <i>
5068
5068
  * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM execution role</a>
@@ -5086,7 +5086,7 @@ export interface DescribeTypeOutput {
5086
5086
  * <li>
5087
5087
  * <p>
5088
5088
  * <code>PUBLIC</code>: The extension is publicly visible and usable within any
5089
- * Amazon account.</p>
5089
+ * Amazon Web Services account.</p>
5090
5090
  * </li>
5091
5091
  * </ul>
5092
5092
  */
@@ -5161,7 +5161,7 @@ export interface DescribeTypeOutput {
5161
5161
  */
5162
5162
  LatestPublicVersion?: string;
5163
5163
  /**
5164
- * <p>Whether or not the extension is activated in the account and region.</p>
5164
+ * <p>Whether the extension is activated in the account and region.</p>
5165
5165
  * <p>This only applies to public third-party extensions. For all other extensions, CloudFormation returns <code>null</code>.</p>
5166
5166
  */
5167
5167
  IsActivated?: boolean;
@@ -5294,7 +5294,7 @@ export interface DetectStackSetDriftInput {
5294
5294
  /**
5295
5295
  * <p>The user-specified preferences for how CloudFormation performs a stack set
5296
5296
  * operation.</p>
5297
- * <p>For more information on 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 options</a>.</p>
5297
+ * <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 options</a>.</p>
5298
5298
  */
5299
5299
  OperationPreferences?: StackSetOperationPreferences;
5300
5300
  /**
@@ -5774,7 +5774,7 @@ export interface ImportStacksToStackSetInput {
5774
5774
  /**
5775
5775
  * <p>The user-specified preferences for how CloudFormation performs a stack set
5776
5776
  * operation.</p>
5777
- * <p>For more information on 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 options</a>.</p>
5777
+ * <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 options</a>.</p>
5778
5778
  */
5779
5779
  OperationPreferences?: StackSetOperationPreferences;
5780
5780
  /**
@@ -5988,7 +5988,7 @@ export interface ListStackInstancesInput {
5988
5988
  */
5989
5989
  StackSetName: string | undefined;
5990
5990
  /**
5991
- * <p>If the previous request didn't return all of the remaining results, the response's
5991
+ * <p>If the previous request didn't return all the remaining results, the response's
5992
5992
  * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of
5993
5993
  * results, call <code>ListStackInstances</code> again and assign that token to the request
5994
5994
  * object's <code>NextToken</code> parameter. If there are no remaining results, the previous
@@ -6232,7 +6232,7 @@ export interface StackResourceDriftInformationSummary {
6232
6232
  * <p>Any resources that don't currently support drift detection have a status of
6233
6233
  * <code>NOT_CHECKED</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html">Resources that Support Drift Detection</a>. If you performed an <a>ContinueUpdateRollback</a> operation on a stack, any resources included in
6234
6234
  * <code>ResourcesToSkip</code> will also have a status of <code>NOT_CHECKED</code>.
6235
- * For more information on skipping resources during rollback operations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html">Continue Rolling Back an Update</a> in the CloudFormation User Guide.</p>
6235
+ * For more information about skipping resources during rollback operations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html">Continue Rolling Back an Update</a> in the CloudFormation User Guide.</p>
6236
6236
  * </li>
6237
6237
  * <li>
6238
6238
  * <p>
@@ -6440,7 +6440,7 @@ export interface StackSummary {
6440
6440
  */
6441
6441
  RootId?: string;
6442
6442
  /**
6443
- * <p>Summarizes information on whether a stack's actual configuration differs, or has
6443
+ * <p>Summarizes information about whether a stack's actual configuration differs, or has
6444
6444
  * <i>drifted</i>, from it's expected configuration, as defined in the stack
6445
6445
  * template and any values specified as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting Unregulated Configuration
6446
6446
  * Changes to Stacks and Resources</a>.</p>
@@ -6485,11 +6485,11 @@ export interface ListStackSetOperationResultsInput {
6485
6485
  */
6486
6486
  OperationId: string | undefined;
6487
6487
  /**
6488
- * <p>If the previous request didn't return all of the remaining results, the response
6489
- * object's <code>NextToken</code> parameter value is set to a token. To retrieve the next set
6490
- * of results, call <code>ListStackSetOperationResults</code> again and assign that token to
6491
- * the request object's <code>NextToken</code> parameter. If there are no remaining results,
6492
- * the previous response object's <code>NextToken</code> parameter is set to
6488
+ * <p>If the previous request didn't return all the remaining results, the response object's
6489
+ * <code>NextToken</code> parameter value is set to a token. To retrieve the next set of
6490
+ * results, call <code>ListStackSetOperationResults</code> again and assign that token to the
6491
+ * request object's <code>NextToken</code> parameter. If there are no remaining results, the
6492
+ * previous response object's <code>NextToken</code> parameter is set to
6493
6493
  * <code>null</code>.</p>
6494
6494
  */
6495
6495
  NextToken?: string;
@@ -6736,6 +6736,10 @@ export interface StackSetOperationSummary {
6736
6736
  * successful, or even attempted, in each account or Region.</p>
6737
6737
  */
6738
6738
  EndTimestamp?: Date;
6739
+ /**
6740
+ * <p>The status of the operation in details.</p>
6741
+ */
6742
+ StatusReason?: string;
6739
6743
  }
6740
6744
  export declare namespace StackSetOperationSummary {
6741
6745
  /**
@@ -6977,8 +6981,8 @@ export interface ListTypeRegistrationsOutput {
6977
6981
  */
6978
6982
  RegistrationTokenList?: string[];
6979
6983
  /**
6980
- * <p>If the request doesn't return all of the remaining results, <code>NextToken</code> is
6981
- * set to a token. To retrieve the next set of results, call this action again and assign that
6984
+ * <p>If the request doesn't return all the remaining results, <code>NextToken</code> is set
6985
+ * to a token. To retrieve the next set of results, call this action again and assign that
6982
6986
  * token to the request object's <code>NextToken</code> parameter. If the request returns all
6983
6987
  * results, <code>NextToken</code> is set to <code>null</code>.</p>
6984
6988
  */
@@ -7067,8 +7071,8 @@ export interface ListTypesInput {
7067
7071
  * <li>
7068
7072
  * <p>
7069
7073
  * <code>PUBLIC</code>: Extensions that are publicly visible and available to be
7070
- * activated within any Amazon account. This includes extensions from Amazon, as well as
7071
- * third-party publishers.</p>
7074
+ * activated within any Amazon Web Services account. This includes extensions from Amazon Web Services, in
7075
+ * addition to third-party publishers.</p>
7072
7076
  * </li>
7073
7077
  * </ul>
7074
7078
  * <p>The default is <code>PRIVATE</code>.</p>
@@ -7138,9 +7142,9 @@ export interface ListTypesInput {
7138
7142
  */
7139
7143
  MaxResults?: number;
7140
7144
  /**
7141
- * <p>If the previous paginated request didn't return all of the remaining results, the
7142
- * response object's <code>NextToken</code> parameter value is set to a token. To retrieve the
7143
- * next set of results, call this action again and assign that token to the request object's
7145
+ * <p>If the previous paginated request didn't return all the remaining results, the response
7146
+ * object's <code>NextToken</code> parameter value is set to a token. To retrieve the next set
7147
+ * of results, call this action again and assign that token to the request object's
7144
7148
  * <code>NextToken</code> parameter. If there are no remaining results, the previous
7145
7149
  * response object's <code>NextToken</code> parameter is set to <code>null</code>.</p>
7146
7150
  */
@@ -7248,7 +7252,7 @@ export interface TypeSummary {
7248
7252
  */
7249
7253
  PublisherName?: string;
7250
7254
  /**
7251
- * <p>Whether or not the extension is activated for this account and region.</p>
7255
+ * <p>Whether the extension is activated for this account and region.</p>
7252
7256
  * <p>This applies only to third-party public extensions. Extensions published by Amazon are
7253
7257
  * activated by default.</p>
7254
7258
  */
@@ -7429,7 +7433,7 @@ export interface PublishTypeInput {
7429
7433
  */
7430
7434
  Type?: ThirdPartyType | string;
7431
7435
  /**
7432
- * <p>The Amazon Resource Number (ARN) of the extension.</p>
7436
+ * <p>The Amazon Resource Name (ARN) of the extension.</p>
7433
7437
  * <p>Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and
7434
7438
  * <code>Type</code>.</p>
7435
7439
  */
@@ -7464,7 +7468,7 @@ export declare namespace PublishTypeInput {
7464
7468
  }
7465
7469
  export interface PublishTypeOutput {
7466
7470
  /**
7467
- * <p>The Amazon Resource Number (ARN) assigned to the public extension upon
7471
+ * <p>The Amazon Resource Name (ARN) assigned to the public extension upon
7468
7472
  * publication.</p>
7469
7473
  */
7470
7474
  PublicTypeArn?: string;
@@ -7614,7 +7618,7 @@ export interface RegisterTypeInput {
7614
7618
  Type?: RegistryType | string;
7615
7619
  /**
7616
7620
  * <p>The name of the extension being registered.</p>
7617
- * <p>We recommend that extension names adhere to the following patterns:</p>
7621
+ * <p>We suggest that extension names adhere to the following patterns:</p>
7618
7622
  * <ul>
7619
7623
  * <li>
7620
7624
  * <p>For resource types,
@@ -7624,6 +7628,9 @@ export interface RegisterTypeInput {
7624
7628
  * <p>For modules,
7625
7629
  * <i>company_or_organization</i>::<i>service</i>::<i>type</i>::MODULE.</p>
7626
7630
  * </li>
7631
+ * <li>
7632
+ * <p>For hooks, <i>MyCompany</i>::<i>Testing</i>::<i>MyTestHook</i>.</p>
7633
+ * </li>
7627
7634
  * </ul>
7628
7635
  *
7629
7636
  * <note>
@@ -7667,7 +7674,7 @@ export interface RegisterTypeInput {
7667
7674
  /**
7668
7675
  * <p>A URL to the S3 bucket containing the extension project package that contains the
7669
7676
  * necessary files for the extension you want to register.</p>
7670
- * <p>For information on generating a schema handler package for the extension you want to
7677
+ * <p>For information about generating a schema handler package for the extension you want to
7671
7678
  * register, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html">submit</a>
7672
7679
  * in the <i>CloudFormation CLI User Guide</i>.</p>
7673
7680
  * <note>
@@ -7687,7 +7694,7 @@ export interface RegisterTypeInput {
7687
7694
  * <p>The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.</p>
7688
7695
  * <p>For CloudFormation to assume the specified execution role, the role must
7689
7696
  * contain a trust relationship with the CloudFormation service principle
7690
- * (<code>resources.cloudformation.amazonaws.com</code>). For more information on adding
7697
+ * (<code>resources.cloudformation.amazonaws.com</code>). For more information about adding
7691
7698
  * trust relationships, see <a href="IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy">Modifying a role trust policy</a> in the <i>Identity and Access Management User
7692
7699
  * Guide</i>.</p>
7693
7700
  * <p>If your extension calls Amazon Web Services APIs in any of its handlers, you must create
@@ -8081,7 +8088,7 @@ export interface UpdateStackInput {
8081
8088
  * the <code>StackPolicyDuringUpdateBody</code> or the <code>StackPolicyDuringUpdateURL</code>
8082
8089
  * parameter, but not both.</p>
8083
8090
  * <p>If you want to update protected resources, specify a temporary overriding stack policy
8084
- * during this update. If you do not specify a stack policy, the current policy that is
8091
+ * during this update. If you don't specify a stack policy, the current policy that is
8085
8092
  * associated with the stack will be used.</p>
8086
8093
  */
8087
8094
  StackPolicyDuringUpdateBody?: string;
@@ -8091,7 +8098,7 @@ export interface UpdateStackInput {
8091
8098
  * can specify either the <code>StackPolicyDuringUpdateBody</code> or the
8092
8099
  * <code>StackPolicyDuringUpdateURL</code> parameter, but not both.</p>
8093
8100
  * <p>If you want to update protected resources, specify a temporary overriding stack policy
8094
- * during this update. If you do not specify a stack policy, the current policy that is
8101
+ * during this update. If you don't specify a stack policy, the current policy that is
8095
8102
  * associated with the stack will be used.</p>
8096
8103
  */
8097
8104
  StackPolicyDuringUpdateURL?: string;
@@ -8130,7 +8137,7 @@ export interface UpdateStackInput {
8130
8137
  * <code>InsufficientCapabilities</code> error.</p>
8131
8138
  * </li>
8132
8139
  * </ul>
8133
- * <p>If your stack template contains these resources, we recommend that you review all
8140
+ * <p>If your stack template contains these resources, we suggest that you review all
8134
8141
  * permissions associated with them and edit their permissions if necessary.</p>
8135
8142
  * <ul>
8136
8143
  * <li>
@@ -8600,7 +8607,7 @@ export interface UpdateStackSetInput {
8600
8607
  */
8601
8608
  OperationPreferences?: StackSetOperationPreferences;
8602
8609
  /**
8603
- * <p>The Amazon Resource Number (ARN) of the IAM role to use to update this
8610
+ * <p>The Amazon Resource Name (ARN) of the IAM role to use to update this
8604
8611
  * stack set.</p>
8605
8612
  * <p>Specify an IAM role only if you are using customized administrator roles
8606
8613
  * to control which users or groups can manage specific stack sets within the same
@@ -505,9 +505,7 @@ export interface ResourceToImport {
505
505
 
506
506
  LogicalResourceId: string | undefined;
507
507
 
508
- ResourceIdentifier: {
509
- [key: string]: string;
510
- } | undefined;
508
+ ResourceIdentifier: Record<string, string> | undefined;
511
509
  }
512
510
  export declare namespace ResourceToImport {
513
511
 
@@ -1782,6 +1780,8 @@ export interface StackSetOperation {
1782
1780
  DeploymentTargets?: DeploymentTargets;
1783
1781
 
1784
1782
  StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
1783
+
1784
+ StatusReason?: string;
1785
1785
  }
1786
1786
  export declare namespace StackSetOperation {
1787
1787
 
@@ -2527,6 +2527,8 @@ export interface StackSetOperationSummary {
2527
2527
  CreationTimestamp?: Date;
2528
2528
 
2529
2529
  EndTimestamp?: Date;
2530
+
2531
+ StatusReason?: string;
2530
2532
  }
2531
2533
  export declare namespace StackSetOperationSummary {
2532
2534
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.95.0",
4
+ "version": "3.105.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.95.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.95.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",
@@ -35,15 +36,15 @@
35
36
  "@aws-sdk/node-config-provider": "3.80.0",
36
37
  "@aws-sdk/node-http-handler": "3.94.0",
37
38
  "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.85.0",
39
+ "@aws-sdk/smithy-client": "3.99.0",
39
40
  "@aws-sdk/types": "3.78.0",
40
41
  "@aws-sdk/url-parser": "3.78.0",
41
42
  "@aws-sdk/util-base64-browser": "3.58.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.85.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.85.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.99.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
48
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
49
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
50
  "@aws-sdk/util-utf8-browser": "3.55.0",