aws-cdk 2.1000.3 → 2.1002.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 (63) hide show
  1. package/README.md +15 -0
  2. package/THIRD_PARTY_LICENSES +246 -40
  3. package/build-info.json +2 -2
  4. package/lib/api/aws-auth/sdk.d.ts +6 -0
  5. package/lib/api/aws-auth/sdk.js +9 -1
  6. package/lib/api/bootstrap/bootstrap-template.yaml +3 -1
  7. package/lib/api/deployments/deploy-stack.d.ts +0 -20
  8. package/lib/api/deployments/deploy-stack.js +25 -20
  9. package/lib/api/deployments/deployments.d.ts +0 -27
  10. package/lib/api/deployments/deployments.js +13 -13
  11. package/lib/api/resource-import/importer.d.ts +0 -8
  12. package/lib/api/resource-import/importer.js +1 -1
  13. package/lib/api/resource-import/migrator.js +1 -2
  14. package/lib/api/stack-events/stack-activity-monitor.d.ts +87 -165
  15. package/lib/api/stack-events/stack-activity-monitor.js +61 -445
  16. package/lib/api/stack-events/stack-event-poller.d.ts +6 -0
  17. package/lib/api/stack-events/stack-event-poller.js +1 -1
  18. package/lib/api/stack-events/stack-progress-monitor.d.ts +61 -0
  19. package/lib/api/stack-events/stack-progress-monitor.js +94 -0
  20. package/lib/api/work-graph/work-graph-builder.js +4 -4
  21. package/lib/cli/activity-printer/base.d.ts +51 -0
  22. package/lib/cli/activity-printer/base.js +115 -0
  23. package/lib/cli/activity-printer/current.d.ts +25 -0
  24. package/lib/cli/activity-printer/current.js +122 -0
  25. package/lib/cli/activity-printer/history.d.ts +31 -0
  26. package/lib/cli/activity-printer/history.js +109 -0
  27. package/lib/cli/activity-printer/index.d.ts +3 -0
  28. package/lib/cli/activity-printer/index.js +20 -0
  29. package/lib/cli/cdk-toolkit.d.ts +1 -1
  30. package/lib/cli/cdk-toolkit.js +10 -9
  31. package/lib/cli/cli-config.js +5 -4
  32. package/lib/cli/cli.js +3 -1
  33. package/lib/cli/convert-to-user-input.js +18 -16
  34. package/lib/cli/parse-command-line-arguments.js +7 -1
  35. package/lib/cli/user-input.d.ts +8 -0
  36. package/lib/cli/user-input.js +1 -1
  37. package/lib/commands/deploy.d.ts +13 -0
  38. package/lib/commands/deploy.js +18 -0
  39. package/lib/context-providers/cc-api-provider.d.ts +34 -0
  40. package/lib/context-providers/cc-api-provider.js +116 -0
  41. package/lib/context-providers/index.js +3 -1
  42. package/lib/index.js +24292 -21248
  43. package/lib/init.d.ts +5 -1
  44. package/lib/init.js +11 -8
  45. package/lib/legacy-exports-source.d.ts +1 -1
  46. package/lib/legacy-exports-source.js +2 -2
  47. package/lib/notices.d.ts +48 -5
  48. package/lib/notices.js +127 -82
  49. package/lib/toolkit/cli-io-host.d.ts +28 -0
  50. package/lib/toolkit/cli-io-host.js +74 -2
  51. package/lib/toolkit/error.d.ts +1 -44
  52. package/lib/toolkit/error.js +16 -76
  53. package/lib/tree.d.ts +3 -3
  54. package/lib/tree.js +4 -4
  55. package/lib/util/cloudformation.d.ts +12 -0
  56. package/lib/util/cloudformation.js +27 -1
  57. package/lib/util/json.d.ts +48 -0
  58. package/lib/util/json.js +68 -0
  59. package/lib/util/string-manipulation.d.ts +5 -1
  60. package/lib/util/string-manipulation.js +11 -5
  61. package/package.json +25 -23
  62. /package/lib/{api/stack-events → cli/activity-printer}/display.d.ts +0 -0
  63. /package/lib/{api/stack-events → cli/activity-printer}/display.js +0 -0
package/README.md CHANGED
@@ -39,6 +39,21 @@ The AWS CDK Toolkit provides the `cdk` command-line interface that can be used t
39
39
 
40
40
  This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
41
41
 
42
+ ## Global Options
43
+
44
+ ### `unstable`
45
+
46
+ The `--unstable` flag indicates that the scope and API of a feature might still change.
47
+ Otherwise the feature is generally production ready and fully supported. For example,
48
+ `cdk gc` is gated behind an `--unstable` flag:
49
+
50
+ ```bash
51
+ cdk gc --unstable=gc
52
+ ```
53
+
54
+ The command will fail if `--unstable=gc` is not passed in, which acknowledges that the user
55
+ is aware of the caveats in place for the feature.
56
+
42
57
  ## Commands
