@cdklabs/cdk-ssm-documents 0.0.53 → 0.0.54

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 (446) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +4 -3
  118. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +2 -2
  119. package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +2 -1
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +1 -1
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +1 -1
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +1 -1
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  130. package/node_modules/@aws-sdk/client-cloudformation/package.json +7 -7
  131. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  132. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +4 -3
  133. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +2 -2
  134. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  135. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +2 -1
  136. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +1 -1
  137. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  138. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +1 -1
  139. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +1 -1
  140. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +1 -1
  141. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  142. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  145. package/node_modules/@aws-sdk/client-cloudwatch/package.json +7 -7
  146. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  147. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +4 -3
  148. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +2 -2
  149. package/node_modules/@aws-sdk/client-ec2/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  150. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +2 -1
  151. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +1 -1
  152. package/node_modules/@aws-sdk/client-ec2/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  153. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +1 -1
  154. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +1 -1
  155. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +1 -1
  156. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  160. package/node_modules/@aws-sdk/client-ec2/package.json +7 -7
  161. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  162. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +4 -3
  163. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +2 -2
  164. package/node_modules/@aws-sdk/client-iam/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  165. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +2 -1
  166. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +1 -1
  167. package/node_modules/@aws-sdk/client-iam/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  168. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +1 -1
  169. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +1 -1
  170. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +1 -1
  171. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  172. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  173. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  174. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  175. package/node_modules/@aws-sdk/client-iam/package.json +7 -7
  176. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  177. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +4 -3
  178. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +2 -2
  179. package/node_modules/@aws-sdk/client-lambda/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  180. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +2 -1
  181. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +1 -1
  182. package/node_modules/@aws-sdk/client-lambda/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  183. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +1 -1
  184. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +1 -1
  185. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +1 -1
  186. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  187. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  188. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  189. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  190. package/node_modules/@aws-sdk/client-lambda/package.json +7 -7
  191. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +3 -3
  192. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +5 -4
  193. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +5 -5
  194. package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  195. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +2 -1
  196. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +3 -3
  197. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  198. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +1 -1
  201. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +2 -2
  202. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  204. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  205. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  206. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  207. package/node_modules/@aws-sdk/client-s3/package.json +11 -11
  208. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  209. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +4 -3
  210. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +2 -2
  211. package/node_modules/@aws-sdk/client-sns/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  212. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +2 -1
  213. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +1 -1
  214. package/node_modules/@aws-sdk/client-sns/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +1 -1
  216. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +1 -1
  217. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +1 -1
  218. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  219. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  220. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  221. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  222. package/node_modules/@aws-sdk/client-sns/package.json +7 -7
  223. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  224. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +4 -3
  225. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +2 -2
  226. package/node_modules/@aws-sdk/client-sqs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  227. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +2 -1
  228. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +1 -1
  229. package/node_modules/@aws-sdk/client-sqs/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  230. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +1 -1
  231. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +1 -1
  232. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +1 -1
  233. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  234. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  235. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  236. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  237. package/node_modules/@aws-sdk/client-sqs/package.json +7 -7
  238. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  239. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +4 -3
  240. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +2 -2
  241. package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  242. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +2 -1
  243. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +1 -1
  244. package/node_modules/@aws-sdk/client-ssm/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +1 -1
  246. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +1 -1
  247. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +1 -1
  248. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  250. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  251. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  252. package/node_modules/@aws-sdk/client-ssm/package.json +7 -7
  253. package/node_modules/@aws-sdk/core/dist-cjs/index.js +54 -21
  254. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +54 -21
  255. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +24 -6
  256. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +6 -5
  257. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +2 -1
  258. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +2 -1
  259. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +6 -4
  260. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +6 -4
  261. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +4 -2
  262. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +9 -3
  263. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +13 -0
  264. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +3 -1
  265. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +3 -1
  266. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +3 -1
  267. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +3 -1
  268. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +3 -1
  269. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +3 -0
  270. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -0
  271. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +2 -0
  272. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +6 -0
  273. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +3 -0
  274. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +3 -0
  275. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +3 -0
  276. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +3 -0
  277. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +8 -1
  278. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +3 -0
  279. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -0
  280. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +6 -1
  281. package/node_modules/@aws-sdk/core/package.json +2 -2
  282. package/node_modules/@aws-sdk/credential-provider-env/README.md +12 -3
  283. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  284. package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
  285. package/node_modules/@aws-sdk/credential-provider-ini/README.md +12 -3
  286. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  287. package/node_modules/@aws-sdk/credential-provider-login/README.md +12 -3
  288. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  289. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  290. package/node_modules/@aws-sdk/credential-provider-process/README.md +12 -3
  291. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  292. package/node_modules/@aws-sdk/credential-provider-sso/README.md +12 -3
  293. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  294. package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +12 -3
  295. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  296. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +2 -2
  297. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -3
  298. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +1 -1
  299. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +27 -0
  300. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
  301. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +25 -0
  302. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
  303. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +20 -0
  304. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +1 -0
  305. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +15 -0
  306. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +2 -2
  307. package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
  308. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +2 -2
  309. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +4 -3
  310. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +4 -4
  311. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +2 -2
  312. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +4 -3
  313. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +4 -4
  314. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +2 -2
  315. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +4 -3
  316. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +4 -4
  317. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +2 -2
  318. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +4 -3
  319. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +4 -4
  320. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +2 -2
  321. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +7 -6
  322. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +4 -4
  323. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
  324. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -1
  325. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +1 -1
  326. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
  327. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -1
  328. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +1 -1
  329. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
  330. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -1
  331. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +1 -1
  332. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
  333. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -1
  334. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +1 -1
  335. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +1 -1
  336. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +2 -1
  337. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +1 -1
  338. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +1 -1
  339. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
  340. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
  341. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
  342. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -1
  343. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +1 -1
  344. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -2
  345. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +2 -2
  346. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -2
  347. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -1
  348. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +1 -1
  349. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -2
  350. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +2 -2
  351. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -2
  352. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -1
  353. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
  354. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
  355. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
  356. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
  357. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -1
  358. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  359. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -2
  360. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +1 -1
  361. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -2
  362. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -1
  363. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +1 -1
  364. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
  365. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
  366. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
  367. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -1
  368. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +1 -1
  369. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +2 -2
  370. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +2 -2
  371. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +2 -2
  372. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -1
  373. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +1 -1
  374. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +2 -2
  375. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +2 -2
  376. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +2 -2
  377. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -1
  378. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
  379. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
  380. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
  381. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
  382. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -1
  383. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  384. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +2 -2
  385. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +1 -1
  386. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +2 -2
  387. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -1
  388. package/node_modules/@aws-sdk/nested-clients/package.json +6 -6
  389. package/node_modules/@aws-sdk/region-config-resolver/README.md +11 -4
  390. package/node_modules/@aws-sdk/region-config-resolver/package.json +1 -1
  391. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
  392. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  393. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -3
  394. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  395. package/node_modules/@aws-sdk/xml-builder/README.md +10 -3
  396. package/node_modules/@aws-sdk/xml-builder/package.json +1 -1
  397. package/node_modules/@smithy/core/README.md +12 -1
  398. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +8 -17
  399. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -8
  400. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +7 -9
  401. package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +1 -1
  402. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +1 -1
  403. package/node_modules/@smithy/core/package.json +2 -2
  404. package/node_modules/@smithy/middleware-compression/README.md +9 -4
  405. package/node_modules/@smithy/middleware-compression/package.json +2 -2
  406. package/node_modules/@smithy/middleware-endpoint/README.md +10 -3
  407. package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
  408. package/node_modules/@smithy/middleware-retry/README.md +13 -0
  409. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  410. package/node_modules/@smithy/middleware-serde/README.md +13 -0
  411. package/node_modules/@smithy/middleware-serde/package.json +2 -2
  412. package/node_modules/@smithy/node-http-handler/package.json +2 -2
  413. package/node_modules/@smithy/smithy-client/README.md +10 -3
  414. package/node_modules/@smithy/smithy-client/package.json +4 -4
  415. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -3
  416. package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
  417. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -3
  418. package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
  419. package/node_modules/@smithy/util-stream/package.json +2 -2
  420. package/node_modules/@smithy/util-waiter/README.md +10 -3
  421. package/node_modules/@smithy/util-waiter/package.json +2 -2
  422. package/package.json +10 -10
  423. package/node_modules/@smithy/abort-controller/LICENSE +0 -201
  424. package/node_modules/@smithy/abort-controller/README.md +0 -4
  425. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -32
  426. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -7
  427. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  428. package/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  429. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
  430. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
  431. package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  432. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
  433. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
  434. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  435. package/node_modules/@smithy/abort-controller/package.json +0 -63
  436. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/.github/SECURITY.md +0 -0
  437. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/.vscode/launch.json +0 -0
  438. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/CHANGELOG.md +0 -0
  439. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/LICENSE +0 -0
  440. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/README.md +0 -0
  441. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/algo.stflow +0 -0
  442. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/package.json +0 -0
  443. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/strnum.js +0 -0
  444. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/tests/infinity_test.js +0 -0
  445. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/tests/strnum_test.js +0 -0
  446. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/tests/temp.js +0 -0
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
22
  cacheMiddleware?: boolean | undefined;
