@cdk8s/awscdk-resolver 0.0.54 → 0.0.56

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 (371) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/README.md +88 -0
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
  8. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
  9. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
  10. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
  11. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
  12. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScansCommand.js +1 -0
  13. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/StartResourceScanCommand.js +1 -0
  14. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
  15. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1677 -73
  16. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/models_1.js +1 -0
  17. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
  18. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
  19. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
  20. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
  21. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +1 -2
  22. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +22 -0
  23. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
  24. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
  25. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
  26. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +24 -0
  27. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
  28. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
  29. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
  30. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
  31. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +24 -0
  32. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +24 -0
  33. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
  34. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/index.js +11 -0
  35. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/index.js +1 -0
  36. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +104 -0
  37. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_1.js +1 -0
  38. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
  39. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
  40. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
  41. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScansPaginator.js +4 -0
  42. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +4 -0
  43. package/node_modules/@aws-sdk/client-cloudformation/dist-es/protocols/Aws_query.js +1322 -92
  44. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
  45. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +77 -0
  46. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +13 -2
  47. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
  48. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
  49. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
  50. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
  51. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
  52. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
  53. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
  54. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
  55. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
  56. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
  57. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
  58. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +1 -1
  59. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
  60. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +1 -1
  61. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
  62. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
  63. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  64. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
  65. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/index.d.ts +11 -0
  66. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/index.d.ts +1 -0
  67. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +4075 -3877
  68. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +974 -0
  69. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
  70. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
  71. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
  72. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
  73. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +4 -0
  74. package/node_modules/@aws-sdk/client-cloudformation/dist-types/protocols/Aws_query.d.ts +99 -0
  75. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
  76. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +187 -0
  77. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
  78. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
  79. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
  80. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
  81. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
  82. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
  83. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
  84. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
  85. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
  86. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
  87. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
  88. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
  89. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
  90. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
  91. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
  92. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
  93. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
  94. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  95. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
  96. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/index.d.ts +11 -0
  97. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/index.d.ts +1 -0
  98. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +250 -99
  99. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +132 -0
  100. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
  101. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
  102. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
  103. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
  104. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +4 -0
  105. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
  106. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +6 -2
  107. package/node_modules/@aws-sdk/client-cloudformation/package.json +13 -13
  108. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +14 -13
  109. package/node_modules/@aws-sdk/client-sso/package.json +10 -10
  110. package/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
  111. package/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
  112. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +1 -0
  113. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +1 -0
  114. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +1 -0
  115. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenWithIAMCommand.js +1 -0
  116. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +1 -0
  117. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +1 -0
  118. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +1 -0
  119. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/credentialDefaultProvider.js +29 -0
  120. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +1 -0
  121. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
  122. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
  123. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/extensionConfiguration.js +1 -0
  124. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1115 -0
  125. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +1 -0
  126. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +1 -0
  127. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +1 -0
  128. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +1 -0
  129. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
  130. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
  131. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
  132. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +24 -0
  133. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeExtensions.js +1 -0
  134. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
  135. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +38 -0
  136. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
  137. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +27 -0
  138. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
  139. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
  140. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
  141. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/credentialDefaultProvider.js +3 -0
  142. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
  143. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
  144. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
  145. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
  146. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +6 -0
  147. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
  148. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
  149. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
  150. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +553 -0
  151. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
  152. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
  153. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
  154. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +20 -0
  155. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +18 -0
  156. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
  157. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
  158. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +161 -0
  159. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +243 -0
  160. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +107 -0
  161. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +110 -0
  162. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
  163. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/credentialDefaultProvider.d.ts +4 -0
  164. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  165. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
  166. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
  167. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +8 -0
  168. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +51 -0
  169. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
  170. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
  171. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
  172. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  173. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +46 -0
  174. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +46 -0
  175. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +45 -0
  176. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +19 -0
  177. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
  178. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
  179. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
  180. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +26 -0
  181. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +30 -0
  182. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +29 -0
  183. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +30 -0
  184. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
  185. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
  186. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  187. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  188. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  189. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  190. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +9 -0
  191. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
  192. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
  193. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
  194. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  195. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  196. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  197. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  198. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  199. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  200. package/node_modules/@aws-sdk/client-sso-oidc/package.json +103 -0
  201. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +1 -29
  202. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +1 -29
  203. package/node_modules/@aws-sdk/client-sts/dist-cjs/credentialDefaultProvider.js +29 -0
  204. package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +1 -78
  205. package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1412 -72
  206. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +1 -12
  207. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +1 -149
  208. package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1 -1084
  209. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +3 -4
  210. package/node_modules/@aws-sdk/client-sts/dist-es/credentialDefaultProvider.js +3 -0
  211. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +3 -4
  212. package/node_modules/@aws-sdk/client-sts/dist-types/credentialDefaultProvider.d.ts +4 -0
  213. package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +3 -0
  214. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +8 -3
  215. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
  216. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +26 -14
  217. package/node_modules/@aws-sdk/client-sts/package.json +14 -12
  218. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +5 -3
  219. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +2 -1
  220. package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +4 -1
  221. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +5 -1
  222. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  223. package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
  224. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
  225. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +32 -0
  226. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +65 -0
  227. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
  228. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +59 -0
  229. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
  230. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
  231. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
  232. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
  233. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
  234. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +59 -0
  235. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
  236. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +53 -0
  237. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
  238. package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
  239. package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
  240. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +7 -0
  241. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
  242. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
  243. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
  244. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
  245. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
  246. package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
  247. package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
  248. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +1 -0
  249. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
  250. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
  251. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
  252. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +7 -0
  253. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
  254. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
  255. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
  256. package/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
  257. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +71 -43
  258. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/loadSts.js +1 -0
  259. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -0
  260. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/loadSts.js +2 -0
  261. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -2
  262. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +4 -6
  263. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +2 -3
  264. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +3 -3
  265. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +10 -9
  266. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +9 -6
  267. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +3 -3
  268. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +8 -4
  269. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/loadSts.d.ts +3 -0
  270. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +2 -2
  271. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +2 -1
  272. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +1 -2
  273. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +1 -1
  274. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +6 -3
  275. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +2 -1
  276. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -1
  277. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/loadSts.d.ts +3 -0
  278. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +2 -2
  279. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +4 -1
  280. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +1 -2
  281. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +6 -3
  282. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +3 -1
  283. package/node_modules/@aws-sdk/credential-provider-ini/package.json +7 -6
  284. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +24 -2
  285. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -1
  286. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +5 -2
  287. package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +17 -14
  288. package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +3 -0
  289. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +5 -2
  290. package/node_modules/@aws-sdk/credential-provider-node/package.json +8 -7
  291. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +2 -0
  292. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -0
  293. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +2 -1
  294. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +4 -1
  295. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  296. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +31 -7
  297. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso.js +1 -0
  298. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +5 -1
  299. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
  300. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +7 -5
  301. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -2
  302. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
  303. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
  304. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +6 -2
  305. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
  306. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +1 -0
  307. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  308. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -4
  309. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +7 -5
  310. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/loadSts.js +5 -0
  311. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -0
  312. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +6 -5
  313. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/loadSts.js +2 -0
  314. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +4 -3
  315. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +14 -4
  316. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/loadSts.d.ts +3 -0
  317. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +7 -2
  318. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +12 -6
  319. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/loadSts.d.ts +3 -0
  320. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -2
  321. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
  322. package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
  323. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +2 -2
  324. package/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
  325. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +2 -2
  326. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
  327. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +3 -3
  328. package/node_modules/@aws-sdk/middleware-signing/package.json +2 -2
  329. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +3 -3
  330. package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
  331. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +4 -4
  332. package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
  333. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +27 -24
  334. package/node_modules/@aws-sdk/token-providers/dist-cjs/loadSsoOidc.js +1 -0
  335. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -0
  336. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +2 -1
  337. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +3 -3
  338. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +2 -2
  339. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -1
  340. package/node_modules/@aws-sdk/token-providers/dist-es/loadSsoOidc.js +2 -0
  341. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +2 -2
  342. package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +3 -3
  343. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +2 -1
  344. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
  345. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -1
  346. package/node_modules/@aws-sdk/token-providers/dist-types/loadSsoOidc.d.ts +2 -0
  347. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +7 -2
  348. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -2
  349. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
  350. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -1
  351. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -1
  352. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/loadSsoOidc.d.ts +2 -0
  353. package/node_modules/@aws-sdk/token-providers/package.json +6 -43
  354. package/node_modules/@aws-sdk/types/dist-cjs/index.js +3 -171
  355. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +15 -0
  356. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
  357. package/node_modules/@aws-sdk/types/package.json +1 -1
  358. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +4 -24
  359. package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
  360. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
  361. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +1 -1
  362. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  363. package/package.json +5 -5
  364. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -1032
  365. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -1038
  366. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -1010
  367. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -1017
  368. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -191
  369. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -191
  370. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
  371. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