43
58
 
44
59
  ### `cdk docs`
@@ -618,7 +618,7 @@ The aws-cdk package includes the following third-party software/licensing:
618
618
 
619
619
  ----------------
620
620
 
621
- ** @aws-sdk/client-appsync@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.741.0 | Apache-2.0
621
+ ** @aws-sdk/client-appsync@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.758.0 | Apache-2.0
622
622
  Apache License
623
623
  Version 2.0, January 2004
624
624
  http://www.apache.org/licenses/
@@ -824,7 +824,213 @@ The aws-cdk package includes the following third-party software/licensing:
824
824
 
825
825
  ----------------
826
826
 
827
- ** @aws-sdk/client-cloudformation@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.741.0 | Apache-2.0
827
+ ** @aws-sdk/client-cloudcontrol@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.758.0 | Apache-2.0
828
+ Apache License
829
+ Version 2.0, January 2004
830
+ http://www.apache.org/licenses/
831
+
832
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
833
+
834
+ 1. Definitions.
835
+
836
+ "License" shall mean the terms and conditions for use, reproduction,
837
+ and distribution as defined by Sections 1 through 9 of this document.
838
+
839
+ "Licensor" shall mean the copyright owner or entity authorized by
840
+ the copyright owner that is granting the License.
841
+
842
+ "Legal Entity" shall mean the union of the acting entity and all
843
+ other entities that control, are controlled by, or are under common
844
+ control with that entity. For the purposes of this definition,
845
+ "control" means (i) the power, direct or indirect, to cause the
846
+ direction or management of such entity, whether by contract or
847
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
848
+ outstanding shares, or (iii) beneficial ownership of such entity.
849
+
850
+ "You" (or "Your") shall mean an individual or Legal Entity
851
+ exercising permissions granted by this License.
852
+
853
+ "Source" form shall mean the preferred form for making modifications,
854
+ including but not limited to software source code, documentation
855
+ source, and configuration files.
856
+
857
+ "Object" form shall mean any form resulting from mechanical
858
+ transformation or translation of a Source form, including but
859
+ not limited to compiled object code, generated documentation,
860
+ and conversions to other media types.
861
+
862
+ "Work" shall mean the work of authorship, whether in Source or
863
+ Object form, made available under the License, as indicated by a
864
+ copyright notice that is included in or attached to the work
865
+ (an example is provided in the Appendix below).
866
+
867
+ "Derivative Works" shall mean any work, whether in Source or Object
868
+ form, that is based on (or derived from) the Work and for which the
869
+ editorial revisions, annotations, elaborations, or other modifications
870
+ represent, as a whole, an original work of authorship. For the purposes
871
+ of this License, Derivative Works shall not include works that remain
872
+ separable from, or merely link (or bind by name) to the interfaces of,
873
+ the Work and Derivative Works thereof.
874
+
875
+ "Contribution" shall mean any work of authorship, including
876
+ the original version of the Work and any modifications or additions
877
+ to that Work or Derivative Works thereof, that is intentionally
878
+ submitted to Licensor for inclusion in the Work by the copyright owner
879
+ or by an individual or Legal Entity authorized to submit on behalf of
880
+ the copyright owner. For the purposes of this definition, "submitted"
881
+ means any form of electronic, verbal, or written communication sent
882
+ to the Licensor or its representatives, including but not limited to
883
+ communication on electronic mailing lists, source code control systems,
884
+ and issue tracking systems that are managed by, or on behalf of, the
885
+ Licensor for the purpose of discussing and improving the Work, but
886
+ excluding communication that is conspicuously marked or otherwise
887
+ designated in writing by the copyright owner as "Not a Contribution."
888
+
889
+ "Contributor" shall mean Licensor and any individual or Legal Entity
890
+ on behalf of whom a Contribution has been received by Licensor and
891
+ subsequently incorporated within the Work.
892
+
893
+ 2. Grant of Copyright License. Subject to the terms and conditions of
894
+ this License, each Contributor hereby grants to You a perpetual,
895
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
896
+ copyright license to reproduce, prepare Derivative Works of,
897
+ publicly display, publicly perform, sublicense, and distribute the
898
+ Work and such Derivative Works in Source or Object form.
899
+
900
+ 3. Grant of Patent License. Subject to the terms and conditions of
901
+ this License, each Contributor hereby grants to You a perpetual,
902
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
903
+ (except as stated in this section) patent license to make, have made,
904
+ use, offer to sell, sell, import, and otherwise transfer the Work,
905
+ where such license applies only to those patent claims licensable
906
+ by such Contributor that are necessarily infringed by their
907
+ Contribution(s) alone or by combination of their Contribution(s)
908
+ with the Work to which such Contribution(s) was submitted. If You
909
+ institute patent litigation against any entity (including a
910
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
911
+ or a Contribution incorporated within the Work constitutes direct
912
+ or contributory patent infringement, then any patent licenses
913
+ granted to You under this License for that Work shall terminate
914
+ as of the date such litigation is filed.
915
+
916
+ 4. Redistribution. You may reproduce and distribute copies of the
917
+ Work or Derivative Works thereof in any medium, with or without
918
+ modifications, and in Source or Object form, provided that You
919
+ meet the following conditions:
920
+
921
+ (a) You must give any other recipients of the Work or
922
+ Derivative Works a copy of this License; and
923
+
924
+ (b) You must cause any modified files to carry prominent notices
925
+ stating that You changed the files; and
926
+
927
+ (c) You must retain, in the Source form of any Derivative Works
928
+ that You distribute, all copyright, patent, trademark, and
929
+ attribution notices from the Source form of the Work,
930
+ excluding those notices that do not pertain to any part of
931
+ the Derivative Works; and
932
+
933
+ (d) If the Work includes a "NOTICE" text file as part of its
934
+ distribution, then any Derivative Works that You distribute must
935
+ include a readable copy of the attribution notices contained
936
+ within such NOTICE file, excluding those notices that do not
937
+ pertain to any part of the Derivative Works, in at least one
938
+ of the following places: within a NOTICE text file distributed
939
+ as part of the Derivative Works; within the Source form or
940
+ documentation, if provided along with the Derivative Works; or,
941
+ within a display generated by the Derivative Works, if and
942
+ wherever such third-party notices normally appear. The contents
943
+ of the NOTICE file are for informational purposes only and
944
+ do not modify the License. You may add Your own attribution
945
+ notices within Derivative Works that You distribute, alongside
946
+ or as an addendum to the NOTICE text from the Work, provided
947
+ that such additional attribution notices cannot be construed
948
+ as modifying the License.
949
+
950
+ You may add Your own copyright statement to Your modifications and
951
+ may provide additional or different license terms and conditions
952
+ for use, reproduction, or distribution of Your modifications, or
953
+ for any such Derivative Works as a whole, provided Your use,
954
+ reproduction, and distribution of the Work otherwise complies with
955
+ the conditions stated in this License.
956
+
957
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
958
+ any Contribution intentionally submitted for inclusion in the Work
959
+ by You to the Licensor shall be under the terms and conditions of
960
+ this License, without any additional terms or conditions.
961
+ Notwithstanding the above, nothing herein shall supersede or modify
962
+ the terms of any separate license agreement you may have executed
963
+ with Licensor regarding such Contributions.
964
+
965
+ 6. Trademarks. This License does not grant permission to use the trade
966
+ names, trademarks, service marks, or product names of the Licensor,
967
+ except as required for reasonable and customary use in describing the
968
+ origin of the Work and reproducing the content of the NOTICE file.
969
+
970
+ 7. Disclaimer of Warranty. Unless required by applicable law or
971
+ agreed to in writing, Licensor provides the Work (and each
972
+ Contributor provides its Contributions) on an "AS IS" BASIS,
973
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
974
+ implied, including, without limitation, any warranties or conditions
975
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
976
+ PARTICULAR PURPOSE. You are solely responsible for determining the
977
+ appropriateness of using or redistributing the Work and assume any
978
+ risks associated with Your exercise of permissions under this License.
979
+
980
+ 8. Limitation of Liability. In no event and under no legal theory,
981
+ whether in tort (including negligence), contract, or otherwise,
982
+ unless required by applicable law (such as deliberate and grossly
983
+ negligent acts) or agreed to in writing, shall any Contributor be
984
+ liable to You for damages, including any direct, indirect, special,
985
+ incidental, or consequential damages of any character arising as a
986
+ result of this License or out of the use or inability to use the
987
+ Work (including but not limited to damages for loss of goodwill,
988
+ work stoppage, computer failure or malfunction, or any and all
989
+ other commercial damages or losses), even if such Contributor
990
+ has been advised of the possibility of such damages.
991
+
992
+ 9. Accepting Warranty or Additional Liability. While redistributing
993
+ the Work or Derivative Works thereof, You may choose to offer,
994
+ and charge a fee for, acceptance of support, warranty, indemnity,
995
+ or other liability obligations and/or rights consistent with this
996
+ License. However, in accepting such obligations, You may act only
997
+ on Your own behalf and on Your sole responsibility, not on behalf
998
+ of any other Contributor, and only if You agree to indemnify,
999
+ defend, and hold each Contributor harmless for any liability
1000
+ incurred by, or claims asserted against, such Contributor by reason
1001
+ of your accepting any such warranty or additional liability.
1002
+
1003
+ END OF TERMS AND CONDITIONS
1004
+
1005
+ APPENDIX: How to apply the Apache License to your work.
1006
+
1007
+ To apply the Apache License to your work, attach the following
1008
+ boilerplate notice, with the fields enclosed by brackets "{}"
1009
+ replaced with your own identifying information. (Don't include
1010
+ the brackets!) The text should be enclosed in the appropriate
1011
+ comment syntax for the file format. We also recommend that a
1012
+ file or class name and description of purpose be included on the
1013
+ same "printed page" as the copyright notice for easier
1014
+ identification within third-party archives.
1015
+
1016
+ Copyright 2018-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1017
+
1018
+ Licensed under the Apache License, Version 2.0 (the "License");
1019
+ you may not use this file except in compliance with the License.
1020
+ You may obtain a copy of the License at
1021
+
1022
+ http://www.apache.org/licenses/LICENSE-2.0
1023
+
1024
+ Unless required by applicable law or agreed to in writing, software
1025
+ distributed under the License is distributed on an "AS IS" BASIS,
1026
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1027
+ See the License for the specific language governing permissions and
1028
+ limitations under the License.
1029
+
1030
+
1031
+ ----------------
1032
+
1033
+ ** @aws-sdk/client-cloudformation@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.758.0 | Apache-2.0
828
1034
  Apache License
829
1035
  Version 2.0, January 2004
830
1036
  http://www.apache.org/licenses/
@@ -1030,7 +1236,7 @@ The aws-cdk package includes the following third-party software/licensing:
1030
1236
 
1031
1237
  ----------------
1032
1238
 
1033
- ** @aws-sdk/client-cloudwatch-logs@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.741.0 | Apache-2.0
1239
+ ** @aws-sdk/client-cloudwatch-logs@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.758.0 | Apache-2.0
1034
1240
  Apache License
1035
1241
  Version 2.0, January 2004
1036
1242
  http://www.apache.org/licenses/
@@ -1236,7 +1442,7 @@ The aws-cdk package includes the following third-party software/licensing:
1236
1442
 
1237
1443
  ----------------
1238
1444
 
1239
- ** @aws-sdk/client-codebuild@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.741.0 | Apache-2.0
1445
+ ** @aws-sdk/client-codebuild@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.758.0 | Apache-2.0
1240
1446
  Apache License
1241
1447
  Version 2.0, January 2004
1242
1448
  http://www.apache.org/licenses/
@@ -1442,7 +1648,7 @@ The aws-cdk package includes the following third-party software/licensing:
1442
1648
 
1443
1649
  ----------------
1444
1650
 
1445
- ** @aws-sdk/client-cognito-identity@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.741.0 | Apache-2.0
1651
+ ** @aws-sdk/client-cognito-identity@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.758.0 | Apache-2.0
1446
1652
  Apache License
1447
1653
  Version 2.0, January 2004
1448
1654
  http://www.apache.org/licenses/
@@ -1648,7 +1854,7 @@ The aws-cdk package includes the following third-party software/licensing:
1648
1854
 
1649
1855
  ----------------
1650
1856
 
1651
- ** @aws-sdk/client-ec2@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.741.0 | Apache-2.0
1857
+ ** @aws-sdk/client-ec2@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.758.0 | Apache-2.0
1652
1858
  Apache License
1653
1859
  Version 2.0, January 2004
1654
1860
  http://www.apache.org/licenses/
@@ -1854,7 +2060,7 @@ The aws-cdk package includes the following third-party software/licensing:
1854
2060
 
1855
2061
  ----------------
1856
2062
 
1857
- ** @aws-sdk/client-ecr@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.741.0 | Apache-2.0
2063
+ ** @aws-sdk/client-ecr@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.758.0 | Apache-2.0
1858
2064
  Apache License
1859
2065
  Version 2.0, January 2004
1860
2066
  http://www.apache.org/licenses/
@@ -2060,7 +2266,7 @@ The aws-cdk package includes the following third-party software/licensing:
2060
2266
 
2061
2267
  ----------------
2062
2268
 
2063
- ** @aws-sdk/client-ecs@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.741.0 | Apache-2.0
2269
+ ** @aws-sdk/client-ecs@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.758.0 | Apache-2.0
2064
2270
  Apache License
2065
2271
  Version 2.0, January 2004
2066
2272
  http://www.apache.org/licenses/
@@ -2266,7 +2472,7 @@ The aws-cdk package includes the following third-party software/licensing:
2266
2472
 
2267
2473
  ----------------
2268
2474
 
2269
- ** @aws-sdk/client-elastic-load-balancing-v2@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.741.0 | Apache-2.0
2475
+ ** @aws-sdk/client-elastic-load-balancing-v2@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.758.0 | Apache-2.0
2270
2476
  Apache License
2271
2477
  Version 2.0, January 2004
2272
2478
  http://www.apache.org/licenses/
@@ -2472,7 +2678,7 @@ The aws-cdk package includes the following third-party software/licensing:
2472
2678
 
2473
2679
  ----------------
2474
2680
 
2475
- ** @aws-sdk/client-iam@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.741.0 | Apache-2.0
2681
+ ** @aws-sdk/client-iam@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.758.0 | Apache-2.0
2476
2682
  Apache License
2477
2683
  Version 2.0, January 2004
2478
2684
  http://www.apache.org/licenses/
@@ -2678,7 +2884,7 @@ The aws-cdk package includes the following third-party software/licensing:
2678
2884
 
2679
2885
  ----------------
2680
2886
 
2681
- ** @aws-sdk/client-kms@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.741.0 | Apache-2.0
2887
+ ** @aws-sdk/client-kms@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.758.0 | Apache-2.0
2682
2888
  Apache License
2683
2889
  Version 2.0, January 2004
2684
2890
  http://www.apache.org/licenses/
@@ -2884,7 +3090,7 @@ The aws-cdk package includes the following third-party software/licensing:
2884
3090
 
2885
3091
  ----------------
2886
3092
 
2887
- ** @aws-sdk/client-lambda@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.741.0 | Apache-2.0
3093
+ ** @aws-sdk/client-lambda@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.758.0 | Apache-2.0
2888
3094
  Apache License
2889
3095
  Version 2.0, January 2004
2890
3096
  http://www.apache.org/licenses/
@@ -3090,7 +3296,7 @@ The aws-cdk package includes the following third-party software/licensing:
3090
3296
 
3091
3297
  ----------------
3092
3298
 
3093
- ** @aws-sdk/client-route-53@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.741.0 | Apache-2.0
3299
+ ** @aws-sdk/client-route-53@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.758.0 | Apache-2.0
3094
3300
  Apache License
3095
3301
  Version 2.0, January 2004
3096
3302
  http://www.apache.org/licenses/
@@ -3296,7 +3502,7 @@ The aws-cdk package includes the following third-party software/licensing:
3296
3502
 
3297
3503
  ----------------
3298
3504
 
3299
- ** @aws-sdk/client-s3@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.741.0 | Apache-2.0
3505
+ ** @aws-sdk/client-s3@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.758.0 | Apache-2.0
3300
3506
  Apache License
3301
3507
  Version 2.0, January 2004
3302
3508
  http://www.apache.org/licenses/
@@ -3502,7 +3708,7 @@ The aws-cdk package includes the following third-party software/licensing:
3502
3708
 
3503
3709
  ----------------
3504
3710
 
3505
- ** @aws-sdk/client-secrets-manager@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.741.0 | Apache-2.0
3711
+ ** @aws-sdk/client-secrets-manager@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.758.0 | Apache-2.0
3506
3712
  Apache License
3507
3713
  Version 2.0, January 2004
3508
3714
  http://www.apache.org/licenses/
@@ -3708,7 +3914,7 @@ The aws-cdk package includes the following third-party software/licensing:
3708
3914
 
3709
3915
  ----------------
3710
3916
 
3711
- ** @aws-sdk/client-sfn@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.741.0 | Apache-2.0
3917
+ ** @aws-sdk/client-sfn@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.758.0 | Apache-2.0
3712
3918
  Apache License
3713
3919
  Version 2.0, January 2004
3714
3920
  http://www.apache.org/licenses/
@@ -3914,7 +4120,7 @@ The aws-cdk package includes the following third-party software/licensing:
3914
4120
 
3915
4121
  ----------------
3916
4122
 
3917
- ** @aws-sdk/client-ssm@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.741.0 | Apache-2.0
4123
+ ** @aws-sdk/client-ssm@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.758.0 | Apache-2.0
3918
4124
  Apache License
3919
4125
  Version 2.0, January 2004
3920
4126
  http://www.apache.org/licenses/
@@ -4120,7 +4326,7 @@ The aws-cdk package includes the following third-party software/licensing:
4120
4326
 
4121
4327
  ----------------
4122
4328
 
4123
- ** @aws-sdk/client-sso@3.734.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.734.0 | Apache-2.0
4329
+ ** @aws-sdk/client-sso@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.758.0 | Apache-2.0
4124
4330
  Apache License
4125
4331
  Version 2.0, January 2004
4126
4332
  http://www.apache.org/licenses/
@@ -4326,7 +4532,7 @@ The aws-cdk package includes the following third-party software/licensing:
4326
4532
 
4327
4533
  ----------------
4328
4534
 
4329
- ** @aws-sdk/client-sts@3.741.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.741.0 | Apache-2.0
4535
+ ** @aws-sdk/client-sts@3.758.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.758.0 | Apache-2.0
4330
4536
  Apache License
4331
4537
  Version 2.0, January 2004
4332
4538
  http://www.apache.org/licenses/
@@ -4532,11 +4738,11 @@ The aws-cdk package includes the following third-party software/licensing:
4532
4738
 
4533
4739
  ----------------
4534
4740
 
4535
- ** @aws-sdk/core@3.734.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.734.0 | Apache-2.0
4741
+ ** @aws-sdk/core@3.758.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.758.0 | Apache-2.0
4536
4742
 
4537
4743
  ----------------
4538
4744
 
4539
- ** @aws-sdk/credential-provider-cognito-identity@3.741.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.741.0 | Apache-2.0
4745
+ ** @aws-sdk/credential-provider-cognito-identity@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.758.0 | Apache-2.0
4540
4746
  Apache License
4541
4747
  Version 2.0, January 2004
4542
4748
  http://www.apache.org/licenses/
@@ -4742,7 +4948,7 @@ The aws-cdk package includes the following third-party software/licensing:
4742
4948
 
4743
4949
  ----------------
4744
4950
 
4745
- ** @aws-sdk/credential-provider-env@3.734.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.734.0 | Apache-2.0
4951
+ ** @aws-sdk/credential-provider-env@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.758.0 | Apache-2.0
4746
4952
  Apache License
4747
4953
  Version 2.0, January 2004
4748
4954
  http://www.apache.org/licenses/
@@ -4947,11 +5153,11 @@ Apache License
4947
5153
 
4948
5154
  ----------------
4949
5155
 
4950
- ** @aws-sdk/credential-provider-http@3.734.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.734.0 | Apache-2.0
5156
+ ** @aws-sdk/credential-provider-http@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.758.0 | Apache-2.0
4951
5157
 
4952
5158
  ----------------
4953
5159
 
4954
- ** @aws-sdk/credential-provider-ini@3.741.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.741.0 | Apache-2.0
5160
+ ** @aws-sdk/credential-provider-ini@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.758.0 | Apache-2.0
4955
5161
  Apache License
4956
5162
  Version 2.0, January 2004
4957
5163
  http://www.apache.org/licenses/
@@ -5156,7 +5362,7 @@ Apache License
5156
5362
 
5157
5363
  ----------------
5158
5364
 
5159
- ** @aws-sdk/credential-provider-node@3.741.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.741.0 | Apache-2.0
5365
+ ** @aws-sdk/credential-provider-node@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.758.0 | Apache-2.0
5160
5366
  Apache License
5161
5367
  Version 2.0, January 2004
5162
5368
  http://www.apache.org/licenses/
@@ -5361,7 +5567,7 @@ Apache License
5361
5567
 
5362
5568
  ----------------
5363
5569
 
5364
- ** @aws-sdk/credential-provider-process@3.734.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.734.0 | Apache-2.0
5570
+ ** @aws-sdk/credential-provider-process@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.758.0 | Apache-2.0
5365
5571
  Apache License
5366
5572
  Version 2.0, January 2004
5367
5573
  http://www.apache.org/licenses/
@@ -5566,7 +5772,7 @@ Apache License
5566
5772
 
5567
5773
  ----------------
5568
5774
 
5569
- ** @aws-sdk/credential-provider-sso@3.734.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.734.0 | Apache-2.0
5775
+ ** @aws-sdk/credential-provider-sso@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.758.0 | Apache-2.0
5570
5776
  Apache License
5571
5777
  Version 2.0, January 2004
5572
5778
  http://www.apache.org/licenses/
@@ -5771,7 +5977,7 @@ Apache License
5771
5977
 
5772
5978
  ----------------
5773
5979
 
5774
- ** @aws-sdk/credential-provider-web-identity@3.734.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.734.0 | Apache-2.0
5980
+ ** @aws-sdk/credential-provider-web-identity@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.758.0 | Apache-2.0
5775
5981
  Apache License
5776
5982
  Version 2.0, January 2004
5777
5983
  http://www.apache.org/licenses/
@@ -5976,7 +6182,7 @@ Apache License
5976
6182
 
5977
6183
  ----------------
5978
6184
 
5979
- ** @aws-sdk/credential-providers@3.741.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.741.0 | Apache-2.0
6185
+ ** @aws-sdk/credential-providers@3.758.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.758.0 | Apache-2.0
5980
6186
  Apache License
5981
6187
  Version 2.0, January 2004
5982
6188
  http://www.apache.org/licenses/
@@ -6181,7 +6387,7 @@ Apache License
6181
6387
 
6182
6388
  ----------------
6183
6389
 
6184
- ** @aws-sdk/ec2-metadata-service@3.741.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.741.0 | Apache-2.0
6390
+ ** @aws-sdk/ec2-metadata-service@3.758.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.758.0 | Apache-2.0
6185
6391
  Apache License
6186
6392
  Version 2.0, January 2004
6187
6393
  http://www.apache.org/licenses/
@@ -6386,7 +6592,7 @@ Apache License
6386
6592
 
6387
6593
  ----------------
6388
6594
 
6389
- ** @aws-sdk/lib-storage@3.741.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.741.0 | Apache-2.0
6595
+ ** @aws-sdk/lib-storage@3.758.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.758.0 | Apache-2.0
6390
6596
  Apache License
6391
6597
  Version 2.0, January 2004
6392
6598
  http://www.apache.org/licenses/
@@ -7003,7 +7209,7 @@ Apache License
7003
7209
 
7004
7210
  ----------------
7005
7211
 
7006
- ** @aws-sdk/middleware-flexible-checksums@3.735.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.735.0 | Apache-2.0
7212
+ ** @aws-sdk/middleware-flexible-checksums@3.758.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.758.0 | Apache-2.0
7007
7213
  Apache License
7008
7214
  Version 2.0, January 2004
7009
7215
  http://www.apache.org/licenses/
@@ -8032,7 +8238,7 @@ Apache License
8032
8238
 
8033
8239
  ----------------
8034
8240
 
8035
- ** @aws-sdk/middleware-sdk-ec2@3.734.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.734.0 | Apache-2.0
8241
+ ** @aws-sdk/middleware-sdk-ec2@3.758.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.758.0 | Apache-2.0
8036
8242
  Apache License
8037
8243
  Version 2.0, January 2004
8038
8244
  http://www.apache.org/licenses/
@@ -8443,7 +8649,7 @@ Apache License
8443
8649
 
8444
8650
  ----------------
8445
8651
 
8446
- ** @aws-sdk/middleware-sdk-s3@3.740.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.740.0 | Apache-2.0
8652
+ ** @aws-sdk/middleware-sdk-s3@3.758.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.758.0 | Apache-2.0
8447
8653
  Apache License
8448
8654
  Version 2.0, January 2004
8449
8655
  http://www.apache.org/licenses/
@@ -8855,7 +9061,7 @@ Apache License
8855
9061
 
8856
9062
  ----------------
8857
9063
 
8858
- ** @aws-sdk/middleware-user-agent@3.734.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.734.0 | Apache-2.0
9064
+ ** @aws-sdk/middleware-user-agent@3.758.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.758.0 | Apache-2.0
8859
9065
  Apache License
8860
9066
  Version 2.0, January 2004
8861
9067
  http://www.apache.org/licenses/
@@ -9061,7 +9267,7 @@ Apache License
9061
9267
 
9062
9268
  ----------------
9063
9269
 
9064
- ** @aws-sdk/nested-clients@3.734.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.734.0 | Apache-2.0
9270
+ ** @aws-sdk/nested-clients@3.758.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.758.0 | Apache-2.0
9065
9271
 
9066
9272
  ----------------
9067
9273
 
@@ -9270,7 +9476,7 @@ Apache License
9270
9476
 
9271
9477
  ----------------
9272
9478
 
9273
- ** @aws-sdk/signature-v4-multi-region@3.740.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.740.0 | Apache-2.0
9479
+ ** @aws-sdk/signature-v4-multi-region@3.758.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.758.0 | Apache-2.0
9274
9480
  Apache License
9275
9481
  Version 2.0, January 2004
9276
9482
  http://www.apache.org/licenses/
@@ -9476,7 +9682,7 @@ Apache License
9476
9682
 
9477
9683
  ----------------
9478
9684
 
9479
- ** @aws-sdk/token-providers@3.734.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.734.0 | Apache-2.0
9685
+ ** @aws-sdk/token-providers@3.758.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.758.0 | Apache-2.0
9480
9686
  Apache License
9481
9687
  Version 2.0, January 2004
9482
9688
  http://www.apache.org/licenses/
@@ -9886,7 +10092,7 @@ Apache License
9886
10092
 
9887
10093
  ----------------
9888
10094
 
9889
- ** @aws-sdk/util-endpoints@3.734.0 - https://www.npmjs.com/package/@aws-sdk/util-endpoints/v/3.734.0 | Apache-2.0
10095
+ ** @aws-sdk/util-endpoints@3.743.0 - https://www.npmjs.com/package/@aws-sdk/util-endpoints/v/3.743.0 | Apache-2.0
9890
10096
  Apache License
9891
10097
  Version 2.0, January 2004
9892
10098
  http://www.apache.org/licenses/
@@ -10296,7 +10502,7 @@ Apache License
10296
10502
 
10297
10503
  ----------------
10298
10504
 
10299
- ** @aws-sdk/util-user-agent-node@3.734.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.734.0 | Apache-2.0
10505
+ ** @aws-sdk/util-user-agent-node@3.758.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.758.0 | Apache-2.0
10300
10506
  Apache License
10301
10507
  Version 2.0, January 2004
10302
10508
  http://www.apache.org/licenses/
package/build-info.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "comment": "Generated at 2025-02-25T00:50:08Z by generate.sh",
3
- "commit": "321a46a"
2
+ "comment": "Generated at 2025-03-03T10:07:58Z by generate.sh",
3
+ "commit": "09ef5a0"
4
4
  }