23
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsEc2QueryProtocol;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsEc2QueryProtocol;
24
24
  protocolSettings: {
25
25
  defaultNamespace?: string;
26
26
  [setting: string]: unknown;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsEc2QueryProtocol;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsEc2QueryProtocol;
11
11
  protocolSettings: {
12
12
  defaultNamespace?: string;
13
13
  [setting: string]: unknown;
@@ -2,7 +2,7 @@ import {
2
2
  AwsSdkSigV4AuthInputConfig,
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
- } from "@aws-sdk/core";
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
6
  import {
7
7
  HandlerExecutionContext,
8
8
  HttpAuthScheme,
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsEc2QueryProtocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsEc2QueryProtocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsEc2QueryProtocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsEc2QueryProtocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
12
12
  protocol:
13
13
  | import("@smithy/types").ClientProtocol<any, any>
14
14
  | import("@smithy/types").ClientProtocolCtor<any, any>
15
- | typeof import("@aws-sdk/core").AwsEc2QueryProtocol;
15
+ | typeof import("@aws-sdk/core/protocols").AwsEc2QueryProtocol;
16
16
  protocolSettings: {
17
17
  defaultNamespace?: string;
18
18
  [setting: string]: unknown;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.1014.0",
4
+ "version": "3.1019.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ec2",
@@ -25,18 +25,18 @@
25
25
  "dependencies": {
26
26
  "@aws-crypto/sha256-browser": "5.2.0",
27
27
  "@aws-crypto/sha256-js": "5.2.0",
28
- "@aws-sdk/core": "^3.973.23",
29
- "@aws-sdk/credential-provider-node": "^3.972.24",
28
+ "@aws-sdk/core": "^3.973.25",
29
+ "@aws-sdk/credential-provider-node": "^3.972.27",
30
30
  "@aws-sdk/middleware-host-header": "^3.972.8",
31
31
  "@aws-sdk/middleware-logger": "^3.972.8",
32
- "@aws-sdk/middleware-recursion-detection": "^3.972.8",
32
+ "@aws-sdk/middleware-recursion-detection": "^3.972.9",
33
33
  "@aws-sdk/middleware-sdk-ec2": "^3.972.17",
34
- "@aws-sdk/middleware-user-agent": "^3.972.24",
35
- "@aws-sdk/region-config-resolver": "^3.972.9",
34
+ "@aws-sdk/middleware-user-agent": "^3.972.26",
35
+ "@aws-sdk/region-config-resolver": "^3.972.10",
36
36
  "@aws-sdk/types": "^3.973.6",
37
37
  "@aws-sdk/util-endpoints": "^3.996.5",
38
38
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
39
- "@aws-sdk/util-user-agent-node": "^3.973.10",
39
+ "@aws-sdk/util-user-agent-node": "^3.973.12",
40
40
  "@smithy/config-resolver": "^4.4.13",
41
41
  "@smithy/core": "^3.23.12",
42
42
  "@smithy/fetch-http-handler": "^5.3.15",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveHttpAuthSchemeConfig = exports.defaultIAMHttpAuthSchemeProvider = exports.defaultIAMHttpAuthSchemeParametersProvider = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultIAMHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
@@ -38,7 +38,7 @@ const defaultIAMHttpAuthSchemeProvider = (authParameters) => {
38
38
  };
39
39
  exports.defaultIAMHttpAuthSchemeProvider = defaultIAMHttpAuthSchemeProvider;
40
40
  const resolveHttpAuthSchemeConfig = (config) => {
41
- const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
41
+ const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
42
42
  return Object.assign(config_0, {
43
43
  authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
44
44
  });
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const core_1 = require("@aws-sdk/core");
6
+ const client_1 = require("@aws-sdk/core/client");
7
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
7
8
  const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
9
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
9
10
  const config_resolver_1 = require("@smithy/config-resolver");
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
21
22
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
22
23
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
23
24
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
24
- (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
25
+ (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
25
26
  const loaderConfig = {
26
27
  profile: config?.profile,
27
28
  logger: clientSharedValues.logger,
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
31
32
  ...config,
32
33
  runtime: "node",
33
34
  defaultsMode,
34
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
36
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
36
37
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
37
38
  defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const protocols_1 = require("@aws-sdk/core/protocols");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  const url_parser_1 = require("@smithy/url-parser");
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
23
23
  {
24
24
  schemeId: "aws.auth#sigv4",
25
25
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
26
- signer: new core_1.AwsSdkSigV4Signer(),
26
+ signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
27
27
  },
28
28
  ],
29
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultIAMHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -1,5 +1,6 @@
1
1
  import packageInfo from "../package.json";
2
- import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
2
+ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
3
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
3
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
5
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
5
6
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsQueryProtocol } from "@aws-sdk/core/protocols";
3
3
  import { NoOpLogger } from "@smithy/smithy-client";
4
4
  import { parseUrl } from "@smithy/url-parser";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type IAMClientResolvedConfig } from "../IAMClient";
4
4
  /**
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
18
18
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
19
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  cacheMiddleware?: boolean | undefined;
21
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
21
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
22
22
  protocolSettings: {
23
23
  defaultNamespace?: string;
24
24
  [setting: string]: unknown;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
22
  cacheMiddleware?: boolean | undefined;
23
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
24
24
  protocolSettings: {
25
25
  defaultNamespace?: string;
26
26
  [setting: string]: unknown;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
11
11
  protocolSettings: {
12
12
  defaultNamespace?: string;
13
13
  [setting: string]: unknown;
@@ -2,7 +2,7 @@ import {
2
2
  AwsSdkSigV4AuthInputConfig,
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
- } from "@aws-sdk/core";
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
6
  import {
7
7
  HandlerExecutionContext,
8
8
  HttpAuthScheme,
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsQueryProtocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsQueryProtocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: IAMClientConfig) => {
12
12
  protocol:
13
13
  | import("@smithy/types").ClientProtocol<any, any>
14
14
  | import("@smithy/types").ClientProtocolCtor<any, any>
15
- | typeof import("@aws-sdk/core").AwsQueryProtocol;
15
+ | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
16
16
  protocolSettings: {
17
17
  defaultNamespace?: string;
18
18
  [setting: string]: unknown;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iam",
3
3
  "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
4
- "version": "3.1014.0",
4
+ "version": "3.1019.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iam",
@@ -27,17 +27,17 @@
27
27
  "dependencies": {
28
28
  "@aws-crypto/sha256-browser": "5.2.0",
29
29
  "@aws-crypto/sha256-js": "5.2.0",
30
- "@aws-sdk/core": "^3.973.23",
31
- "@aws-sdk/credential-provider-node": "^3.972.24",
30
+ "@aws-sdk/core": "^3.973.25",
31
+ "@aws-sdk/credential-provider-node": "^3.972.27",
32
32
  "@aws-sdk/middleware-host-header": "^3.972.8",
33
33
  "@aws-sdk/middleware-logger": "^3.972.8",
34
- "@aws-sdk/middleware-recursion-detection": "^3.972.8",
35
- "@aws-sdk/middleware-user-agent": "^3.972.24",
36
- "@aws-sdk/region-config-resolver": "^3.972.9",
34
+ "@aws-sdk/middleware-recursion-detection": "^3.972.9",
35
+ "@aws-sdk/middleware-user-agent": "^3.972.26",
36
+ "@aws-sdk/region-config-resolver": "^3.972.10",
37
37
  "@aws-sdk/types": "^3.973.6",
38
38
  "@aws-sdk/util-endpoints": "^3.996.5",
39
39
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
40
- "@aws-sdk/util-user-agent-node": "^3.973.10",
40
+ "@aws-sdk/util-user-agent-node": "^3.973.12",
41
41
  "@smithy/config-resolver": "^4.4.13",
42
42
  "@smithy/core": "^3.23.12",
43
43
  "@smithy/fetch-http-handler": "^5.3.15",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveHttpAuthSchemeConfig = exports.defaultLambdaHttpAuthSchemeProvider = exports.defaultLambdaHttpAuthSchemeParametersProvider = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultLambdaHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
@@ -38,7 +38,7 @@ const defaultLambdaHttpAuthSchemeProvider = (authParameters) => {
38
38
  };
39
39
  exports.defaultLambdaHttpAuthSchemeProvider = defaultLambdaHttpAuthSchemeProvider;
40
40
  const resolveHttpAuthSchemeConfig = (config) => {
41
- const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
41
+ const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
42
42
  return Object.assign(config_0, {
43
43
  authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
44
44
  });
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const core_1 = require("@aws-sdk/core");
6
+ const client_1 = require("@aws-sdk/core/client");
7
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
7
8
  const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
9
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
9
10
  const config_resolver_1 = require("@smithy/config-resolver");
@@ -22,7 +23,7 @@ const getRuntimeConfig = (config) => {
22
23
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
23
24
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
25
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
25
- (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
26
+ (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
26
27
  const loaderConfig = {
27
28
  profile: config?.profile,
28
29
  logger: clientSharedValues.logger,
@@ -32,7 +33,7 @@ const getRuntimeConfig = (config) => {
32
33
  ...config,
33
34
  runtime: "node",
34
35
  defaultsMode,
35
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
36
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
36
37
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
37
38
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
38
39
  defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const protocols_1 = require("@aws-sdk/core/protocols");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  const url_parser_1 = require("@smithy/url-parser");
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
23
23
  {
24
24
  schemeId: "aws.auth#sigv4",
25
25
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
26
- signer: new core_1.AwsSdkSigV4Signer(),
26
+ signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
27
27
  },
28
28
  ],
29
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultLambdaHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -1,5 +1,6 @@
1
1
  import packageInfo from "../package.json";
2
- import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
2
+ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
3
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
3
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
5
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
5
6
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
3
  import { NoOpLogger } from "@smithy/smithy-client";
4
4
  import { parseUrl } from "@smithy/url-parser";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type LambdaClientResolvedConfig } from "../LambdaClient";
4
4
  /**
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
19
19
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
21
  cacheMiddleware?: boolean | undefined;
22
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
22
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
23
23
  protocolSettings: {
24
24
  defaultNamespace?: string;
25
25
  [setting: string]: unknown;
@@ -21,7 +21,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
23
23
  cacheMiddleware?: boolean | undefined;
24
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
24
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
25
25
  protocolSettings: {
26
26
  defaultNamespace?: string;
27
27
  [setting: string]: unknown;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
11
11
  protocolSettings: {
12
12
  defaultNamespace?: string;
13
13
  [setting: string]: unknown;
@@ -2,7 +2,7 @@ import {
2
2
  AwsSdkSigV4AuthInputConfig,
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
- } from "@aws-sdk/core";
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
6
  import {
7
7
  HandlerExecutionContext,
8
8
  HttpAuthScheme,
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
31
31
  protocol:
32
32
  | import("@smithy/types").ClientProtocol<any, any>
33
33
  | import("@smithy/types").ClientProtocolCtor<any, any>
34
- | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
34
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
35
35
  protocolSettings: {
36
36
  defaultNamespace?: string;
37
37
  [setting: string]: unknown;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
31
31
  protocol:
32
32
  | import("@smithy/types").ClientProtocol<any, any>
33
33
  | import("@smithy/types").ClientProtocolCtor<any, any>
34
- | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
34
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
35
35
  protocolSettings: {
36
36
  defaultNamespace?: string;
37
37
  [setting: string]: unknown;
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
12
12
  protocol:
13
13
  | import("@smithy/types").ClientProtocol<any, any>
14
14
  | import("@smithy/types").ClientProtocolCtor<any, any>
15
- | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
15
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
16
16
  protocolSettings: {
17
17
  defaultNamespace?: string;
18
18
  [setting: string]: unknown;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lambda",
3
3
  "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
4
- "version": "3.1014.0",
4
+ "version": "3.1019.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-lambda",
@@ -23,17 +23,17 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.23",
27
- "@aws-sdk/credential-provider-node": "^3.972.24",
26
+ "@aws-sdk/core": "^3.973.25",
27
+ "@aws-sdk/credential-provider-node": "^3.972.27",
28
28
  "@aws-sdk/middleware-host-header": "^3.972.8",
29
29
  "@aws-sdk/middleware-logger": "^3.972.8",
30
- "@aws-sdk/middleware-recursion-detection": "^3.972.8",
31
- "@aws-sdk/middleware-user-agent": "^3.972.24",
32
- "@aws-sdk/region-config-resolver": "^3.972.9",
30
+ "@aws-sdk/middleware-recursion-detection": "^3.972.9",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.26",
32
+ "@aws-sdk/region-config-resolver": "^3.972.10",
33
33
  "@aws-sdk/types": "^3.973.6",
34
34
  "@aws-sdk/util-endpoints": "^3.996.5",
35
35
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
- "@aws-sdk/util-user-agent-node": "^3.973.10",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.12",
37
37
  "@smithy/config-resolver": "^4.4.13",
38
38
  "@smithy/core": "^3.23.12",
39
39
  "@smithy/eventstream-serde-browser": "^4.2.12",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveHttpAuthSchemeConfig = exports.defaultS3HttpAuthSchemeProvider = exports.defaultS3HttpAuthSchemeParametersProvider = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const signature_v4_multi_region_1 = require("@aws-sdk/signature-v4-multi-region");
6
6
  const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
7
7
  const util_middleware_1 = require("@smithy/util-middleware");
@@ -117,8 +117,8 @@ exports.defaultS3HttpAuthSchemeProvider = createEndpointRuleSetHttpAuthSchemePro
117
117
  "aws.auth#sigv4a": createAwsAuthSigv4aHttpAuthOption,
118
118
  });
119
119
  const resolveHttpAuthSchemeConfig = (config) => {
120
- const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
121
- const config_1 = (0, core_1.resolveAwsSdkSigV4AConfig)(config_0);
120
+ const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
121
+ const config_1 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4AConfig)(config_0);
122
122
  return Object.assign(config_1, {
123
123
  authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
124
124
  });
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const core_1 = require("@aws-sdk/core");
6
+ const client_1 = require("@aws-sdk/core/client");
7
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
7
8
  const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
9
  const middleware_bucket_endpoint_1 = require("@aws-sdk/middleware-bucket-endpoint");
9
10
  const middleware_flexible_checksums_1 = require("@aws-sdk/middleware-flexible-checksums");
@@ -26,7 +27,7 @@ const getRuntimeConfig = (config) => {
26
27
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
27
28
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
28
29
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
29
- (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
30
+ (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
30
31
  const loaderConfig = {
31
32
  profile: config?.profile,
32
33
  logger: clientSharedValues.logger,
@@ -36,7 +37,7 @@ const getRuntimeConfig = (config) => {
36
37
  ...config,
37
38
  runtime: "node",
38
39
  defaultsMode,
39
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
40
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
40
41
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
41
42
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
42
43
  defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -55,7 +56,7 @@ const getRuntimeConfig = (config) => {
55
56
  }, config),
56
57
  sha1: config?.sha1 ?? hash_node_1.Hash.bind(null, "sha1"),
57
58
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
58
- sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_SIGV4A_CONFIG_OPTIONS, loaderConfig),
59
+ sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_SIGV4A_CONFIG_OPTIONS, loaderConfig),
59
60
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
60
61
  streamHasher: config?.streamHasher ?? hash_stream_node_1.readableStreamHasher,
61
62
  useArnRegion: config?.useArnRegion ?? (0, node_config_provider_1.loadConfig)(middleware_bucket_endpoint_1.NODE_USE_ARN_REGION_CONFIG_OPTIONS, loaderConfig),
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
- const core_1 = require("@aws-sdk/core");
5
- const protocols_1 = require("@aws-sdk/core/protocols");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
+ const middleware_sdk_s3_1 = require("@aws-sdk/middleware-sdk-s3");
6
6
  const signature_v4_multi_region_1 = require("@aws-sdk/signature-v4-multi-region");
7
7
  const smithy_client_1 = require("@smithy/smithy-client");
8
8
  const url_parser_1 = require("@smithy/url-parser");
@@ -26,16 +26,16 @@ const getRuntimeConfig = (config) => {
26
26
  {
27
27
  schemeId: "aws.auth#sigv4",
28
28
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
29
- signer: new core_1.AwsSdkSigV4Signer(),
29
+ signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
30
30
  },
31
31
  {
32
32
  schemeId: "aws.auth#sigv4a",
33
33
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4a"),
34
- signer: new core_1.AwsSdkSigV4ASigner(),
34
+ signer: new httpAuthSchemes_1.AwsSdkSigV4ASigner(),
35
35
  },
36
36
  ],
37
37
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
38
- protocol: config?.protocol ?? protocols_1.AwsRestXmlProtocol,
38
+ protocol: config?.protocol ?? middleware_sdk_s3_1.S3RestXmlProtocol,
39
39
  protocolSettings: config?.protocolSettings ?? {
40
40
  defaultNamespace: "com.amazonaws.s3",
41
41
  errorTypeRegistries: schemas_0_1.errorTypeRegistries,
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4AConfig, resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4AConfig, resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
3
3
  import { resolveParams } from "@smithy/middleware-endpoint";
4
4
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";