3
2
  import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
4
3
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
5
4
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
@@ -26,7 +25,7 @@ export const getRuntimeConfig = (config) => {
26
25
  runtime: "node",
27
26
  defaultsMode,
28
27
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
29
- credentialDefaultProvider: config?.credentialDefaultProvider ?? decorateDefaultCredentialProvider(credentialDefaultProvider),
28
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
30
29
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
31
30
  defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
32
31
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
@@ -6,12 +6,14 @@ import { BatchDescribeTypeConfigurationsCommandInput, BatchDescribeTypeConfigura
6
6
  import { CancelUpdateStackCommandInput, CancelUpdateStackCommandOutput } from "./commands/CancelUpdateStackCommand";
7
7
  import { ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput } from "./commands/ContinueUpdateRollbackCommand";
8
8
  import { CreateChangeSetCommandInput, CreateChangeSetCommandOutput } from "./commands/CreateChangeSetCommand";
9
+ import { CreateGeneratedTemplateCommandInput, CreateGeneratedTemplateCommandOutput } from "./commands/CreateGeneratedTemplateCommand";
9
10
  import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
10
11
  import { CreateStackInstancesCommandInput, CreateStackInstancesCommandOutput } from "./commands/CreateStackInstancesCommand";
11
12
  import { CreateStackSetCommandInput, CreateStackSetCommandOutput } from "./commands/CreateStackSetCommand";
12
13
  import { DeactivateOrganizationsAccessCommandInput, DeactivateOrganizationsAccessCommandOutput } from "./commands/DeactivateOrganizationsAccessCommand";
13
14
  import { DeactivateTypeCommandInput, DeactivateTypeCommandOutput } from "./commands/DeactivateTypeCommand";
14
15
  import { DeleteChangeSetCommandInput, DeleteChangeSetCommandOutput } from "./commands/DeleteChangeSetCommand";
16
+ import { DeleteGeneratedTemplateCommandInput, DeleteGeneratedTemplateCommandOutput } from "./commands/DeleteGeneratedTemplateCommand";
15
17
  import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
16
18
  import { DeleteStackInstancesCommandInput, DeleteStackInstancesCommandOutput } from "./commands/DeleteStackInstancesCommand";
17
19
  import { DeleteStackSetCommandInput, DeleteStackSetCommandOutput } from "./commands/DeleteStackSetCommand";
@@ -19,8 +21,10 @@ import { DeregisterTypeCommandInput, DeregisterTypeCommandOutput } from "./comma
19
21
  import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
20
22
  import { DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput } from "./commands/DescribeChangeSetCommand";
21
23
  import { DescribeChangeSetHooksCommandInput, DescribeChangeSetHooksCommandOutput } from "./commands/DescribeChangeSetHooksCommand";
24
+ import { DescribeGeneratedTemplateCommandInput, DescribeGeneratedTemplateCommandOutput } from "./commands/DescribeGeneratedTemplateCommand";
22
25
  import { DescribeOrganizationsAccessCommandInput, DescribeOrganizationsAccessCommandOutput } from "./commands/DescribeOrganizationsAccessCommand";
23
26
  import { DescribePublisherCommandInput, DescribePublisherCommandOutput } from "./commands/DescribePublisherCommand";
27
+ import { DescribeResourceScanCommandInput, DescribeResourceScanCommandOutput } from "./commands/DescribeResourceScanCommand";
24
28
  import { DescribeStackDriftDetectionStatusCommandInput, DescribeStackDriftDetectionStatusCommandOutput } from "./commands/DescribeStackDriftDetectionStatusCommand";
25
29
  import { DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput } from "./commands/DescribeStackEventsCommand";
26
30
  import { DescribeStackInstanceCommandInput, DescribeStackInstanceCommandOutput } from "./commands/DescribeStackInstanceCommand";
@@ -37,13 +41,18 @@ import { DetectStackResourceDriftCommandInput, DetectStackResourceDriftCommandOu
37
41
  import { DetectStackSetDriftCommandInput, DetectStackSetDriftCommandOutput } from "./commands/DetectStackSetDriftCommand";
38
42
  import { EstimateTemplateCostCommandInput, EstimateTemplateCostCommandOutput } from "./commands/EstimateTemplateCostCommand";
39
43
  import { ExecuteChangeSetCommandInput, ExecuteChangeSetCommandOutput } from "./commands/ExecuteChangeSetCommand";
44
+ import { GetGeneratedTemplateCommandInput, GetGeneratedTemplateCommandOutput } from "./commands/GetGeneratedTemplateCommand";
40
45
  import { GetStackPolicyCommandInput, GetStackPolicyCommandOutput } from "./commands/GetStackPolicyCommand";
41
46
  import { GetTemplateCommandInput, GetTemplateCommandOutput } from "./commands/GetTemplateCommand";
42
47
  import { GetTemplateSummaryCommandInput, GetTemplateSummaryCommandOutput } from "./commands/GetTemplateSummaryCommand";
43
48
  import { ImportStacksToStackSetCommandInput, ImportStacksToStackSetCommandOutput } from "./commands/ImportStacksToStackSetCommand";
44
49
  import { ListChangeSetsCommandInput, ListChangeSetsCommandOutput } from "./commands/ListChangeSetsCommand";
45
50
  import { ListExportsCommandInput, ListExportsCommandOutput } from "./commands/ListExportsCommand";
51
+ import { ListGeneratedTemplatesCommandInput, ListGeneratedTemplatesCommandOutput } from "./commands/ListGeneratedTemplatesCommand";
46
52
  import { ListImportsCommandInput, ListImportsCommandOutput } from "./commands/ListImportsCommand";
53
+ import { ListResourceScanRelatedResourcesCommandInput, ListResourceScanRelatedResourcesCommandOutput } from "./commands/ListResourceScanRelatedResourcesCommand";
54
+ import { ListResourceScanResourcesCommandInput, ListResourceScanResourcesCommandOutput } from "./commands/ListResourceScanResourcesCommand";
55
+ import { ListResourceScansCommandInput, ListResourceScansCommandOutput } from "./commands/ListResourceScansCommand";
47
56
  import { ListStackInstanceResourceDriftsCommandInput, ListStackInstanceResourceDriftsCommandOutput } from "./commands/ListStackInstanceResourceDriftsCommand";
48
57
  import { ListStackInstancesCommandInput, ListStackInstancesCommandOutput } from "./commands/ListStackInstancesCommand";
49
58
  import { ListStackResourcesCommandInput, ListStackResourcesCommandOutput } from "./commands/ListStackResourcesCommand";
@@ -63,8 +72,10 @@ import { SetStackPolicyCommandInput, SetStackPolicyCommandOutput } from "./comma
63
72
  import { SetTypeConfigurationCommandInput, SetTypeConfigurationCommandOutput } from "./commands/SetTypeConfigurationCommand";
64
73
  import { SetTypeDefaultVersionCommandInput, SetTypeDefaultVersionCommandOutput } from "./commands/SetTypeDefaultVersionCommand";
65
74
  import { SignalResourceCommandInput, SignalResourceCommandOutput } from "./commands/SignalResourceCommand";
75
+ import { StartResourceScanCommandInput, StartResourceScanCommandOutput } from "./commands/StartResourceScanCommand";
66
76
  import { StopStackSetOperationCommandInput, StopStackSetOperationCommandOutput } from "./commands/StopStackSetOperationCommand";
67
77
  import { TestTypeCommandInput, TestTypeCommandOutput } from "./commands/TestTypeCommand";
78
+ import { UpdateGeneratedTemplateCommandInput, UpdateGeneratedTemplateCommandOutput } from "./commands/UpdateGeneratedTemplateCommand";
68
79
  import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
69
80
  import { UpdateStackInstancesCommandInput, UpdateStackInstancesCommandOutput } from "./commands/UpdateStackInstancesCommand";
70
81
  import { UpdateStackSetCommandInput, UpdateStackSetCommandOutput } from "./commands/UpdateStackSetCommand";
@@ -107,6 +118,12 @@ export interface CloudFormation {
107
118
  createChangeSet(args: CreateChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateChangeSetCommandOutput>;
108
119
  createChangeSet(args: CreateChangeSetCommandInput, cb: (err: any, data?: CreateChangeSetCommandOutput) => void): void;
109
120
  createChangeSet(args: CreateChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChangeSetCommandOutput) => void): void;
121
+ /**
122
+ * @see {@link CreateGeneratedTemplateCommand}
123
+ */
124
+ createGeneratedTemplate(args: CreateGeneratedTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateGeneratedTemplateCommandOutput>;
125
+ createGeneratedTemplate(args: CreateGeneratedTemplateCommandInput, cb: (err: any, data?: CreateGeneratedTemplateCommandOutput) => void): void;
126
+ createGeneratedTemplate(args: CreateGeneratedTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGeneratedTemplateCommandOutput) => void): void;
110
127
  /**
111
128
  * @see {@link CreateStackCommand}
112
129
  */
@@ -143,6 +160,12 @@ export interface CloudFormation {
143
160
  deleteChangeSet(args: DeleteChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChangeSetCommandOutput>;
144
161
  deleteChangeSet(args: DeleteChangeSetCommandInput, cb: (err: any, data?: DeleteChangeSetCommandOutput) => void): void;
145
162
  deleteChangeSet(args: DeleteChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChangeSetCommandOutput) => void): void;
163
+ /**
164
+ * @see {@link DeleteGeneratedTemplateCommand}
165
+ */
166
+ deleteGeneratedTemplate(args: DeleteGeneratedTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGeneratedTemplateCommandOutput>;
167
+ deleteGeneratedTemplate(args: DeleteGeneratedTemplateCommandInput, cb: (err: any, data?: DeleteGeneratedTemplateCommandOutput) => void): void;
168
+ deleteGeneratedTemplate(args: DeleteGeneratedTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGeneratedTemplateCommandOutput) => void): void;
146
169
  /**
147
170
  * @see {@link DeleteStackCommand}
148
171
  */
@@ -185,6 +208,12 @@ export interface CloudFormation {
185
208
  describeChangeSetHooks(args: DescribeChangeSetHooksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChangeSetHooksCommandOutput>;
186
209
  describeChangeSetHooks(args: DescribeChangeSetHooksCommandInput, cb: (err: any, data?: DescribeChangeSetHooksCommandOutput) => void): void;
187
210
  describeChangeSetHooks(args: DescribeChangeSetHooksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChangeSetHooksCommandOutput) => void): void;
211
+ /**
212
+ * @see {@link DescribeGeneratedTemplateCommand}
213
+ */
214
+ describeGeneratedTemplate(args: DescribeGeneratedTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGeneratedTemplateCommandOutput>;
215
+ describeGeneratedTemplate(args: DescribeGeneratedTemplateCommandInput, cb: (err: any, data?: DescribeGeneratedTemplateCommandOutput) => void): void;
216
+ describeGeneratedTemplate(args: DescribeGeneratedTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGeneratedTemplateCommandOutput) => void): void;
188
217
  /**
189
218
  * @see {@link DescribeOrganizationsAccessCommand}
190
219
  */
@@ -197,6 +226,12 @@ export interface CloudFormation {
197
226
  describePublisher(args: DescribePublisherCommandInput, options?: __HttpHandlerOptions): Promise<DescribePublisherCommandOutput>;
198
227
  describePublisher(args: DescribePublisherCommandInput, cb: (err: any, data?: DescribePublisherCommandOutput) => void): void;
199
228
  describePublisher(args: DescribePublisherCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePublisherCommandOutput) => void): void;
229
+ /**
230
+ * @see {@link DescribeResourceScanCommand}
231
+ */
232
+ describeResourceScan(args: DescribeResourceScanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeResourceScanCommandOutput>;
233
+ describeResourceScan(args: DescribeResourceScanCommandInput, cb: (err: any, data?: DescribeResourceScanCommandOutput) => void): void;
234
+ describeResourceScan(args: DescribeResourceScanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeResourceScanCommandOutput) => void): void;
200
235
  /**
201
236
  * @see {@link DescribeStackDriftDetectionStatusCommand}
202
237
  */
@@ -293,6 +328,12 @@ export interface CloudFormation {
293
328
  executeChangeSet(args: ExecuteChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteChangeSetCommandOutput>;
294
329
  executeChangeSet(args: ExecuteChangeSetCommandInput, cb: (err: any, data?: ExecuteChangeSetCommandOutput) => void): void;
295
330
  executeChangeSet(args: ExecuteChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteChangeSetCommandOutput) => void): void;
331
+ /**
332
+ * @see {@link GetGeneratedTemplateCommand}
333
+ */
334
+ getGeneratedTemplate(args: GetGeneratedTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetGeneratedTemplateCommandOutput>;
335
+ getGeneratedTemplate(args: GetGeneratedTemplateCommandInput, cb: (err: any, data?: GetGeneratedTemplateCommandOutput) => void): void;
336
+ getGeneratedTemplate(args: GetGeneratedTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGeneratedTemplateCommandOutput) => void): void;
296
337
  /**
297
338
  * @see {@link GetStackPolicyCommand}
298
339
  */
@@ -329,12 +370,36 @@ export interface CloudFormation {
329
370
  listExports(args: ListExportsCommandInput, options?: __HttpHandlerOptions): Promise<ListExportsCommandOutput>;
330
371
  listExports(args: ListExportsCommandInput, cb: (err: any, data?: ListExportsCommandOutput) => void): void;
331
372
  listExports(args: ListExportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExportsCommandOutput) => void): void;
373
+ /**
374
+ * @see {@link ListGeneratedTemplatesCommand}
375
+ */
376
+ listGeneratedTemplates(args: ListGeneratedTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListGeneratedTemplatesCommandOutput>;
377
+ listGeneratedTemplates(args: ListGeneratedTemplatesCommandInput, cb: (err: any, data?: ListGeneratedTemplatesCommandOutput) => void): void;
378
+ listGeneratedTemplates(args: ListGeneratedTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGeneratedTemplatesCommandOutput) => void): void;
332
379
  /**
333
380
  * @see {@link ListImportsCommand}
334
381
  */
335
382
  listImports(args: ListImportsCommandInput, options?: __HttpHandlerOptions): Promise<ListImportsCommandOutput>;
336
383
  listImports(args: ListImportsCommandInput, cb: (err: any, data?: ListImportsCommandOutput) => void): void;
337
384
  listImports(args: ListImportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListImportsCommandOutput) => void): void;
385
+ /**
386
+ * @see {@link ListResourceScanRelatedResourcesCommand}
387
+ */
388
+ listResourceScanRelatedResources(args: ListResourceScanRelatedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceScanRelatedResourcesCommandOutput>;
389
+ listResourceScanRelatedResources(args: ListResourceScanRelatedResourcesCommandInput, cb: (err: any, data?: ListResourceScanRelatedResourcesCommandOutput) => void): void;
390
+ listResourceScanRelatedResources(args: ListResourceScanRelatedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceScanRelatedResourcesCommandOutput) => void): void;
391
+ /**
392
+ * @see {@link ListResourceScanResourcesCommand}
393
+ */
394
+ listResourceScanResources(args: ListResourceScanResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceScanResourcesCommandOutput>;
395
+ listResourceScanResources(args: ListResourceScanResourcesCommandInput, cb: (err: any, data?: ListResourceScanResourcesCommandOutput) => void): void;
396
+ listResourceScanResources(args: ListResourceScanResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceScanResourcesCommandOutput) => void): void;
397
+ /**
398
+ * @see {@link ListResourceScansCommand}
399
+ */
400
+ listResourceScans(args: ListResourceScansCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceScansCommandOutput>;
401
+ listResourceScans(args: ListResourceScansCommandInput, cb: (err: any, data?: ListResourceScansCommandOutput) => void): void;
402
+ listResourceScans(args: ListResourceScansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceScansCommandOutput) => void): void;
338
403
  /**
339
404
  * @see {@link ListStackInstanceResourceDriftsCommand}
340
405
  */
@@ -449,6 +514,12 @@ export interface CloudFormation {
449
514
  signalResource(args: SignalResourceCommandInput, options?: __HttpHandlerOptions): Promise<SignalResourceCommandOutput>;
450
515
  signalResource(args: SignalResourceCommandInput, cb: (err: any, data?: SignalResourceCommandOutput) => void): void;
451
516
  signalResource(args: SignalResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SignalResourceCommandOutput) => void): void;
517
+ /**
518
+ * @see {@link StartResourceScanCommand}
519
+ */
520
+ startResourceScan(args: StartResourceScanCommandInput, options?: __HttpHandlerOptions): Promise<StartResourceScanCommandOutput>;
521
+ startResourceScan(args: StartResourceScanCommandInput, cb: (err: any, data?: StartResourceScanCommandOutput) => void): void;
522
+ startResourceScan(args: StartResourceScanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartResourceScanCommandOutput) => void): void;
452
523
  /**
453
524
  * @see {@link StopStackSetOperationCommand}
454
525
  */
@@ -461,6 +532,12 @@ export interface CloudFormation {
461
532
  testType(args: TestTypeCommandInput, options?: __HttpHandlerOptions): Promise<TestTypeCommandOutput>;
462
533
  testType(args: TestTypeCommandInput, cb: (err: any, data?: TestTypeCommandOutput) => void): void;
463
534
  testType(args: TestTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestTypeCommandOutput) => void): void;
535
+ /**
536
+ * @see {@link UpdateGeneratedTemplateCommand}
537
+ */
538
+ updateGeneratedTemplate(args: UpdateGeneratedTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGeneratedTemplateCommandOutput>;
539
+ updateGeneratedTemplate(args: UpdateGeneratedTemplateCommandInput, cb: (err: any, data?: UpdateGeneratedTemplateCommandOutput) => void): void;
540
+ updateGeneratedTemplate(args: UpdateGeneratedTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGeneratedTemplateCommandOutput) => void): void;
464
541
  /**
465
542
  * @see {@link UpdateStackCommand}
466
543
  */
@@ -14,12 +14,14 @@ import { BatchDescribeTypeConfigurationsCommandInput, BatchDescribeTypeConfigura
14
14
  import { CancelUpdateStackCommandInput, CancelUpdateStackCommandOutput } from "./commands/CancelUpdateStackCommand";
15
15
  import { ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput } from "./commands/ContinueUpdateRollbackCommand";
16
16
  import { CreateChangeSetCommandInput, CreateChangeSetCommandOutput } from "./commands/CreateChangeSetCommand";
17
+ import { CreateGeneratedTemplateCommandInput, CreateGeneratedTemplateCommandOutput } from "./commands/CreateGeneratedTemplateCommand";
17
18
  import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
18
19
  import { CreateStackInstancesCommandInput, CreateStackInstancesCommandOutput } from "./commands/CreateStackInstancesCommand";
19
20
  import { CreateStackSetCommandInput, CreateStackSetCommandOutput } from "./commands/CreateStackSetCommand";
20
21
  import { DeactivateOrganizationsAccessCommandInput, DeactivateOrganizationsAccessCommandOutput } from "./commands/DeactivateOrganizationsAccessCommand";
21
22
  import { DeactivateTypeCommandInput, DeactivateTypeCommandOutput } from "./commands/DeactivateTypeCommand";
22
23
  import { DeleteChangeSetCommandInput, DeleteChangeSetCommandOutput } from "./commands/DeleteChangeSetCommand";
24
+ import { DeleteGeneratedTemplateCommandInput, DeleteGeneratedTemplateCommandOutput } from "./commands/DeleteGeneratedTemplateCommand";
23
25
  import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
24
26
  import { DeleteStackInstancesCommandInput, DeleteStackInstancesCommandOutput } from "./commands/DeleteStackInstancesCommand";
25
27
  import { DeleteStackSetCommandInput, DeleteStackSetCommandOutput } from "./commands/DeleteStackSetCommand";
@@ -27,8 +29,10 @@ import { DeregisterTypeCommandInput, DeregisterTypeCommandOutput } from "./comma
27
29
  import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
28
30
  import { DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput } from "./commands/DescribeChangeSetCommand";
29
31
  import { DescribeChangeSetHooksCommandInput, DescribeChangeSetHooksCommandOutput } from "./commands/DescribeChangeSetHooksCommand";
32
+ import { DescribeGeneratedTemplateCommandInput, DescribeGeneratedTemplateCommandOutput } from "./commands/DescribeGeneratedTemplateCommand";
30
33
  import { DescribeOrganizationsAccessCommandInput, DescribeOrganizationsAccessCommandOutput } from "./commands/DescribeOrganizationsAccessCommand";
31
34
  import { DescribePublisherCommandInput, DescribePublisherCommandOutput } from "./commands/DescribePublisherCommand";
35
+ import { DescribeResourceScanCommandInput, DescribeResourceScanCommandOutput } from "./commands/DescribeResourceScanCommand";
32
36
  import { DescribeStackDriftDetectionStatusCommandInput, DescribeStackDriftDetectionStatusCommandOutput } from "./commands/DescribeStackDriftDetectionStatusCommand";
33
37
  import { DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput } from "./commands/DescribeStackEventsCommand";
34
38
  import { DescribeStackInstanceCommandInput, DescribeStackInstanceCommandOutput } from "./commands/DescribeStackInstanceCommand";
@@ -45,13 +49,18 @@ import { DetectStackResourceDriftCommandInput, DetectStackResourceDriftCommandOu
45
49
  import { DetectStackSetDriftCommandInput, DetectStackSetDriftCommandOutput } from "./commands/DetectStackSetDriftCommand";
46
50
  import { EstimateTemplateCostCommandInput, EstimateTemplateCostCommandOutput } from "./commands/EstimateTemplateCostCommand";
47
51
  import { ExecuteChangeSetCommandInput, ExecuteChangeSetCommandOutput } from "./commands/ExecuteChangeSetCommand";
52
+ import { GetGeneratedTemplateCommandInput, GetGeneratedTemplateCommandOutput } from "./commands/GetGeneratedTemplateCommand";
48
53
  import { GetStackPolicyCommandInput, GetStackPolicyCommandOutput } from "./commands/GetStackPolicyCommand";
49
54
  import { GetTemplateCommandInput, GetTemplateCommandOutput } from "./commands/GetTemplateCommand";
50
55
  import { GetTemplateSummaryCommandInput, GetTemplateSummaryCommandOutput } from "./commands/GetTemplateSummaryCommand";
51
56
  import { ImportStacksToStackSetCommandInput, ImportStacksToStackSetCommandOutput } from "./commands/ImportStacksToStackSetCommand";
52
57
  import { ListChangeSetsCommandInput, ListChangeSetsCommandOutput } from "./commands/ListChangeSetsCommand";
53
58
  import { ListExportsCommandInput, ListExportsCommandOutput } from "./commands/ListExportsCommand";
59
+ import { ListGeneratedTemplatesCommandInput, ListGeneratedTemplatesCommandOutput } from "./commands/ListGeneratedTemplatesCommand";
54
60
  import { ListImportsCommandInput, ListImportsCommandOutput } from "./commands/ListImportsCommand";
61
+ import { ListResourceScanRelatedResourcesCommandInput, ListResourceScanRelatedResourcesCommandOutput } from "./commands/ListResourceScanRelatedResourcesCommand";
62
+ import { ListResourceScanResourcesCommandInput, ListResourceScanResourcesCommandOutput } from "./commands/ListResourceScanResourcesCommand";
63
+ import { ListResourceScansCommandInput, ListResourceScansCommandOutput } from "./commands/ListResourceScansCommand";
55
64
  import { ListStackInstanceResourceDriftsCommandInput, ListStackInstanceResourceDriftsCommandOutput } from "./commands/ListStackInstanceResourceDriftsCommand";
56
65
  import { ListStackInstancesCommandInput, ListStackInstancesCommandOutput } from "./commands/ListStackInstancesCommand";
57
66
  import { ListStackResourcesCommandInput, ListStackResourcesCommandOutput } from "./commands/ListStackResourcesCommand";
@@ -71,8 +80,10 @@ import { SetStackPolicyCommandInput, SetStackPolicyCommandOutput } from "./comma
71
80
  import { SetTypeConfigurationCommandInput, SetTypeConfigurationCommandOutput } from "./commands/SetTypeConfigurationCommand";
72
81
  import { SetTypeDefaultVersionCommandInput, SetTypeDefaultVersionCommandOutput } from "./commands/SetTypeDefaultVersionCommand";
73
82
  import { SignalResourceCommandInput, SignalResourceCommandOutput } from "./commands/SignalResourceCommand";
83
+ import { StartResourceScanCommandInput, StartResourceScanCommandOutput } from "./commands/StartResourceScanCommand";
74
84
  import { StopStackSetOperationCommandInput, StopStackSetOperationCommandOutput } from "./commands/StopStackSetOperationCommand";
75
85
  import { TestTypeCommandInput, TestTypeCommandOutput } from "./commands/TestTypeCommand";
86
+ import { UpdateGeneratedTemplateCommandInput, UpdateGeneratedTemplateCommandOutput } from "./commands/UpdateGeneratedTemplateCommand";
76
87
  import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
77
88
  import { UpdateStackInstancesCommandInput, UpdateStackInstancesCommandOutput } from "./commands/UpdateStackInstancesCommand";
78
89
  import { UpdateStackSetCommandInput, UpdateStackSetCommandOutput } from "./commands/UpdateStackSetCommand";
@@ -84,11 +95,11 @@ export { __Client };
84
95
  /**
85
96
  * @public
86
97
  */
87
- export type ServiceInputTypes = ActivateOrganizationsAccessCommandInput | ActivateTypeCommandInput | BatchDescribeTypeConfigurationsCommandInput | CancelUpdateStackCommandInput | ContinueUpdateRollbackCommandInput | CreateChangeSetCommandInput | CreateStackCommandInput | CreateStackInstancesCommandInput | CreateStackSetCommandInput | DeactivateOrganizationsAccessCommandInput | DeactivateTypeCommandInput | DeleteChangeSetCommandInput | DeleteStackCommandInput | DeleteStackInstancesCommandInput | DeleteStackSetCommandInput | DeregisterTypeCommandInput | DescribeAccountLimitsCommandInput | DescribeChangeSetCommandInput | DescribeChangeSetHooksCommandInput | DescribeOrganizationsAccessCommandInput | DescribePublisherCommandInput | DescribeStackDriftDetectionStatusCommandInput | DescribeStackEventsCommandInput | DescribeStackInstanceCommandInput | DescribeStackResourceCommandInput | DescribeStackResourceDriftsCommandInput | DescribeStackResourcesCommandInput | DescribeStackSetCommandInput | DescribeStackSetOperationCommandInput | DescribeStacksCommandInput | DescribeTypeCommandInput | DescribeTypeRegistrationCommandInput | DetectStackDriftCommandInput | DetectStackResourceDriftCommandInput | DetectStackSetDriftCommandInput | EstimateTemplateCostCommandInput | ExecuteChangeSetCommandInput | GetStackPolicyCommandInput | GetTemplateCommandInput | GetTemplateSummaryCommandInput | ImportStacksToStackSetCommandInput | ListChangeSetsCommandInput | ListExportsCommandInput | ListImportsCommandInput | ListStackInstanceResourceDriftsCommandInput | ListStackInstancesCommandInput | ListStackResourcesCommandInput | ListStackSetOperationResultsCommandInput | ListStackSetOperationsCommandInput | ListStackSetsCommandInput | ListStacksCommandInput | ListTypeRegistrationsCommandInput | ListTypeVersionsCommandInput | ListTypesCommandInput | PublishTypeCommandInput | RecordHandlerProgressCommandInput | RegisterPublisherCommandInput | RegisterTypeCommandInput | RollbackStackCommandInput | SetStackPolicyCommandInput | SetTypeConfigurationCommandInput | SetTypeDefaultVersionCommandInput | SignalResourceCommandInput | StopStackSetOperationCommandInput | TestTypeCommandInput | UpdateStackCommandInput | UpdateStackInstancesCommandInput | UpdateStackSetCommandInput | UpdateTerminationProtectionCommandInput | ValidateTemplateCommandInput;
98
+ export type ServiceInputTypes = ActivateOrganizationsAccessCommandInput | ActivateTypeCommandInput | BatchDescribeTypeConfigurationsCommandInput | CancelUpdateStackCommandInput | ContinueUpdateRollbackCommandInput | CreateChangeSetCommandInput | CreateGeneratedTemplateCommandInput | CreateStackCommandInput | CreateStackInstancesCommandInput | CreateStackSetCommandInput | DeactivateOrganizationsAccessCommandInput | DeactivateTypeCommandInput | DeleteChangeSetCommandInput | DeleteGeneratedTemplateCommandInput | DeleteStackCommandInput | DeleteStackInstancesCommandInput | DeleteStackSetCommandInput | DeregisterTypeCommandInput | DescribeAccountLimitsCommandInput | DescribeChangeSetCommandInput | DescribeChangeSetHooksCommandInput | DescribeGeneratedTemplateCommandInput | DescribeOrganizationsAccessCommandInput | DescribePublisherCommandInput | DescribeResourceScanCommandInput | DescribeStackDriftDetectionStatusCommandInput | DescribeStackEventsCommandInput | DescribeStackInstanceCommandInput | DescribeStackResourceCommandInput | DescribeStackResourceDriftsCommandInput | DescribeStackResourcesCommandInput | DescribeStackSetCommandInput | DescribeStackSetOperationCommandInput | DescribeStacksCommandInput | DescribeTypeCommandInput | DescribeTypeRegistrationCommandInput | DetectStackDriftCommandInput | DetectStackResourceDriftCommandInput | DetectStackSetDriftCommandInput | EstimateTemplateCostCommandInput | ExecuteChangeSetCommandInput | GetGeneratedTemplateCommandInput | GetStackPolicyCommandInput | GetTemplateCommandInput | GetTemplateSummaryCommandInput | ImportStacksToStackSetCommandInput | ListChangeSetsCommandInput | ListExportsCommandInput | ListGeneratedTemplatesCommandInput | ListImportsCommandInput | ListResourceScanRelatedResourcesCommandInput | ListResourceScanResourcesCommandInput | ListResourceScansCommandInput | ListStackInstanceResourceDriftsCommandInput | ListStackInstancesCommandInput | ListStackResourcesCommandInput | ListStackSetOperationResultsCommandInput | ListStackSetOperationsCommandInput | ListStackSetsCommandInput | ListStacksCommandInput | ListTypeRegistrationsCommandInput | ListTypeVersionsCommandInput | ListTypesCommandInput | PublishTypeCommandInput | RecordHandlerProgressCommandInput | RegisterPublisherCommandInput | RegisterTypeCommandInput | RollbackStackCommandInput | SetStackPolicyCommandInput | SetTypeConfigurationCommandInput | SetTypeDefaultVersionCommandInput | SignalResourceCommandInput | StartResourceScanCommandInput | StopStackSetOperationCommandInput | TestTypeCommandInput | UpdateGeneratedTemplateCommandInput | UpdateStackCommandInput | UpdateStackInstancesCommandInput | UpdateStackSetCommandInput | UpdateTerminationProtectionCommandInput | ValidateTemplateCommandInput;
88
99
  /**
89
100
  * @public
90
101
  */
91
- export type ServiceOutputTypes = ActivateOrganizationsAccessCommandOutput | ActivateTypeCommandOutput | BatchDescribeTypeConfigurationsCommandOutput | CancelUpdateStackCommandOutput | ContinueUpdateRollbackCommandOutput | CreateChangeSetCommandOutput | CreateStackCommandOutput | CreateStackInstancesCommandOutput | CreateStackSetCommandOutput | DeactivateOrganizationsAccessCommandOutput | DeactivateTypeCommandOutput | DeleteChangeSetCommandOutput | DeleteStackCommandOutput | DeleteStackInstancesCommandOutput | DeleteStackSetCommandOutput | DeregisterTypeCommandOutput | DescribeAccountLimitsCommandOutput | DescribeChangeSetCommandOutput | DescribeChangeSetHooksCommandOutput | DescribeOrganizationsAccessCommandOutput | DescribePublisherCommandOutput | DescribeStackDriftDetectionStatusCommandOutput | DescribeStackEventsCommandOutput | DescribeStackInstanceCommandOutput | DescribeStackResourceCommandOutput | DescribeStackResourceDriftsCommandOutput | DescribeStackResourcesCommandOutput | DescribeStackSetCommandOutput | DescribeStackSetOperationCommandOutput | DescribeStacksCommandOutput | DescribeTypeCommandOutput | DescribeTypeRegistrationCommandOutput | DetectStackDriftCommandOutput | DetectStackResourceDriftCommandOutput | DetectStackSetDriftCommandOutput | EstimateTemplateCostCommandOutput | ExecuteChangeSetCommandOutput | GetStackPolicyCommandOutput | GetTemplateCommandOutput | GetTemplateSummaryCommandOutput | ImportStacksToStackSetCommandOutput | ListChangeSetsCommandOutput | ListExportsCommandOutput | ListImportsCommandOutput | ListStackInstanceResourceDriftsCommandOutput | ListStackInstancesCommandOutput | ListStackResourcesCommandOutput | ListStackSetOperationResultsCommandOutput | ListStackSetOperationsCommandOutput | ListStackSetsCommandOutput | ListStacksCommandOutput | ListTypeRegistrationsCommandOutput | ListTypeVersionsCommandOutput | ListTypesCommandOutput | PublishTypeCommandOutput | RecordHandlerProgressCommandOutput | RegisterPublisherCommandOutput | RegisterTypeCommandOutput | RollbackStackCommandOutput | SetStackPolicyCommandOutput | SetTypeConfigurationCommandOutput | SetTypeDefaultVersionCommandOutput | SignalResourceCommandOutput | StopStackSetOperationCommandOutput | TestTypeCommandOutput | UpdateStackCommandOutput | UpdateStackInstancesCommandOutput | UpdateStackSetCommandOutput | UpdateTerminationProtectionCommandOutput | ValidateTemplateCommandOutput;
102
+ export type ServiceOutputTypes = ActivateOrganizationsAccessCommandOutput | ActivateTypeCommandOutput | BatchDescribeTypeConfigurationsCommandOutput | CancelUpdateStackCommandOutput | ContinueUpdateRollbackCommandOutput | CreateChangeSetCommandOutput | CreateGeneratedTemplateCommandOutput | CreateStackCommandOutput | CreateStackInstancesCommandOutput | CreateStackSetCommandOutput | DeactivateOrganizationsAccessCommandOutput | DeactivateTypeCommandOutput | DeleteChangeSetCommandOutput | DeleteGeneratedTemplateCommandOutput | DeleteStackCommandOutput | DeleteStackInstancesCommandOutput | DeleteStackSetCommandOutput | DeregisterTypeCommandOutput | DescribeAccountLimitsCommandOutput | DescribeChangeSetCommandOutput | DescribeChangeSetHooksCommandOutput | DescribeGeneratedTemplateCommandOutput | DescribeOrganizationsAccessCommandOutput | DescribePublisherCommandOutput | DescribeResourceScanCommandOutput | DescribeStackDriftDetectionStatusCommandOutput | DescribeStackEventsCommandOutput | DescribeStackInstanceCommandOutput | DescribeStackResourceCommandOutput | DescribeStackResourceDriftsCommandOutput | DescribeStackResourcesCommandOutput | DescribeStackSetCommandOutput | DescribeStackSetOperationCommandOutput | DescribeStacksCommandOutput | DescribeTypeCommandOutput | DescribeTypeRegistrationCommandOutput | DetectStackDriftCommandOutput | DetectStackResourceDriftCommandOutput | DetectStackSetDriftCommandOutput | EstimateTemplateCostCommandOutput | ExecuteChangeSetCommandOutput | GetGeneratedTemplateCommandOutput | GetStackPolicyCommandOutput | GetTemplateCommandOutput | GetTemplateSummaryCommandOutput | ImportStacksToStackSetCommandOutput | ListChangeSetsCommandOutput | ListExportsCommandOutput | ListGeneratedTemplatesCommandOutput | ListImportsCommandOutput | ListResourceScanRelatedResourcesCommandOutput | ListResourceScanResourcesCommandOutput | ListResourceScansCommandOutput | ListStackInstanceResourceDriftsCommandOutput | ListStackInstancesCommandOutput | ListStackResourcesCommandOutput | ListStackSetOperationResultsCommandOutput | ListStackSetOperationsCommandOutput | ListStackSetsCommandOutput | ListStacksCommandOutput | ListTypeRegistrationsCommandOutput | ListTypeVersionsCommandOutput | ListTypesCommandOutput | PublishTypeCommandOutput | RecordHandlerProgressCommandOutput | RegisterPublisherCommandOutput | RegisterTypeCommandOutput | RollbackStackCommandOutput | SetStackPolicyCommandOutput | SetTypeConfigurationCommandOutput | SetTypeDefaultVersionCommandOutput | SignalResourceCommandOutput | StartResourceScanCommandOutput | StopStackSetOperationCommandOutput | TestTypeCommandOutput | UpdateGeneratedTemplateCommandOutput | UpdateStackCommandOutput | UpdateStackInstancesCommandOutput | UpdateStackSetCommandOutput | UpdateTerminationProtectionCommandOutput | ValidateTemplateCommandOutput;
92
103
  /**
93
104
  * @public
94
105
  */
@@ -0,0 +1,116 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient";
4
+ import { CreateGeneratedTemplateInput, CreateGeneratedTemplateOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateGeneratedTemplateCommand}.
13
+ */
14
+ export interface CreateGeneratedTemplateCommandInput extends CreateGeneratedTemplateInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateGeneratedTemplateCommand}.
20
+ */
21
+ export interface CreateGeneratedTemplateCommandOutput extends CreateGeneratedTemplateOutput, __MetadataBearer {
22
+ }
23
+ declare const CreateGeneratedTemplateCommand_base: {
24
+ new (input: CreateGeneratedTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGeneratedTemplateCommandInput, CreateGeneratedTemplateCommandOutput, CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Creates a template from existing resources that are not already managed with CloudFormation. You can check the status of
30
+ * the template generation using the <code>DescribeGeneratedTemplate</code> API action.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CloudFormationClient, CreateGeneratedTemplateCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
35
+ * // const { CloudFormationClient, CreateGeneratedTemplateCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
36
+ * const client = new CloudFormationClient(config);
37
+ * const input = { // CreateGeneratedTemplateInput
38
+ * Resources: [ // ResourceDefinitions
39
+ * { // ResourceDefinition
40
+ * ResourceType: "STRING_VALUE", // required
41
+ * LogicalResourceId: "STRING_VALUE",
42
+ * ResourceIdentifier: { // ResourceIdentifierProperties // required
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * },
46
+ * ],
47
+ * GeneratedTemplateName: "STRING_VALUE", // required
48
+ * StackName: "STRING_VALUE",
49
+ * TemplateConfiguration: { // TemplateConfiguration
50
+ * DeletionPolicy: "DELETE" || "RETAIN",
51
+ * UpdateReplacePolicy: "DELETE" || "RETAIN",
52
+ * },
53
+ * };
54
+ * const command = new CreateGeneratedTemplateCommand(input);
55
+ * const response = await client.send(command);
56
+ * // { // CreateGeneratedTemplateOutput
57
+ * // GeneratedTemplateId: "STRING_VALUE",
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param CreateGeneratedTemplateCommandInput - {@link CreateGeneratedTemplateCommandInput}
63
+ * @returns {@link CreateGeneratedTemplateCommandOutput}
64
+ * @see {@link CreateGeneratedTemplateCommandInput} for command's `input` shape.
65
+ * @see {@link CreateGeneratedTemplateCommandOutput} for command's `response` shape.
66
+ * @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
67
+ *
68
+ * @throws {@link AlreadyExistsException} (client fault)
69
+ * <p>The resource with the name requested already exists.</p>
70
+ *
71
+ * @throws {@link ConcurrentResourcesLimitExceededException} (client fault)
72
+ * <p>No more than 5 generated templates can be in an <code>InProgress</code> or <code>Pending</code> status at one
73
+ * time. This error is also returned if a generated template that is in an <code>InProgress</code> or
74
+ * <code>Pending</code> status is attempted to be updated or deleted.</p>
75
+ *
76
+ * @throws {@link LimitExceededException} (client fault)
77
+ * <p>The quota for the resource has already been reached.</p>
78
+ * <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation quotas</a> in the
79
+ * <i>CloudFormation User Guide</i>.</p>
80
+ *
81
+ * @throws {@link CloudFormationServiceException}
82
+ * <p>Base exception class for all service exceptions from CloudFormation service.</p>
83
+ *
84
+ * @example To create a generated template
85
+ * ```javascript
86
+ * // This example creates a generated template with a resources file.
87
+ * const input = {
88
+ * "GeneratedTemplateName": "JazzyTemplate",
89
+ * "Resources": [
90
+ * {
91
+ * "ResourceIdentifier": {
92
+ * "BucketName": "jazz-bucket"
93
+ * },
94
+ * "ResourceType": "AWS::S3::Bucket"
95
+ * },
96
+ * {
97
+ * "ResourceIdentifier": {
98
+ * "DhcpOptionsId": "random-id123"
99
+ * },
100
+ * "ResourceType": "AWS::EC2::DHCPOptions"
101
+ * }
102
+ * ]
103
+ * };
104
+ * const command = new CreateGeneratedTemplateCommand(input);
105
+ * const response = await client.send(command);
106
+ * /* response ==
107
+ * {
108
+ * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca"
109
+ * }
110
+ * *\/
111
+ * // example id: to-create-a-generated-template
112
+ * ```
113
+ *
114
+ */
115
+ export declare class CreateGeneratedTemplateCommand extends CreateGeneratedTemplateCommand_base {
116
+ }
@@ -0,0 +1,75 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient";
4
+ import { DeleteGeneratedTemplateInput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link DeleteGeneratedTemplateCommand}.
13
+ */
14
+ export interface DeleteGeneratedTemplateCommandInput extends DeleteGeneratedTemplateInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link DeleteGeneratedTemplateCommand}.
20
+ */
21
+ export interface DeleteGeneratedTemplateCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const DeleteGeneratedTemplateCommand_base: {
24
+ new (input: DeleteGeneratedTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGeneratedTemplateCommandInput, DeleteGeneratedTemplateCommandOutput, CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Deleted a generated template.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { CloudFormationClient, DeleteGeneratedTemplateCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
34
+ * // const { CloudFormationClient, DeleteGeneratedTemplateCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
35
+ * const client = new CloudFormationClient(config);
36
+ * const input = { // DeleteGeneratedTemplateInput
37
+ * GeneratedTemplateName: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new DeleteGeneratedTemplateCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param DeleteGeneratedTemplateCommandInput - {@link DeleteGeneratedTemplateCommandInput}
46
+ * @returns {@link DeleteGeneratedTemplateCommandOutput}
47
+ * @see {@link DeleteGeneratedTemplateCommandInput} for command's `input` shape.
48
+ * @see {@link DeleteGeneratedTemplateCommandOutput} for command's `response` shape.
49
+ * @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
50
+ *
51
+ * @throws {@link ConcurrentResourcesLimitExceededException} (client fault)
52
+ * <p>No more than 5 generated templates can be in an <code>InProgress</code> or <code>Pending</code> status at one
53
+ * time. This error is also returned if a generated template that is in an <code>InProgress</code> or
54
+ * <code>Pending</code> status is attempted to be updated or deleted.</p>
55
+ *
56
+ * @throws {@link GeneratedTemplateNotFoundException} (client fault)
57
+ * <p>The generated template was not found.</p>
58
+ *
59
+ * @throws {@link CloudFormationServiceException}
60
+ * <p>Base exception class for all service exceptions from CloudFormation service.</p>
61
+ *
62
+ * @example To delete a generated template
63
+ * ```javascript
64
+ * // This example deletes a generated template
65
+ * const input = {
66
+ * "GeneratedTemplateName": "JazzyTemplate"
67
+ * };
68
+ * const command = new DeleteGeneratedTemplateCommand(input);
69
+ * await client.send(command);
70
+ * // example id: to-delete-a-generated-template
71
+ * ```
72
+ *
73
+ */
74
+ export declare class DeleteGeneratedTemplateCommand extends DeleteGeneratedTemplateCommand_base {
75
+ }
@@ -0,0 +1,135 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient";
4
+ import { DescribeGeneratedTemplateInput, DescribeGeneratedTemplateOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link DescribeGeneratedTemplateCommand}.
13
+ */
14
+ export interface DescribeGeneratedTemplateCommandInput extends DescribeGeneratedTemplateInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link DescribeGeneratedTemplateCommand}.
20
+ */
21
+ export interface DescribeGeneratedTemplateCommandOutput extends DescribeGeneratedTemplateOutput, __MetadataBearer {
22
+ }
23
+ declare const DescribeGeneratedTemplateCommand_base: {
24
+ new (input: DescribeGeneratedTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeGeneratedTemplateCommandInput, DescribeGeneratedTemplateCommandOutput, CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Describes a generated template. The output includes details about the progress of the creation of a generated
30
+ * template started by a <code>CreateGeneratedTemplate</code> API action or the update of a generated template started
31
+ * with an <code>UpdateGeneratedTemplate</code> API action.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { CloudFormationClient, DescribeGeneratedTemplateCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
36
+ * // const { CloudFormationClient, DescribeGeneratedTemplateCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
37
+ * const client = new CloudFormationClient(config);
38
+ * const input = { // DescribeGeneratedTemplateInput
39
+ * GeneratedTemplateName: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DescribeGeneratedTemplateCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // DescribeGeneratedTemplateOutput
44
+ * // GeneratedTemplateId: "STRING_VALUE",
45
+ * // GeneratedTemplateName: "STRING_VALUE",
46
+ * // Resources: [ // ResourceDetails
47
+ * // { // ResourceDetail
48
+ * // ResourceType: "STRING_VALUE",
49
+ * // LogicalResourceId: "STRING_VALUE",
50
+ * // ResourceIdentifier: { // ResourceIdentifierProperties
51
+ * // "<keys>": "STRING_VALUE",
52
+ * // },
53
+ * // ResourceStatus: "PENDING" || "IN_PROGRESS" || "FAILED" || "COMPLETE",
54
+ * // ResourceStatusReason: "STRING_VALUE",
55
+ * // Warnings: [ // WarningDetails
56
+ * // { // WarningDetail
57
+ * // Type: "MUTUALLY_EXCLUSIVE_PROPERTIES" || "UNSUPPORTED_PROPERTIES" || "MUTUALLY_EXCLUSIVE_TYPES",
58
+ * // Properties: [ // WarningProperties
59
+ * // { // WarningProperty
60
+ * // PropertyPath: "STRING_VALUE",
61
+ * // Required: true || false,
62
+ * // Description: "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // },
66
+ * // ],
67
+ * // },
68
+ * // ],
69
+ * // Status: "CREATE_PENDING" || "UPDATE_PENDING" || "DELETE_PENDING" || "CREATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "DELETE_IN_PROGRESS" || "FAILED" || "COMPLETE",
70
+ * // StatusReason: "STRING_VALUE",
71
+ * // CreationTime: new Date("TIMESTAMP"),
72
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
73
+ * // Progress: { // TemplateProgress
74
+ * // ResourcesSucceeded: Number("int"),
75
+ * // ResourcesFailed: Number("int"),
76
+ * // ResourcesProcessing: Number("int"),
77
+ * // ResourcesPending: Number("int"),
78
+ * // },
79
+ * // StackId: "STRING_VALUE",
80
+ * // TemplateConfiguration: { // TemplateConfiguration
81
+ * // DeletionPolicy: "DELETE" || "RETAIN",
82
+ * // UpdateReplacePolicy: "DELETE" || "RETAIN",
83
+ * // },
84
+ * // TotalWarnings: Number("int"),
85
+ * // };
86
+ *
87
+ * ```
88
+ *
89
+ * @param DescribeGeneratedTemplateCommandInput - {@link DescribeGeneratedTemplateCommandInput}
90
+ * @returns {@link DescribeGeneratedTemplateCommandOutput}
91
+ * @see {@link DescribeGeneratedTemplateCommandInput} for command's `input` shape.
92
+ * @see {@link DescribeGeneratedTemplateCommandOutput} for command's `response` shape.
93
+ * @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
94
+ *
95
+ * @throws {@link GeneratedTemplateNotFoundException} (client fault)
96
+ * <p>The generated template was not found.</p>
97
+ *
98
+ * @throws {@link CloudFormationServiceException}
99
+ * <p>Base exception class for all service exceptions from CloudFormation service.</p>
100
+ *
101
+ * @example To describe a generated template
102
+ * ```javascript
103
+ * // This example describes a generated template
104
+ * const input = {
105
+ * "GeneratedTemplateName": "JazzyTemplate"
106
+ * };
107
+ * const command = new DescribeGeneratedTemplateCommand(input);
108
+ * const response = await client.send(command);
109
+ * /* response ==
110
+ * {
111
+ * "CreationTime": "2023-12-28T17:55:20.086000+00:00",
112
+ * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:*:generatedtemplate/*",
113
+ * "GeneratedTemplateName": "DeletedResourceTest",
114
+ * "LastUpdatedTime": "2023-12-28T17:57:16.610000+00:00",
115
+ * "Progress": {
116
+ * "ResourcesFailed": 0,
117
+ * "ResourcesPending": 0,
118
+ * "ResourcesProcessing": 0,
119
+ * "ResourcesSucceeded": 0
120
+ * },
121
+ * "Status": "COMPLETE",
122
+ * "StatusReason": "All resources complete",
123
+ * "TemplateConfiguration": {
124
+ * "DeletionPolicy": "RETAIN",
125
+ * "UpdateReplacePolicy": "RETAIN"
126
+ * },
127
+ * "TotalWarnings": 0
128
+ * }
129
+ * *\/
130
+ * // example id: to-describe-a-generated-template
131
+ * ```
132
+ *
133
+ */
134
+ export declare class DescribeGeneratedTemplateCommand extends DescribeGeneratedTemplateCommand_base {
135
+ }