@@ -1,4 +1,5 @@
1
1
  import { FunctionConfiguration, type GetSchemaCreationStatusCommandInput, type GetSchemaCreationStatusCommandOutput, type ListFunctionsCommandInput, type StartSchemaCreationCommandInput, type StartSchemaCreationCommandOutput, type UpdateApiKeyCommandInput, type UpdateApiKeyCommandOutput, type UpdateFunctionCommandInput, type UpdateFunctionCommandOutput, type UpdateResolverCommandInput, type UpdateResolverCommandOutput } from '@aws-sdk/client-appsync';
2
+ import { GetResourceCommandInput, GetResourceCommandOutput, ListResourcesCommandInput, ListResourcesCommandOutput } from '@aws-sdk/client-cloudcontrol';
2
3
  import { ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput, type CreateChangeSetCommandInput, type CreateChangeSetCommandOutput, type CreateGeneratedTemplateCommandInput, type CreateGeneratedTemplateCommandOutput, type CreateStackCommandInput, type CreateStackCommandOutput, type DeleteChangeSetCommandInput, type DeleteChangeSetCommandOutput, type DeleteGeneratedTemplateCommandInput, type DeleteGeneratedTemplateCommandOutput, type DeleteStackCommandInput, type DeleteStackCommandOutput, type DescribeChangeSetCommandInput, type DescribeChangeSetCommandOutput, type DescribeGeneratedTemplateCommandInput, type DescribeGeneratedTemplateCommandOutput, type DescribeResourceScanCommandInput, type DescribeResourceScanCommandOutput, type DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput, DescribeStackResourcesCommandInput, DescribeStackResourcesCommandOutput, type DescribeStacksCommandInput, type DescribeStacksCommandOutput, type ExecuteChangeSetCommandInput, type ExecuteChangeSetCommandOutput, type GetGeneratedTemplateCommandInput, type GetGeneratedTemplateCommandOutput, type GetTemplateCommandInput, type GetTemplateCommandOutput, type GetTemplateSummaryCommandInput, type GetTemplateSummaryCommandOutput, type ListExportsCommandInput, type ListExportsCommandOutput, type ListResourceScanRelatedResourcesCommandInput, type ListResourceScanRelatedResourcesCommandOutput, type ListResourceScanResourcesCommandInput, type ListResourceScanResourcesCommandOutput, type ListResourceScansCommandInput, type ListResourceScansCommandOutput, type ListStackResourcesCommandInput, ListStacksCommandInput, ListStacksCommandOutput, RollbackStackCommandInput, RollbackStackCommandOutput, StackResourceSummary, type StartResourceScanCommandInput, type StartResourceScanCommandOutput, type UpdateStackCommandInput, type UpdateStackCommandOutput, type UpdateTerminationProtectionCommandInput, type UpdateTerminationProtectionCommandOutput } from '@aws-sdk/client-cloudformation';
