@aws-sdk/client-cloudformation 3.933.0 → 3.934.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/README.md +8 -0
- package/dist-cjs/index.js +285 -82
- package/dist-es/CloudFormation.js +2 -0
- package/dist-es/commands/DescribeEventsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +95 -56
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/pagination/DescribeChangeSetPaginator.js +4 -0
- package/dist-es/pagination/DescribeEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +161 -28
- package/dist-types/CloudFormation.d.ts +8 -0
- package/dist-types/CloudFormationClient.d.ts +3 -2
- package/dist-types/commands/CreateChangeSetCommand.d.ts +1 -0
- package/dist-types/commands/CreateStackCommand.d.ts +1 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +20 -3
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventsCommand.d.ts +143 -0
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStacksCommand.d.ts +6 -0
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +1 -1
- package/dist-types/commands/GetHookResultCommand.d.ts +5 -0
- package/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +2 -2
- package/dist-types/commands/ListStackRefactorsCommand.d.ts +2 -1
- package/dist-types/commands/ListStackResourcesCommand.d.ts +2 -2
- package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +1 -1
- package/dist-types/commands/ListStacksCommand.d.ts +7 -1
- package/dist-types/commands/RollbackStackCommand.d.ts +1 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +3943 -3901
- package/dist-types/models/models_1.d.ts +499 -1
- package/dist-types/pagination/DescribeChangeSetPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/CloudFormation.d.ts +18 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListStackRefactorsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStackResourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStacksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +186 -144
- package/dist-types/ts3.4/models/models_1.d.ts +92 -1
- package/dist-types/ts3.4/pagination/DescribeChangeSetPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -390,6 +390,14 @@ DescribeChangeSetHooks
|
|
|
390
390
|
|
|
391
391
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudformation/command/DescribeChangeSetHooksCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudformation/Interface/DescribeChangeSetHooksCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudformation/Interface/DescribeChangeSetHooksCommandOutput/)
|
|
392
392
|
|
|
393
|
+
</details>
|
|
394
|
+
<details>
|
|
395
|
+
<summary>
|
|
396
|
+
DescribeEvents
|
|
397
|
+
</summary>
|
|
398
|
+
|
|
399
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudformation/command/DescribeEventsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudformation/Interface/DescribeEventsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudformation/Interface/DescribeEventsCommandOutput/)
|
|
400
|
+
|
|
393
401
|
</details>
|
|
394
402
|
<details>
|
|
395
403
|
<summary>
|