3
4
  import { type DescribeLogGroupsCommandInput, type DescribeLogGroupsCommandOutput, FilterLogEventsCommandInput, FilterLogEventsCommandOutput } from '@aws-sdk/client-cloudwatch-logs';
4
5
  import { type UpdateProjectCommandInput, type UpdateProjectCommandOutput } from '@aws-sdk/client-codebuild';
@@ -57,6 +58,10 @@ export interface IAppSyncClient {
57
58
  updateResolver(input: UpdateResolverCommandInput): Promise<UpdateResolverCommandOutput>;
58
59
  listFunctions(input: ListFunctionsCommandInput): Promise<FunctionConfiguration[]>;
59
60
  }
61
+ export interface ICloudControlClient {
62
+ listResources(input: ListResourcesCommandInput): Promise<ListResourcesCommandOutput>;
63
+ getResource(input: GetResourceCommandInput): Promise<GetResourceCommandOutput>;
64
+ }
60
65
  export interface ICloudFormationClient {
61
66
  continueUpdateRollback(input: ContinueUpdateRollbackCommandInput): Promise<ContinueUpdateRollbackCommandOutput>;
62
67
  createChangeSet(input: CreateChangeSetCommandInput): Promise<CreateChangeSetCommandOutput>;
@@ -195,6 +200,7 @@ export declare class SDK {
195
200
  appendCustomUserAgent(userAgentData?: string): void;
196
201
  removeCustomUserAgent(userAgentData: string): void;
197
202
  appsync(): IAppSyncClient;
203
+ cloudControl(): ICloudControlClient;
198
204
  cloudFormation(): ICloudFormationClient;
199
205
  cloudWatchLogs(): ICloudWatchLogsClient;
200
206
  codeBuild(): ICodeBuildClient;