@cdklabs/cdk-ssm-documents 0.0.67 → 0.0.69

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 (6279) hide show
  1. package/.jsii +11 -11
  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/lambda-invoke-store/README.md +25 -1
  117. package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
  118. package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
  119. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
  120. package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
  121. package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
  122. package/node_modules/@aws-sdk/checksums/crc.js +5 -0
  123. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +5 -530
  124. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
  125. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
  126. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
  127. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
  128. package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -8
  129. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
  130. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
  131. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
  132. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64NvmeJs.js +92 -0
  133. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
  134. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
  135. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
  136. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/selectChecksumAlgorithmFunction.js +27 -0
  137. package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
  138. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
  139. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
  140. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
  141. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
  142. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
  143. package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -11
  144. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
  145. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
  146. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +21 -0
  147. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
  148. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/crc64-nvme-crt-container.d.ts +11 -0
  149. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
  150. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
  151. package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
  152. package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
  153. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
  154. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
  155. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
  156. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
  157. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
  158. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +11 -14
  159. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
  160. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
  161. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +8 -0
  162. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
  163. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
  164. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
  165. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
  166. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
  167. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
  168. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
  169. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
  170. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
  171. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
  172. package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
  173. package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
  174. package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
  175. package/node_modules/@aws-sdk/checksums/md5.js +5 -0
  176. package/node_modules/@aws-sdk/checksums/package.json +67 -11
  177. package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
  178. package/node_modules/@aws-sdk/checksums/sha.js +5 -0
  179. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +3999 -1094
  180. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commandBuilder.js +6 -0
  181. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateOrganizationsAccessCommand.js +2 -14
  182. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateTypeCommand.js +2 -14
  183. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/BatchDescribeTypeConfigurationsCommand.js +2 -14
  184. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CancelUpdateStackCommand.js +2 -14
  185. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ContinueUpdateRollbackCommand.js +2 -14
  186. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateChangeSetCommand.js +2 -14
  187. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +2 -14
  188. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackCommand.js +2 -14
  189. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackInstancesCommand.js +2 -14
  190. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackRefactorCommand.js +2 -14
  191. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackSetCommand.js +2 -14
  192. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateOrganizationsAccessCommand.js +2 -14
  193. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateTypeCommand.js +2 -14
  194. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteChangeSetCommand.js +2 -14
  195. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +2 -14
  196. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackCommand.js +2 -14
  197. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackInstancesCommand.js +2 -14
  198. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackSetCommand.js +2 -14
  199. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeregisterTypeCommand.js +2 -14
  200. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeAccountLimitsCommand.js +2 -14
  201. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetCommand.js +2 -14
  202. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetHooksCommand.js +2 -14
  203. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeEventsCommand.js +2 -14
  204. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +2 -14
  205. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeOrganizationsAccessCommand.js +2 -14
  206. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribePublisherCommand.js +2 -14
  207. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +2 -14
  208. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackDriftDetectionStatusCommand.js +2 -14
  209. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackEventsCommand.js +2 -14
  210. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackInstanceCommand.js +2 -14
  211. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackRefactorCommand.js +2 -14
  212. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceCommand.js +2 -14
  213. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceDriftsCommand.js +2 -14
  214. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourcesCommand.js +2 -14
  215. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetCommand.js +2 -14
  216. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetOperationCommand.js +2 -14
  217. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStacksCommand.js +2 -14
  218. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeCommand.js +2 -14
  219. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeRegistrationCommand.js +2 -14
  220. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackDriftCommand.js +2 -14
  221. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackResourceDriftCommand.js +2 -14
  222. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackSetDriftCommand.js +2 -14
  223. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/EstimateTemplateCostCommand.js +2 -14
  224. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteChangeSetCommand.js +2 -14
  225. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteStackRefactorCommand.js +2 -14
  226. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +2 -14
  227. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetHookResultCommand.js +2 -14
  228. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetStackPolicyCommand.js +2 -14
  229. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateCommand.js +2 -14
  230. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateSummaryCommand.js +2 -14
  231. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ImportStacksToStackSetCommand.js +2 -14
  232. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListChangeSetsCommand.js +2 -14
  233. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListExportsCommand.js +2 -14
  234. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +2 -14
  235. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListHookResultsCommand.js +2 -14
  236. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListImportsCommand.js +2 -14
  237. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +2 -14
  238. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +2 -14
  239. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +2 -14
  240. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstanceResourceDriftsCommand.js +2 -14
  241. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstancesCommand.js +2 -14
  242. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorActionsCommand.js +2 -14
  243. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorsCommand.js +2 -14
  244. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackResourcesCommand.js +2 -14
  245. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +2 -14
  246. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationResultsCommand.js +2 -14
  247. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationsCommand.js +2 -14
  248. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetsCommand.js +2 -14
  249. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStacksCommand.js +2 -14
  250. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeRegistrationsCommand.js +2 -14
  251. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeVersionsCommand.js +2 -14
  252. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypesCommand.js +2 -14
  253. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/PublishTypeCommand.js +2 -14
  254. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RecordHandlerProgressCommand.js +2 -14
  255. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterPublisherCommand.js +2 -14
  256. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterTypeCommand.js +2 -14
  257. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RollbackStackCommand.js +2 -14
  258. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetStackPolicyCommand.js +2 -14
  259. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeConfigurationCommand.js +2 -14
  260. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeDefaultVersionCommand.js +2 -14
  261. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SignalResourceCommand.js +2 -14
  262. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +2 -14
  263. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StopStackSetOperationCommand.js +2 -14
  264. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/TestTypeCommand.js +2 -14
  265. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +2 -14
  266. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackCommand.js +2 -14
  267. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackInstancesCommand.js +2 -14
  268. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackSetCommand.js +2 -14
  269. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateTerminationProtectionCommand.js +2 -14
  270. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ValidateTemplateCommand.js +2 -14
  271. package/node_modules/@aws-sdk/client-cloudformation/dist-es/index.js +1 -0
  272. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/enums.js +4 -0
  273. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +0 -2
  274. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
  275. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.native.js +0 -2
  276. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +2 -0
  277. package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +25 -17
  278. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commandBuilder.d.ts +18 -0
  279. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateOrganizationsAccessCommand.d.ts +3 -8
  280. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateTypeCommand.d.ts +3 -8
  281. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +3 -8
  282. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CancelUpdateStackCommand.d.ts +3 -8
  283. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +3 -8
  284. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateChangeSetCommand.d.ts +8 -8
  285. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +3 -8
  286. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackCommand.d.ts +8 -8
  287. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackInstancesCommand.d.ts +3 -8
  288. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackRefactorCommand.d.ts +3 -8
  289. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackSetCommand.d.ts +3 -8
  290. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateOrganizationsAccessCommand.d.ts +3 -8
  291. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateTypeCommand.d.ts +3 -8
  292. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteChangeSetCommand.d.ts +3 -8
  293. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +3 -8
  294. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackCommand.d.ts +7 -8
  295. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackInstancesCommand.d.ts +3 -8
  296. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackSetCommand.d.ts +3 -8
  297. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeregisterTypeCommand.d.ts +3 -8
  298. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeAccountLimitsCommand.d.ts +3 -8
  299. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetCommand.d.ts +7 -8
  300. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +3 -8
  301. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeEventsCommand.d.ts +3 -8
  302. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +3 -8
  303. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeOrganizationsAccessCommand.d.ts +3 -8
  304. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribePublisherCommand.d.ts +3 -8
  305. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +3 -8
  306. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +3 -8
  307. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackEventsCommand.d.ts +3 -8
  308. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackInstanceCommand.d.ts +3 -8
  309. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackRefactorCommand.d.ts +3 -8
  310. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceCommand.d.ts +3 -8
  311. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +3 -8
  312. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourcesCommand.d.ts +3 -8
  313. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetCommand.d.ts +3 -8
  314. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetOperationCommand.d.ts +3 -8
  315. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStacksCommand.d.ts +7 -8
  316. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeCommand.d.ts +3 -8
  317. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +3 -8
  318. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackDriftCommand.d.ts +3 -8
  319. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackResourceDriftCommand.d.ts +3 -8
  320. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackSetDriftCommand.d.ts +3 -8
  321. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/EstimateTemplateCostCommand.d.ts +3 -8
  322. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteChangeSetCommand.d.ts +3 -8
  323. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteStackRefactorCommand.d.ts +3 -8
  324. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +3 -8
  325. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetHookResultCommand.d.ts +3 -8
  326. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetStackPolicyCommand.d.ts +3 -8
  327. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateCommand.d.ts +3 -8
  328. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateSummaryCommand.d.ts +3 -8
  329. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ImportStacksToStackSetCommand.d.ts +3 -8
  330. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListChangeSetsCommand.d.ts +3 -8
  331. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListExportsCommand.d.ts +3 -8
  332. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +3 -8
  333. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListHookResultsCommand.d.ts +3 -8
  334. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListImportsCommand.d.ts +3 -8
  335. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +3 -8
  336. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +3 -8
  337. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +3 -8
  338. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +3 -8
  339. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstancesCommand.d.ts +3 -8
  340. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorActionsCommand.d.ts +3 -8
  341. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorsCommand.d.ts +3 -8
  342. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackResourcesCommand.d.ts +3 -8
  343. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +3 -8
  344. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +3 -8
  345. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationsCommand.d.ts +3 -8
  346. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetsCommand.d.ts +3 -8
  347. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStacksCommand.d.ts +3 -8
  348. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeRegistrationsCommand.d.ts +3 -8
  349. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeVersionsCommand.d.ts +3 -8
  350. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypesCommand.d.ts +3 -8
  351. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/PublishTypeCommand.d.ts +3 -8
  352. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RecordHandlerProgressCommand.d.ts +3 -8
  353. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterPublisherCommand.d.ts +3 -8
  354. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterTypeCommand.d.ts +3 -8
  355. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RollbackStackCommand.d.ts +7 -8
  356. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetStackPolicyCommand.d.ts +3 -8
  357. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeConfigurationCommand.d.ts +3 -8
  358. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +3 -8
  359. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SignalResourceCommand.d.ts +3 -8
  360. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +3 -8
  361. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +3 -8
  362. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +3 -8
  363. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +3 -8
  364. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +8 -8
  365. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -8
  366. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +3 -8
  367. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +3 -8
  368. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +3 -8
  369. package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -0
  370. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/enums.d.ts +12 -0
  371. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +107 -2
  372. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +2 -2
  373. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +2 -2
  374. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +2 -2
  375. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.shared.d.ts +1 -0
  376. package/node_modules/@aws-sdk/client-cloudformation/dist-types/schemas/schemas_0.d.ts +1 -0
  377. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  378. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateOrganizationsAccessCommand.d.ts +7 -16
  379. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateTypeCommand.d.ts +7 -16
  380. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/BatchDescribeTypeConfigurationsCommand.d.ts +7 -16
  381. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CancelUpdateStackCommand.d.ts +7 -16
  382. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ContinueUpdateRollbackCommand.d.ts +7 -16
  383. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateChangeSetCommand.d.ts +7 -16
  384. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +7 -16
  385. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackCommand.d.ts +7 -16
  386. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackInstancesCommand.d.ts +7 -16
  387. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackRefactorCommand.d.ts +7 -16
  388. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackSetCommand.d.ts +7 -16
  389. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateOrganizationsAccessCommand.d.ts +7 -16
  390. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateTypeCommand.d.ts +7 -16
  391. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteChangeSetCommand.d.ts +7 -16
  392. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +7 -16
  393. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackCommand.d.ts +7 -16
  394. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackInstancesCommand.d.ts +7 -16
  395. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackSetCommand.d.ts +7 -16
  396. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeregisterTypeCommand.d.ts +7 -16
  397. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +7 -16
  398. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +7 -16
  399. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetHooksCommand.d.ts +7 -16
  400. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +7 -16
  401. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +7 -16
  402. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeOrganizationsAccessCommand.d.ts +7 -16
  403. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribePublisherCommand.d.ts +7 -16
  404. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +7 -16
  405. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackDriftDetectionStatusCommand.d.ts +7 -16
  406. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackEventsCommand.d.ts +7 -16
  407. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackInstanceCommand.d.ts +7 -16
  408. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackRefactorCommand.d.ts +7 -16
  409. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceCommand.d.ts +7 -16
  410. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceDriftsCommand.d.ts +7 -16
  411. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourcesCommand.d.ts +7 -16
  412. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetCommand.d.ts +7 -16
  413. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetOperationCommand.d.ts +7 -16
  414. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStacksCommand.d.ts +7 -16
  415. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeCommand.d.ts +7 -16
  416. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeRegistrationCommand.d.ts +7 -16
  417. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackDriftCommand.d.ts +7 -16
  418. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackResourceDriftCommand.d.ts +7 -16
  419. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackSetDriftCommand.d.ts +7 -16
  420. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/EstimateTemplateCostCommand.d.ts +7 -16
  421. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteChangeSetCommand.d.ts +7 -16
  422. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteStackRefactorCommand.d.ts +7 -16
  423. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +7 -16
  424. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetHookResultCommand.d.ts +7 -16
  425. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetStackPolicyCommand.d.ts +7 -16
  426. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +7 -16
  427. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateSummaryCommand.d.ts +7 -16
  428. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ImportStacksToStackSetCommand.d.ts +7 -16
  429. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +7 -16
  430. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListExportsCommand.d.ts +7 -16
  431. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +7 -16
  432. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListHookResultsCommand.d.ts +7 -16
  433. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListImportsCommand.d.ts +7 -16
  434. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +7 -16
  435. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +7 -16
  436. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +7 -16
  437. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstanceResourceDriftsCommand.d.ts +7 -16
  438. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstancesCommand.d.ts +7 -16
  439. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorActionsCommand.d.ts +7 -16
  440. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorsCommand.d.ts +7 -16
  441. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackResourcesCommand.d.ts +7 -16
  442. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +7 -16
  443. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationResultsCommand.d.ts +7 -16
  444. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationsCommand.d.ts +7 -16
  445. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetsCommand.d.ts +7 -16
  446. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStacksCommand.d.ts +7 -16
  447. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeRegistrationsCommand.d.ts +7 -16
  448. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeVersionsCommand.d.ts +7 -16
  449. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypesCommand.d.ts +7 -16
  450. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/PublishTypeCommand.d.ts +7 -16
  451. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RecordHandlerProgressCommand.d.ts +7 -16
  452. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterPublisherCommand.d.ts +7 -16
  453. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterTypeCommand.d.ts +7 -16
  454. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RollbackStackCommand.d.ts +7 -16
  455. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetStackPolicyCommand.d.ts +7 -16
  456. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeConfigurationCommand.d.ts +7 -16
  457. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +7 -16
  458. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +7 -16
  459. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +7 -16
  460. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +7 -16
  461. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +7 -16
  462. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +7 -16
  463. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +7 -16
  464. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +7 -16
  465. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +7 -16
  466. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +7 -16
  467. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +7 -16
  468. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/index.d.ts +1 -0
  469. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/enums.d.ts +6 -0
  470. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +15 -0
  471. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  472. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  473. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  474. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  475. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  476. package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -10
  477. package/node_modules/@aws-sdk/client-cloudwatch/README.md +58 -13
  478. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +2359 -616
  479. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +4 -0
  480. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commandBuilder.js +12 -0
  481. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +2 -14
  482. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmMuteRuleCommand.js +2 -14
  483. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmsCommand.js +2 -14
  484. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -14
  485. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteDashboardsCommand.js +2 -14
  486. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteInsightRulesCommand.js +2 -14
  487. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteMetricStreamCommand.js +2 -14
  488. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmContributorsCommand.js +2 -14
  489. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmHistoryCommand.js +2 -14
  490. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsCommand.js +2 -14
  491. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsForMetricCommand.js +2 -14
  492. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAnomalyDetectorsCommand.js +2 -14
  493. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeInsightRulesCommand.js +2 -14
  494. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableAlarmActionsCommand.js +2 -14
  495. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableInsightRulesCommand.js +2 -14
  496. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +2 -14
  497. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableAlarmActionsCommand.js +2 -14
  498. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableInsightRulesCommand.js +2 -14
  499. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetAlarmMuteRuleCommand.js +2 -14
  500. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDashboardCommand.js +2 -14
  501. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +2 -14
  502. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetInsightRuleReportCommand.js +2 -14
  503. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricDataCommand.js +2 -14
  504. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStatisticsCommand.js +2 -14
  505. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStreamCommand.js +2 -14
  506. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricWidgetImageCommand.js +2 -14
  507. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetOTelEnrichmentCommand.js +2 -14
  508. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListAlarmMuteRulesCommand.js +2 -14
  509. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListDashboardsCommand.js +2 -14
  510. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListManagedInsightRulesCommand.js +2 -14
  511. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricStreamsCommand.js +2 -14
  512. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricsCommand.js +2 -14
  513. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  514. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAlarmMuteRuleCommand.js +2 -14
  515. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAnomalyDetectorCommand.js +2 -14
  516. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutCompositeAlarmCommand.js +2 -14
  517. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutDashboardCommand.js +2 -14
  518. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutInsightRuleCommand.js +2 -14
  519. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutLogAlarmCommand.js +4 -0
  520. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutManagedInsightRulesCommand.js +2 -14
  521. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricAlarmCommand.js +2 -14
  522. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricDataCommand.js +2 -20
  523. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricStreamCommand.js +2 -14
  524. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/SetAlarmStateCommand.js +2 -14
  525. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartMetricStreamsCommand.js +2 -14
  526. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartOTelEnrichmentCommand.js +2 -14
  527. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopMetricStreamsCommand.js +2 -14
  528. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopOTelEnrichmentCommand.js +2 -14
  529. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/TagResourceCommand.js +2 -14
  530. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/UntagResourceCommand.js +2 -14
  531. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +1 -0
  532. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/index.js +1 -0
  533. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/enums.js +1 -0
  534. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +12 -0
  535. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.browser.js +0 -2
  536. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +1 -2
  537. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.native.js +0 -2
  538. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +2 -0
  539. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +88 -15
  540. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/index.js +1 -0
  541. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForLogAlarmExists.js +32 -0
  542. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +64 -13
  543. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +54 -15
  544. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commandBuilder.d.ts +22 -0
  545. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +3 -8
  546. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmMuteRuleCommand.d.ts +10 -11
  547. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmsCommand.d.ts +11 -13
  548. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +5 -9
  549. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +3 -8
  550. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteInsightRulesCommand.d.ts +3 -8
  551. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteMetricStreamCommand.d.ts +3 -8
  552. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmContributorsCommand.d.ts +6 -9
  553. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +6 -11
  554. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsCommand.d.ts +57 -11
  555. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +9 -8
  556. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +8 -9
  557. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeInsightRulesCommand.d.ts +4 -9
  558. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableAlarmActionsCommand.d.ts +3 -8
  559. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableInsightRulesCommand.d.ts +3 -8
  560. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +3 -8
  561. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableAlarmActionsCommand.d.ts +3 -8
  562. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableInsightRulesCommand.d.ts +3 -8
  563. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetAlarmMuteRuleCommand.d.ts +14 -13
  564. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDashboardCommand.d.ts +3 -8
  565. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +3 -8
  566. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetInsightRuleReportCommand.d.ts +3 -8
  567. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricDataCommand.d.ts +6 -11
  568. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStatisticsCommand.d.ts +5 -10
  569. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStreamCommand.d.ts +3 -8
  570. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricWidgetImageCommand.d.ts +4 -9
  571. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +5 -11
  572. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListAlarmMuteRulesCommand.d.ts +10 -11
  573. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListDashboardsCommand.d.ts +4 -9
  574. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListManagedInsightRulesCommand.d.ts +3 -8
  575. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricStreamsCommand.d.ts +3 -8
  576. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricsCommand.d.ts +3 -8
  577. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  578. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAlarmMuteRuleCommand.d.ts +27 -14
  579. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +8 -11
  580. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutCompositeAlarmCommand.d.ts +9 -14
  581. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +3 -8
  582. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutInsightRuleCommand.d.ts +3 -8
  583. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutLogAlarmCommand.d.ts +126 -0
  584. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutManagedInsightRulesCommand.d.ts +7 -12
  585. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricAlarmCommand.d.ts +19 -18
  586. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricDataCommand.d.ts +5 -10
  587. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricStreamCommand.d.ts +9 -14
  588. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/SetAlarmStateCommand.d.ts +3 -8
  589. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartMetricStreamsCommand.d.ts +3 -8
  590. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +10 -16
  591. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopMetricStreamsCommand.d.ts +3 -8
  592. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +6 -12
  593. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +3 -8
  594. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  595. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +1 -0
  596. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/index.d.ts +52 -13
  597. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/enums.d.ts +1 -0
  598. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +12 -0
  599. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +878 -294
  600. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +2 -2
  601. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +2 -2
  602. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +2 -2
  603. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.shared.d.ts +1 -0
  604. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +9 -0
  605. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +26 -0
  606. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +6 -0
  607. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commandBuilder.d.ts +52 -0
  608. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +7 -16
  609. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmMuteRuleCommand.d.ts +7 -16
  610. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmsCommand.d.ts +7 -16
  611. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +7 -16
  612. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteDashboardsCommand.d.ts +7 -16
  613. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteInsightRulesCommand.d.ts +7 -16
  614. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteMetricStreamCommand.d.ts +7 -16
  615. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmContributorsCommand.d.ts +7 -16
  616. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmHistoryCommand.d.ts +7 -16
  617. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsCommand.d.ts +7 -16
  618. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsForMetricCommand.d.ts +7 -16
  619. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAnomalyDetectorsCommand.d.ts +7 -16
  620. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeInsightRulesCommand.d.ts +7 -16
  621. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableAlarmActionsCommand.d.ts +7 -16
  622. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableInsightRulesCommand.d.ts +7 -16
  623. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +7 -16
  624. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableAlarmActionsCommand.d.ts +7 -16
  625. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableInsightRulesCommand.d.ts +7 -16
  626. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetAlarmMuteRuleCommand.d.ts +7 -16
  627. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +7 -16
  628. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +7 -16
  629. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetInsightRuleReportCommand.d.ts +7 -16
  630. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +7 -16
  631. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStatisticsCommand.d.ts +7 -16
  632. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStreamCommand.d.ts +7 -16
  633. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricWidgetImageCommand.d.ts +7 -16
  634. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetOTelEnrichmentCommand.d.ts +7 -16
  635. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListAlarmMuteRulesCommand.d.ts +7 -16
  636. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +7 -16
  637. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListManagedInsightRulesCommand.d.ts +7 -16
  638. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricStreamsCommand.d.ts +7 -16
  639. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +7 -16
  640. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  641. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAlarmMuteRuleCommand.d.ts +7 -16
  642. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +8 -17
  643. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutCompositeAlarmCommand.d.ts +7 -16
  644. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutDashboardCommand.d.ts +7 -16
  645. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutInsightRuleCommand.d.ts +7 -16
  646. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutLogAlarmCommand.d.ts +38 -0
  647. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutManagedInsightRulesCommand.d.ts +7 -16
  648. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricAlarmCommand.d.ts +7 -16
  649. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricDataCommand.d.ts +7 -16
  650. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricStreamCommand.d.ts +7 -16
  651. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/SetAlarmStateCommand.d.ts +7 -16
  652. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartMetricStreamsCommand.d.ts +7 -16
  653. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartOTelEnrichmentCommand.d.ts +7 -16
  654. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopMetricStreamsCommand.d.ts +7 -16
  655. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopOTelEnrichmentCommand.d.ts +7 -16
  656. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  657. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  658. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +1 -0
  659. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/index.d.ts +1 -0
  660. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/enums.d.ts +1 -0
  661. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +5 -0
  662. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +98 -5
  663. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  664. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  665. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  666. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  667. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  668. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/index.d.ts +1 -0
  669. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForLogAlarmExists.d.ts +17 -0
  670. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/index.d.ts +1 -0
  671. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForLogAlarmExists.d.ts +15 -0
  672. package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -12
  673. package/node_modules/@aws-sdk/client-ec2/README.md +21 -0
  674. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +37234 -9343
  675. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
  676. package/node_modules/@aws-sdk/client-ec2/dist-es/commandBuilder.js +10 -0
  677. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptAddressTransferCommand.js +2 -14
  678. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptCapacityReservationBillingOwnershipCommand.js +2 -14
  679. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptReservedInstancesExchangeQuoteCommand.js +2 -14
  680. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +2 -14
  681. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
  682. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayPeeringAttachmentCommand.js +2 -14
  683. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayVpcAttachmentCommand.js +2 -14
  684. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcEndpointConnectionsCommand.js +2 -14
  685. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcPeeringConnectionCommand.js +2 -14
  686. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AdvertiseByoipCidrCommand.js +2 -14
  687. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateAddressCommand.js +2 -14
  688. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateHostsCommand.js +2 -14
  689. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateIpamPoolCidrCommand.js +2 -14
  690. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.js +2 -14
  691. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignIpv6AddressesCommand.js +2 -14
  692. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateIpAddressesCommand.js +2 -14
  693. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateNatGatewayAddressCommand.js +2 -14
  694. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateAddressCommand.js +2 -14
  695. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateCapacityReservationBillingOwnerCommand.js +2 -14
  696. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateClientVpnTargetNetworkCommand.js +2 -14
  697. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateDhcpOptionsCommand.js +2 -14
  698. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateEnclaveCertificateIamRoleCommand.js +2 -14
  699. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIamInstanceProfileCommand.js +2 -14
  700. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateInstanceEventWindowCommand.js +2 -14
  701. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamByoasnCommand.js +2 -14
  702. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamResourceDiscoveryCommand.js +2 -14
  703. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateNatGatewayAddressCommand.js +2 -14
  704. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteServerCommand.js +2 -14
  705. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteTableCommand.js +2 -14
  706. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSecurityGroupVpcCommand.js +2 -14
  707. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSubnetCidrBlockCommand.js +2 -14
  708. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayMulticastDomainCommand.js +2 -14
  709. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayPolicyTableCommand.js +2 -14
  710. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayRouteTableCommand.js +2 -14
  711. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTrunkInterfaceCommand.js +2 -14
  712. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateVpcCidrBlockCommand.js +2 -14
  713. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachClassicLinkVpcCommand.js +2 -14
  714. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +2 -14
  715. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachInternetGatewayCommand.js +2 -14
  716. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachNetworkInterfaceCommand.js +2 -14
  717. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -14
  718. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVolumeCommand.js +2 -14
  719. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVpnGatewayCommand.js +2 -14
  720. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeClientVpnIngressCommand.js +2 -14
  721. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupEgressCommand.js +2 -14
  722. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupIngressCommand.js +2 -14
  723. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/BundleInstanceCommand.js +2 -14
  724. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelBundleTaskCommand.js +2 -14
  725. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationCommand.js +2 -14
  726. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationFleetsCommand.js +2 -14
  727. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelConversionTaskCommand.js +2 -14
  728. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelDeclarativePoliciesReportCommand.js +2 -14
  729. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelExportTaskCommand.js +2 -14
  730. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImageLaunchPermissionCommand.js +2 -14
  731. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImportTaskCommand.js +2 -14
  732. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelReservedInstancesListingCommand.js +2 -14
  733. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotFleetRequestsCommand.js +2 -14
  734. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotInstanceRequestsCommand.js +2 -14
  735. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ConfirmProductInstanceCommand.js +2 -14
  736. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyFpgaImageCommand.js +2 -14
  737. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyImageCommand.js +2 -14
  738. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopySnapshotCommand.js +2 -18
  739. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyVolumesCommand.js +2 -14
  740. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityManagerDataExportCommand.js +2 -14
  741. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationBySplittingCommand.js +2 -14
  742. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +2 -14
  743. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCommand.js +2 -14
  744. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationFleetCommand.js +2 -14
  745. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCarrierGatewayCommand.js +2 -14
  746. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnEndpointCommand.js +2 -14
  747. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnRouteCommand.js +2 -14
  748. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipCidrCommand.js +2 -14
  749. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipPoolCommand.js +2 -14
  750. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCustomerGatewayCommand.js +2 -14
  751. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultSubnetCommand.js +2 -14
  752. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultVpcCommand.js +2 -14
  753. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDelegateMacVolumeOwnershipTaskCommand.js +2 -14
  754. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDhcpOptionsCommand.js +2 -14
  755. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateEgressOnlyInternetGatewayCommand.js +2 -14
  756. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFleetCommand.js +2 -14
  757. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFlowLogsCommand.js +2 -14
  758. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFpgaImageCommand.js +2 -14
  759. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageCommand.js +2 -14
  760. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageUsageReportCommand.js +2 -14
  761. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceConnectEndpointCommand.js +2 -14
  762. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceEventWindowCommand.js +2 -14
  763. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceExportTaskCommand.js +2 -14
  764. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInternetGatewayCommand.js +2 -14
  765. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInterruptibleCapacityReservationAllocationCommand.js +2 -14
  766. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamCommand.js +2 -14
  767. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamExternalResourceVerificationTokenCommand.js +2 -14
  768. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPolicyCommand.js +2 -14
  769. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPoolCommand.js +2 -14
  770. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverCommand.js +2 -14
  771. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverTargetCommand.js +2 -14
  772. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamResourceDiscoveryCommand.js +2 -14
  773. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamScopeCommand.js +2 -14
  774. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateKeyPairCommand.js +2 -14
  775. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateCommand.js +2 -14
  776. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateVersionCommand.js +2 -14
  777. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteCommand.js +2 -14
  778. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableCommand.js +2 -14
  779. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
  780. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
  781. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceCommand.js +2 -14
  782. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
  783. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.js +2 -14
  784. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateManagedPrefixListCommand.js +2 -14
  785. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNatGatewayCommand.js +2 -14
  786. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclCommand.js +2 -14
  787. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclEntryCommand.js +2 -14
  788. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsAccessScopeCommand.js +2 -14
  789. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsPathCommand.js +2 -14
  790. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfaceCommand.js +2 -14
  791. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfacePermissionCommand.js +2 -14
  792. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePlacementGroupCommand.js +2 -14
  793. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePublicIpv4PoolCommand.js +2 -14
  794. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReplaceRootVolumeTaskCommand.js +2 -14
  795. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReservedInstancesListingCommand.js +2 -14
  796. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRestoreImageTaskCommand.js +2 -14
  797. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteCommand.js +2 -14
  798. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerCommand.js +2 -14
  799. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerEndpointCommand.js +2 -14
  800. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerPeerCommand.js +2 -14
  801. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteTableCommand.js +2 -14
  802. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondaryNetworkCommand.js +2 -14
  803. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondarySubnetCommand.js +2 -14
  804. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecurityGroupCommand.js +2 -14
  805. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotCommand.js +2 -14
  806. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotsCommand.js +2 -14
  807. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSpotDatafeedSubscriptionCommand.js +2 -14
  808. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateStoreImageTaskCommand.js +2 -14
  809. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCidrReservationCommand.js +2 -14
  810. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCommand.js +2 -14
  811. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTagsCommand.js +2 -14
  812. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -14
  813. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -14
  814. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorSessionCommand.js +2 -14
  815. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorTargetCommand.js +2 -14
  816. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayCommand.js +2 -14
  817. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectCommand.js +2 -14
  818. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectPeerCommand.js +2 -14
  819. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyCommand.js +2 -14
  820. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyEntryCommand.js +2 -14
  821. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMulticastDomainCommand.js +2 -14
  822. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPeeringAttachmentCommand.js +2 -14
  823. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPolicyTableCommand.js +2 -14
  824. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPrefixListReferenceCommand.js +2 -14
  825. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteCommand.js +2 -14
  826. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableAnnouncementCommand.js +2 -14
  827. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableCommand.js +2 -14
  828. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayVpcAttachmentCommand.js +2 -14
  829. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessEndpointCommand.js +2 -14
  830. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessGroupCommand.js +2 -14
  831. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessInstanceCommand.js +2 -14
  832. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessTrustProviderCommand.js +2 -14
  833. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVolumeCommand.js +2 -14
  834. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcBlockPublicAccessExclusionCommand.js +2 -14
  835. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcCommand.js +2 -14
  836. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEncryptionControlCommand.js +2 -14
  837. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointCommand.js +2 -14
  838. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointConnectionNotificationCommand.js +2 -14
  839. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointServiceConfigurationCommand.js +2 -14
  840. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcPeeringConnectionCommand.js +2 -14
  841. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConcentratorCommand.js +2 -14
  842. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionCommand.js +2 -14
  843. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionRouteCommand.js +2 -14
  844. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnGatewayCommand.js +2 -14
  845. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCapacityManagerDataExportCommand.js +2 -14
  846. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCarrierGatewayCommand.js +2 -14
  847. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnEndpointCommand.js +2 -14
  848. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnRouteCommand.js +2 -14
  849. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipCidrCommand.js +2 -14
  850. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipPoolCommand.js +2 -14
  851. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCustomerGatewayCommand.js +2 -14
  852. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteDhcpOptionsCommand.js +2 -14
  853. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteEgressOnlyInternetGatewayCommand.js +2 -14
  854. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFleetsCommand.js +2 -14
  855. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFlowLogsCommand.js +2 -14
  856. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFpgaImageCommand.js +2 -14
  857. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteImageUsageReportCommand.js +2 -14
  858. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceConnectEndpointCommand.js +2 -14
  859. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceEventWindowCommand.js +2 -14
  860. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInternetGatewayCommand.js +2 -14
  861. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamCommand.js +2 -14
  862. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamExternalResourceVerificationTokenCommand.js +2 -14
  863. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPolicyCommand.js +2 -14
  864. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPoolCommand.js +2 -14
  865. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverCommand.js +2 -14
  866. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverTargetCommand.js +2 -14
  867. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamResourceDiscoveryCommand.js +2 -14
  868. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamScopeCommand.js +2 -14
  869. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteKeyPairCommand.js +2 -14
  870. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateCommand.js +2 -14
  871. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateVersionsCommand.js +2 -14
  872. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteCommand.js +2 -14
  873. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableCommand.js +2 -14
  874. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
  875. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
  876. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceCommand.js +2 -14
  877. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
  878. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteManagedPrefixListCommand.js +2 -14
  879. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNatGatewayCommand.js +2 -14
  880. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclCommand.js +2 -14
  881. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclEntryCommand.js +2 -14
  882. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
  883. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeCommand.js +2 -14
  884. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAnalysisCommand.js +2 -14
  885. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsPathCommand.js +2 -14
  886. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfaceCommand.js +2 -14
  887. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfacePermissionCommand.js +2 -14
  888. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePlacementGroupCommand.js +2 -14
  889. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePublicIpv4PoolCommand.js +2 -14
  890. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteQueuedReservedInstancesCommand.js +2 -14
  891. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteCommand.js +2 -14
  892. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerCommand.js +2 -14
  893. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerEndpointCommand.js +2 -14
  894. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerPeerCommand.js +2 -14
  895. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteTableCommand.js +2 -14
  896. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondaryNetworkCommand.js +2 -14
  897. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondarySubnetCommand.js +2 -14
  898. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecurityGroupCommand.js +2 -14
  899. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSnapshotCommand.js +2 -14
  900. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSpotDatafeedSubscriptionCommand.js +2 -14
  901. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCidrReservationCommand.js +2 -14
  902. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCommand.js +2 -14
  903. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTagsCommand.js +2 -14
  904. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterCommand.js +2 -14
  905. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterRuleCommand.js +2 -14
  906. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorSessionCommand.js +2 -14
  907. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorTargetCommand.js +2 -14
  908. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +2 -14
  909. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayCommand.js +2 -14
  910. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectCommand.js +2 -14
  911. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectPeerCommand.js +2 -14
  912. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyCommand.js +2 -14
  913. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.js +2 -14
  914. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMulticastDomainCommand.js +2 -14
  915. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPeeringAttachmentCommand.js +2 -14
  916. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPolicyTableCommand.js +2 -14
  917. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPrefixListReferenceCommand.js +2 -14
  918. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteCommand.js +2 -14
  919. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.js +2 -14
  920. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableCommand.js +2 -14
  921. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayVpcAttachmentCommand.js +2 -14
  922. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessEndpointCommand.js +2 -14
  923. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessGroupCommand.js +2 -14
  924. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessInstanceCommand.js +2 -14
  925. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -14
  926. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVolumeCommand.js +2 -14
  927. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcBlockPublicAccessExclusionCommand.js +2 -14
  928. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcCommand.js +2 -14
  929. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEncryptionControlCommand.js +2 -14
  930. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointConnectionNotificationsCommand.js +2 -14
  931. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointServiceConfigurationsCommand.js +2 -14
  932. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointsCommand.js +2 -14
  933. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcPeeringConnectionCommand.js +2 -14
  934. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConcentratorCommand.js +2 -14
  935. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionCommand.js +2 -14
  936. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionRouteCommand.js +2 -14
  937. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnGatewayCommand.js +2 -14
  938. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionByoipCidrCommand.js +2 -14
  939. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamByoasnCommand.js +2 -14
  940. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamPoolCidrCommand.js +2 -14
  941. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionPublicIpv4PoolCidrCommand.js +2 -14
  942. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterImageCommand.js +2 -14
  943. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterInstanceEventNotificationAttributesCommand.js +2 -14
  944. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
  945. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
  946. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountAttributesCommand.js +2 -14
  947. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountVpcEncryptionControlCommand.js +4 -0
  948. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressTransfersCommand.js +2 -14
  949. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesAttributeCommand.js +2 -14
  950. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesCommand.js +2 -14
  951. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAggregateIdFormatCommand.js +2 -14
  952. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAvailabilityZonesCommand.js +2 -14
  953. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.js +2 -14
  954. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeBundleTasksCommand.js +2 -14
  955. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeByoipCidrsCommand.js +2 -14
  956. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionHistoryCommand.js +2 -14
  957. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionOfferingsCommand.js +2 -14
  958. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockOfferingsCommand.js +2 -14
  959. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockStatusCommand.js +2 -14
  960. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlocksCommand.js +2 -14
  961. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityManagerDataExportsCommand.js +2 -14
  962. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationBillingRequestsCommand.js +2 -14
  963. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +2 -14
  964. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationFleetsCommand.js +2 -14
  965. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +2 -14
  966. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationsCommand.js +2 -14
  967. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCarrierGatewaysCommand.js +2 -14
  968. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClassicLinkInstancesCommand.js +2 -14
  969. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnAuthorizationRulesCommand.js +2 -14
  970. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnConnectionsCommand.js +2 -14
  971. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnEndpointsCommand.js +2 -14
  972. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -14
  973. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +2 -14
  974. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCoipPoolsCommand.js +2 -14
  975. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeConversionTasksCommand.js +2 -14
  976. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCustomerGatewaysCommand.js +2 -14
  977. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDeclarativePoliciesReportsCommand.js +2 -14
  978. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDhcpOptionsCommand.js +2 -14
  979. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeEgressOnlyInternetGatewaysCommand.js +2 -14
  980. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeElasticGpusCommand.js +2 -14
  981. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportImageTasksCommand.js +2 -14
  982. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportTasksCommand.js +2 -14
  983. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastLaunchImagesCommand.js +2 -14
  984. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastSnapshotRestoresCommand.js +2 -14
  985. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetHistoryCommand.js +2 -14
  986. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetInstancesCommand.js +2 -14
  987. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetsCommand.js +2 -14
  988. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFlowLogsCommand.js +2 -14
  989. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImageAttributeCommand.js +2 -14
  990. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImagesCommand.js +2 -14
  991. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationOfferingsCommand.js +2 -14
  992. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationsCommand.js +2 -14
  993. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostsCommand.js +2 -14
  994. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIamInstanceProfileAssociationsCommand.js +2 -14
  995. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdFormatCommand.js +2 -14
  996. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdentityIdFormatCommand.js +2 -14
  997. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageAttributeCommand.js +2 -14
  998. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageReferencesCommand.js +2 -14
  999. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportEntriesCommand.js +2 -14
  1000. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportsCommand.js +2 -14
  1001. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImagesCommand.js +2 -14
  1002. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportImageTasksCommand.js +2 -14
  1003. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportSnapshotTasksCommand.js +2 -14
  1004. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceAttributeCommand.js +2 -14
  1005. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceConnectEndpointsCommand.js +2 -14
  1006. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceCreditSpecificationsCommand.js +2 -14
  1007. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventNotificationAttributesCommand.js +2 -14
  1008. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventWindowsCommand.js +2 -14
  1009. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceImageMetadataCommand.js +2 -14
  1010. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaHistoryStatesCommand.js +2 -14
  1011. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaStatesCommand.js +2 -14
  1012. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceStatusCommand.js +2 -14
  1013. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTopologyCommand.js +2 -14
  1014. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypeOfferingsCommand.js +2 -14
  1015. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypesCommand.js +2 -14
  1016. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstancesCommand.js +2 -14
  1017. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInternetGatewaysCommand.js +2 -14
  1018. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamByoasnCommand.js +2 -14
  1019. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamExternalResourceVerificationTokensCommand.js +2 -14
  1020. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoliciesCommand.js +2 -14
  1021. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js +2 -14
  1022. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolsCommand.js +2 -14
  1023. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolverTargetsCommand.js +2 -14
  1024. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolversCommand.js +2 -14
  1025. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveriesCommand.js +2 -14
  1026. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveryAssociationsCommand.js +2 -14
  1027. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamScopesCommand.js +2 -14
  1028. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamsCommand.js +2 -14
  1029. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpv6PoolsCommand.js +2 -14
  1030. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeKeyPairsCommand.js +2 -14
  1031. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplateVersionsCommand.js +2 -14
  1032. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplatesCommand.js +2 -14
  1033. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.js +2 -14
  1034. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.js +2 -14
  1035. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTablesCommand.js +2 -14
  1036. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -14
  1037. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +2 -14
  1038. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -14
  1039. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLockedSnapshotsCommand.js +2 -14
  1040. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacHostsCommand.js +2 -14
  1041. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacModificationTasksCommand.js +2 -14
  1042. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeManagedPrefixListsCommand.js +2 -14
  1043. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMovingAddressesCommand.js +2 -14
  1044. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNatGatewaysCommand.js +2 -14
  1045. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkAclsCommand.js +2 -14
  1046. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.js +2 -14
  1047. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopesCommand.js +2 -14
  1048. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAnalysesCommand.js +2 -14
  1049. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsPathsCommand.js +2 -14
  1050. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfaceAttributeCommand.js +2 -14
  1051. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacePermissionsCommand.js +2 -14
  1052. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacesCommand.js +2 -14
  1053. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeOutpostLagsCommand.js +2 -14
  1054. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePlacementGroupsCommand.js +2 -14
  1055. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrefixListsCommand.js +2 -14
  1056. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrincipalIdFormatCommand.js +2 -14
  1057. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePublicIpv4PoolsCommand.js +2 -14
  1058. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRegionsCommand.js +2 -14
  1059. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReplaceRootVolumeTasksCommand.js +2 -14
  1060. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesCommand.js +2 -14
  1061. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesListingsCommand.js +2 -14
  1062. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +2 -14
  1063. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesOfferingsCommand.js +2 -14
  1064. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerEndpointsCommand.js +2 -14
  1065. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerPeersCommand.js +2 -14
  1066. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServersCommand.js +2 -14
  1067. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteTablesCommand.js +2 -14
  1068. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstanceAvailabilityCommand.js +2 -14
  1069. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstancesCommand.js +2 -14
  1070. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryInterfacesCommand.js +2 -14
  1071. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryNetworksCommand.js +2 -14
  1072. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondarySubnetsCommand.js +2 -14
  1073. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupReferencesCommand.js +2 -14
  1074. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupRulesCommand.js +2 -14
  1075. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupVpcAssociationsCommand.js +2 -14
  1076. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupsCommand.js +2 -14
  1077. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeServiceLinkVirtualInterfacesCommand.js +2 -14
  1078. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotAttributeCommand.js +2 -14
  1079. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotTierStatusCommand.js +2 -14
  1080. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotsCommand.js +2 -14
  1081. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotDatafeedSubscriptionCommand.js +2 -14
  1082. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetInstancesCommand.js +2 -14
  1083. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestHistoryCommand.js +2 -14
  1084. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestsCommand.js +2 -14
  1085. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotInstanceRequestsCommand.js +2 -14
  1086. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotPriceHistoryCommand.js +2 -14
  1087. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStaleSecurityGroupsCommand.js +2 -14
  1088. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStoreImageTasksCommand.js +2 -14
  1089. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSubnetsCommand.js +2 -14
  1090. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTagsCommand.js +2 -14
  1091. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFilterRulesCommand.js +2 -14
  1092. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFiltersCommand.js +2 -14
  1093. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorSessionsCommand.js +2 -14
  1094. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorTargetsCommand.js +2 -14
  1095. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayAttachmentsCommand.js +2 -14
  1096. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectPeersCommand.js +2 -14
  1097. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectsCommand.js +2 -14
  1098. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMeteringPoliciesCommand.js +2 -14
  1099. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMulticastDomainsCommand.js +2 -14
  1100. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPeeringAttachmentsCommand.js +2 -14
  1101. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPolicyTablesCommand.js +2 -14
  1102. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.js +2 -14
  1103. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTablesCommand.js +2 -14
  1104. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayVpcAttachmentsCommand.js +2 -14
  1105. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewaysCommand.js +2 -14
  1106. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrunkInterfaceAssociationsCommand.js +2 -14
  1107. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessEndpointsCommand.js +2 -14
  1108. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessGroupsCommand.js +2 -14
  1109. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.js +2 -14
  1110. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstancesCommand.js +2 -14
  1111. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -14
  1112. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeAttributeCommand.js +2 -14
  1113. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeStatusCommand.js +2 -14
  1114. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesCommand.js +2 -14
  1115. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesModificationsCommand.js +2 -14
  1116. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcAttributeCommand.js +2 -14
  1117. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessExclusionsCommand.js +2 -14
  1118. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessOptionsCommand.js +2 -14
  1119. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkCommand.js +2 -14
  1120. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkDnsSupportCommand.js +2 -14
  1121. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEncryptionControlsCommand.js +2 -14
  1122. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointAssociationsCommand.js +2 -14
  1123. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionNotificationsCommand.js +2 -14
  1124. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionsCommand.js +2 -14
  1125. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServiceConfigurationsCommand.js +2 -14
  1126. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicePermissionsCommand.js +2 -14
  1127. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicesCommand.js +2 -14
  1128. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointsCommand.js +2 -14
  1129. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcPeeringConnectionsCommand.js +2 -14
  1130. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcsCommand.js +2 -14
  1131. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConcentratorsCommand.js +2 -14
  1132. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConnectionsCommand.js +2 -14
  1133. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnGatewaysCommand.js +2 -14
  1134. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachClassicLinkVpcCommand.js +2 -14
  1135. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +2 -14
  1136. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachInternetGatewayCommand.js +2 -14
  1137. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachNetworkInterfaceCommand.js +2 -14
  1138. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -14
  1139. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVolumeCommand.js +2 -14
  1140. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVpnGatewayCommand.js +2 -14
  1141. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAddressTransferCommand.js +2 -14
  1142. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAllowedImagesSettingsCommand.js +2 -14
  1143. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
  1144. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableCapacityManagerCommand.js +2 -14
  1145. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableEbsEncryptionByDefaultCommand.js +2 -14
  1146. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastLaunchCommand.js +2 -14
  1147. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastSnapshotRestoresCommand.js +2 -14
  1148. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageBlockPublicAccessCommand.js +2 -14
  1149. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageCommand.js +2 -14
  1150. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeprecationCommand.js +2 -14
  1151. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeregistrationProtectionCommand.js +2 -14
  1152. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
  1153. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamOrganizationAdminAccountCommand.js +2 -14
  1154. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamPolicyCommand.js +2 -14
  1155. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableRouteServerPropagationCommand.js +2 -14
  1156. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSerialConsoleAccessCommand.js +2 -14
  1157. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSnapshotBlockPublicAccessCommand.js +2 -14
  1158. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableTransitGatewayRouteTablePropagationCommand.js +2 -14
  1159. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVgwRoutePropagationCommand.js +2 -14
  1160. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkCommand.js +2 -14
  1161. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkDnsSupportCommand.js +2 -14
  1162. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateAddressCommand.js +2 -14
  1163. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateCapacityReservationBillingOwnerCommand.js +2 -14
  1164. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateClientVpnTargetNetworkCommand.js +2 -14
  1165. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateEnclaveCertificateIamRoleCommand.js +2 -14
  1166. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIamInstanceProfileCommand.js +2 -14
  1167. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateInstanceEventWindowCommand.js +2 -14
  1168. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamByoasnCommand.js +2 -14
  1169. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamResourceDiscoveryCommand.js +2 -14
  1170. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateNatGatewayAddressCommand.js +2 -14
  1171. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteServerCommand.js +2 -14
  1172. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteTableCommand.js +2 -14
  1173. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSecurityGroupVpcCommand.js +2 -14
  1174. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSubnetCidrBlockCommand.js +2 -14
  1175. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayMulticastDomainCommand.js +2 -14
  1176. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayPolicyTableCommand.js +2 -14
  1177. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayRouteTableCommand.js +2 -14
  1178. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTrunkInterfaceCommand.js +2 -14
  1179. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateVpcCidrBlockCommand.js +2 -14
  1180. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAddressTransferCommand.js +2 -14
  1181. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAllowedImagesSettingsCommand.js +2 -14
  1182. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
  1183. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableCapacityManagerCommand.js +2 -14
  1184. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableEbsEncryptionByDefaultCommand.js +2 -14
  1185. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastLaunchCommand.js +2 -14
  1186. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastSnapshotRestoresCommand.js +2 -14
  1187. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageBlockPublicAccessCommand.js +2 -14
  1188. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageCommand.js +2 -14
  1189. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeprecationCommand.js +2 -14
  1190. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeregistrationProtectionCommand.js +2 -14
  1191. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
  1192. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamOrganizationAdminAccountCommand.js +2 -14
  1193. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamPolicyCommand.js +2 -14
  1194. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.js +2 -14
  1195. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableRouteServerPropagationCommand.js +2 -14
  1196. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSerialConsoleAccessCommand.js +2 -14
  1197. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSnapshotBlockPublicAccessCommand.js +2 -14
  1198. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableTransitGatewayRouteTablePropagationCommand.js +2 -14
  1199. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVgwRoutePropagationCommand.js +2 -14
  1200. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVolumeIOCommand.js +2 -14
  1201. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkCommand.js +2 -14
  1202. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkDnsSupportCommand.js +2 -14
  1203. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientCertificateRevocationListCommand.js +2 -14
  1204. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientConfigurationCommand.js +2 -14
  1205. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportImageCommand.js +2 -14
  1206. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportTransitGatewayRoutesCommand.js +2 -14
  1207. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.js +2 -14
  1208. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetActiveVpnTunnelStatusCommand.js +2 -14
  1209. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAllowedImagesSettingsCommand.js +2 -14
  1210. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedEnclaveCertificateIamRolesCommand.js +2 -14
  1211. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedIpv6PoolCidrsCommand.js +2 -14
  1212. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAwsNetworkPerformanceDataCommand.js +2 -14
  1213. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerAttributesCommand.js +2 -14
  1214. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDataCommand.js +2 -14
  1215. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDimensionsCommand.js +2 -14
  1216. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +2 -14
  1217. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityReservationUsageCommand.js +2 -14
  1218. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCoipPoolUsageCommand.js +2 -14
  1219. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleOutputCommand.js +2 -14
  1220. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleScreenshotCommand.js +2 -14
  1221. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDeclarativePoliciesReportSummaryCommand.js +2 -14
  1222. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDefaultCreditSpecificationCommand.js +2 -14
  1223. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsDefaultKmsKeyIdCommand.js +2 -14
  1224. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +2 -14
  1225. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEnabledIpamPolicyCommand.js +2 -14
  1226. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetFlowLogsIntegrationTemplateCommand.js +2 -14
  1227. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetGroupsForCapacityReservationCommand.js +2 -14
  1228. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetHostReservationPurchasePreviewCommand.js +2 -14
  1229. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageAncestryCommand.js +2 -14
  1230. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageBlockPublicAccessStateCommand.js +2 -14
  1231. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceMetadataDefaultsCommand.js +2 -14
  1232. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTpmEkPubCommand.js +2 -14
  1233. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -14
  1234. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceUefiDataCommand.js +2 -14
  1235. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamAddressHistoryCommand.js +2 -14
  1236. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredAccountsCommand.js +2 -14
  1237. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredPublicAddressesCommand.js +2 -14
  1238. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredResourceCidrsCommand.js +2 -14
  1239. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyAllocationRulesCommand.js +2 -14
  1240. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyOrganizationTargetsCommand.js +2 -14
  1241. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolAllocationsCommand.js +2 -14
  1242. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolCidrsCommand.js +2 -14
  1243. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverRulesCommand.js +2 -14
  1244. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionEntriesCommand.js +2 -14
  1245. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionsCommand.js +2 -14
  1246. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamResourceCidrsCommand.js +2 -14
  1247. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetLaunchTemplateDataCommand.js +2 -14
  1248. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListAssociationsCommand.js +2 -14
  1249. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListEntriesCommand.js +2 -14
  1250. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +2 -14
  1251. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.js +2 -14
  1252. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeContentCommand.js +2 -14
  1253. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetPasswordDataCommand.js +2 -14
  1254. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetReservedInstancesExchangeQuoteCommand.js +2 -14
  1255. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerAssociationsCommand.js +2 -14
  1256. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerPropagationsCommand.js +2 -14
  1257. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerRoutingDatabaseCommand.js +2 -14
  1258. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSecurityGroupsForVpcCommand.js +2 -14
  1259. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSerialConsoleAccessStatusCommand.js +2 -14
  1260. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSnapshotBlockPublicAccessStateCommand.js +2 -14
  1261. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSpotPlacementScoresCommand.js +2 -14
  1262. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSubnetCidrReservationsCommand.js +2 -14
  1263. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayAttachmentPropagationsCommand.js +2 -14
  1264. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMeteringPolicyEntriesCommand.js +2 -14
  1265. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
  1266. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableAssociationsCommand.js +2 -14
  1267. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableEntriesCommand.js +2 -14
  1268. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPrefixListReferencesCommand.js +2 -14
  1269. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTableAssociationsCommand.js +2 -14
  1270. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTablePropagationsCommand.js +2 -14
  1271. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointPolicyCommand.js +2 -14
  1272. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointTargetsCommand.js +2 -14
  1273. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessGroupPolicyCommand.js +2 -14
  1274. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.js +2 -14
  1275. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +2 -14
  1276. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceTypesCommand.js +2 -14
  1277. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +2 -14
  1278. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportClientVpnClientCertificateRevocationListCommand.js +2 -14
  1279. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportImageCommand.js +2 -14
  1280. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportInstanceCommand.js +2 -14
  1281. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportKeyPairCommand.js +2 -14
  1282. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportSnapshotCommand.js +2 -14
  1283. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportVolumeCommand.js +2 -14
  1284. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListImagesInRecycleBinCommand.js +2 -14
  1285. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListSnapshotsInRecycleBinCommand.js +2 -14
  1286. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListVolumesInRecycleBinCommand.js +2 -14
  1287. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/LockSnapshotCommand.js +2 -14
  1288. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAccountVpcEncryptionControlCommand.js +4 -0
  1289. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAddressAttributeCommand.js +2 -14
  1290. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAvailabilityZoneGroupCommand.js +2 -14
  1291. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationCommand.js +2 -14
  1292. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationFleetCommand.js +2 -14
  1293. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyClientVpnEndpointCommand.js +2 -14
  1294. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyDefaultCreditSpecificationCommand.js +2 -14
  1295. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyEbsDefaultKmsKeyIdCommand.js +2 -14
  1296. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFleetCommand.js +2 -14
  1297. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFpgaImageAttributeCommand.js +2 -14
  1298. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyHostsCommand.js +2 -14
  1299. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdFormatCommand.js +2 -14
  1300. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdentityIdFormatCommand.js +2 -14
  1301. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyImageAttributeCommand.js +2 -14
  1302. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceAttributeCommand.js +2 -14
  1303. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCapacityReservationAttributesCommand.js +2 -14
  1304. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +2 -14
  1305. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCpuOptionsCommand.js +2 -14
  1306. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCreditSpecificationCommand.js +2 -14
  1307. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventStartTimeCommand.js +2 -14
  1308. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventWindowCommand.js +2 -14
  1309. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMaintenanceOptionsCommand.js +2 -14
  1310. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataDefaultsCommand.js +2 -14
  1311. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataOptionsCommand.js +2 -14
  1312. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceNetworkPerformanceOptionsCommand.js +2 -14
  1313. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstancePlacementCommand.js +2 -14
  1314. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamCommand.js +2 -14
  1315. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPolicyAllocationRulesCommand.js +2 -14
  1316. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolAllocationCommand.js +2 -14
  1317. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolCommand.js +2 -14
  1318. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverCommand.js +2 -14
  1319. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverTargetCommand.js +2 -14
  1320. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceCidrCommand.js +2 -14
  1321. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceDiscoveryCommand.js +2 -14
  1322. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamScopeCommand.js +2 -14
  1323. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLaunchTemplateCommand.js +2 -14
  1324. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLocalGatewayRouteCommand.js +2 -14
  1325. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedPrefixListCommand.js +2 -14
  1326. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +2 -14
  1327. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyNetworkInterfaceAttributeCommand.js +2 -14
  1328. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPrivateDnsNameOptionsCommand.js +2 -14
  1329. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPublicIpDnsNameOptionsCommand.js +2 -14
  1330. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyReservedInstancesCommand.js +2 -14
  1331. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyRouteServerCommand.js +2 -14
  1332. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySecurityGroupRulesCommand.js +2 -14
  1333. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotAttributeCommand.js +2 -14
  1334. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotTierCommand.js +2 -14
  1335. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySpotFleetRequestCommand.js +2 -14
  1336. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySubnetAttributeCommand.js +2 -14
  1337. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.js +2 -14
  1338. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterRuleCommand.js +2 -14
  1339. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorSessionCommand.js +2 -14
  1340. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayCommand.js +2 -14
  1341. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayMeteringPolicyCommand.js +2 -14
  1342. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayPrefixListReferenceCommand.js +2 -14
  1343. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayVpcAttachmentCommand.js +2 -14
  1344. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointCommand.js +2 -14
  1345. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointPolicyCommand.js +2 -14
  1346. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupCommand.js +2 -14
  1347. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupPolicyCommand.js +2 -14
  1348. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceCommand.js +2 -14
  1349. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.js +2 -14
  1350. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessTrustProviderCommand.js +2 -14
  1351. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeAttributeCommand.js +2 -14
  1352. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeCommand.js +2 -14
  1353. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcAttributeCommand.js +2 -14
  1354. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessExclusionCommand.js +2 -14
  1355. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessOptionsCommand.js +2 -14
  1356. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEncryptionControlCommand.js +2 -14
  1357. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointCommand.js +2 -14
  1358. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointConnectionNotificationCommand.js +2 -14
  1359. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointPayerResponsibilityCommand.js +4 -0
  1360. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServiceConfigurationCommand.js +2 -14
  1361. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +2 -14
  1362. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePermissionsCommand.js +2 -14
  1363. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcPeeringConnectionOptionsCommand.js +2 -14
  1364. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcTenancyCommand.js +2 -14
  1365. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionCommand.js +2 -14
  1366. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionOptionsCommand.js +2 -14
  1367. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelCertificateCommand.js +2 -14
  1368. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelOptionsCommand.js +2 -14
  1369. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MonitorInstancesCommand.js +2 -14
  1370. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveAddressToVpcCommand.js +2 -14
  1371. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveByoipCidrToIpamCommand.js +2 -14
  1372. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveCapacityReservationInstancesCommand.js +2 -14
  1373. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionByoipCidrCommand.js +2 -14
  1374. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamByoasnCommand.js +2 -14
  1375. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamPoolCidrCommand.js +2 -14
  1376. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionPublicIpv4PoolCidrCommand.js +2 -14
  1377. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockCommand.js +2 -14
  1378. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockExtensionCommand.js +2 -14
  1379. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseHostReservationCommand.js +2 -14
  1380. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseReservedInstancesOfferingCommand.js +2 -14
  1381. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseScheduledInstancesCommand.js +2 -14
  1382. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RebootInstancesCommand.js +2 -14
  1383. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterImageCommand.js +2 -14
  1384. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterInstanceEventNotificationAttributesCommand.js +2 -14
  1385. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
  1386. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
  1387. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectCapacityReservationBillingOwnershipCommand.js +2 -14
  1388. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +2 -14
  1389. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
  1390. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayPeeringAttachmentCommand.js +2 -14
  1391. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayVpcAttachmentCommand.js +2 -14
  1392. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcEndpointConnectionsCommand.js +2 -14
  1393. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcPeeringConnectionCommand.js +2 -14
  1394. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseAddressCommand.js +2 -14
  1395. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseHostsCommand.js +2 -14
  1396. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseIpamPoolAllocationCommand.js +2 -14
  1397. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceIamInstanceProfileAssociationCommand.js +2 -14
  1398. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.js +2 -14
  1399. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclAssociationCommand.js +2 -14
  1400. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclEntryCommand.js +2 -14
  1401. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteCommand.js +2 -14
  1402. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteTableAssociationCommand.js +2 -14
  1403. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -14
  1404. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceVpnTunnelCommand.js +2 -14
  1405. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReportInstanceStatusCommand.js +2 -14
  1406. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotFleetCommand.js +2 -14
  1407. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotInstancesCommand.js +2 -14
  1408. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetAddressAttributeCommand.js +2 -14
  1409. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetEbsDefaultKmsKeyIdCommand.js +2 -14
  1410. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetFpgaImageAttributeCommand.js +2 -14
  1411. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetImageAttributeCommand.js +2 -14
  1412. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetInstanceAttributeCommand.js +2 -14
  1413. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +2 -14
  1414. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetSnapshotAttributeCommand.js +2 -14
  1415. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreAddressToClassicCommand.js +2 -14
  1416. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreImageFromRecycleBinCommand.js +2 -14
  1417. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +2 -14
  1418. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +2 -14
  1419. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotTierCommand.js +2 -14
  1420. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreVolumeFromRecycleBinCommand.js +2 -14
  1421. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeClientVpnIngressCommand.js +2 -14
  1422. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupEgressCommand.js +2 -14
  1423. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupIngressCommand.js +2 -14
  1424. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunInstancesCommand.js +2 -14
  1425. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunScheduledInstancesCommand.js +2 -14
  1426. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchLocalGatewayRoutesCommand.js +2 -14
  1427. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayMulticastGroupsCommand.js +2 -14
  1428. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayRoutesCommand.js +2 -14
  1429. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SendDiagnosticInterruptCommand.js +2 -14
  1430. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartDeclarativePoliciesReportCommand.js +2 -14
  1431. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartInstancesCommand.js +2 -14
  1432. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
  1433. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAnalysisCommand.js +2 -14
  1434. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.js +2 -14
  1435. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StopInstancesCommand.js +2 -14
  1436. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateClientVpnConnectionsCommand.js +2 -14
  1437. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateInstancesCommand.js +2 -14
  1438. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignIpv6AddressesCommand.js +2 -14
  1439. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateIpAddressesCommand.js +2 -14
  1440. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateNatGatewayAddressCommand.js +2 -14
  1441. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnlockSnapshotCommand.js +2 -14
  1442. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnmonitorInstancesCommand.js +2 -14
  1443. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +2 -14
  1444. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerOrganizationsAccessCommand.js +2 -14
  1445. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateInterruptibleCapacityReservationAllocationCommand.js +2 -14
  1446. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.js +2 -14
  1447. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.js +2 -14
  1448. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/WithdrawByoipCidrCommand.js +2 -14
  1449. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +3 -0
  1450. package/node_modules/@aws-sdk/client-ec2/dist-es/index.js +2 -0
  1451. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +236 -10
  1452. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.browser.js +0 -2
  1453. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +1 -2
  1454. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.native.js +0 -2
  1455. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +2 -0
  1456. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +240 -104
  1457. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +23 -0
  1458. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +5 -2
  1459. package/node_modules/@aws-sdk/client-ec2/dist-types/commandBuilder.d.ts +22 -0
  1460. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +3 -8
  1461. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +3 -8
  1462. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +3 -8
  1463. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
  1464. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
  1465. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
  1466. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +3 -8
  1467. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcEndpointConnectionsCommand.d.ts +3 -8
  1468. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcPeeringConnectionCommand.d.ts +3 -8
  1469. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +3 -8
  1470. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +3 -8
  1471. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +6 -8
  1472. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +3 -8
  1473. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +3 -8
  1474. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignIpv6AddressesCommand.d.ts +3 -8
  1475. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateIpAddressesCommand.d.ts +3 -8
  1476. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateNatGatewayAddressCommand.d.ts +3 -8
  1477. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateAddressCommand.d.ts +3 -8
  1478. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
  1479. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +3 -8
  1480. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateDhcpOptionsCommand.d.ts +3 -8
  1481. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
  1482. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIamInstanceProfileCommand.d.ts +3 -8
  1483. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateInstanceEventWindowCommand.d.ts +3 -8
  1484. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamByoasnCommand.d.ts +3 -8
  1485. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +3 -8
  1486. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +3 -8
  1487. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteServerCommand.d.ts +3 -8
  1488. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteTableCommand.d.ts +3 -8
  1489. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSecurityGroupVpcCommand.d.ts +3 -8
  1490. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSubnetCidrBlockCommand.d.ts +3 -8
  1491. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
  1492. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +3 -8
  1493. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +3 -8
  1494. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTrunkInterfaceCommand.d.ts +3 -8
  1495. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateVpcCidrBlockCommand.d.ts +3 -8
  1496. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachClassicLinkVpcCommand.d.ts +3 -8
  1497. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +3 -8
  1498. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachInternetGatewayCommand.d.ts +3 -8
  1499. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachNetworkInterfaceCommand.d.ts +3 -8
  1500. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +3 -8
  1501. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVolumeCommand.d.ts +3 -8
  1502. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVpnGatewayCommand.d.ts +3 -8
  1503. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeClientVpnIngressCommand.d.ts +3 -8
  1504. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +3 -8
  1505. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +3 -8
  1506. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +3 -8
  1507. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelBundleTaskCommand.d.ts +3 -8
  1508. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +19 -18
  1509. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationFleetsCommand.d.ts +3 -8
  1510. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelConversionTaskCommand.d.ts +3 -8
  1511. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelDeclarativePoliciesReportCommand.d.ts +3 -8
  1512. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelExportTaskCommand.d.ts +3 -8
  1513. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -8
  1514. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImportTaskCommand.d.ts +3 -8
  1515. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelReservedInstancesListingCommand.d.ts +3 -8
  1516. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotFleetRequestsCommand.d.ts +3 -8
  1517. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotInstanceRequestsCommand.d.ts +3 -8
  1518. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ConfirmProductInstanceCommand.d.ts +3 -8
  1519. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyFpgaImageCommand.d.ts +3 -8
  1520. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +3 -8
  1521. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +3 -8
  1522. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +3 -8
  1523. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +3 -8
  1524. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +3 -8
  1525. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +3 -8
  1526. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -8
  1527. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +5 -10
  1528. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +3 -8
  1529. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +3 -8
  1530. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +3 -8
  1531. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipCidrCommand.d.ts +3 -8
  1532. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +3 -8
  1533. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +3 -8
  1534. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +3 -8
  1535. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +3 -8
  1536. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +3 -8
  1537. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +3 -8
  1538. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +3 -8
  1539. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +21 -12
  1540. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +3 -8
  1541. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +3 -8
  1542. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +3 -8
  1543. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +3 -8
  1544. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +3 -8
  1545. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +3 -8
  1546. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +3 -8
  1547. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +3 -8
  1548. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +3 -8
  1549. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +3 -8
  1550. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
  1551. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +3 -8
  1552. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +3 -8
  1553. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +3 -8
  1554. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +3 -8
  1555. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +3 -8
  1556. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +3 -8
  1557. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +3 -8
  1558. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +4 -9
  1559. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +5 -10
  1560. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteCommand.d.ts +3 -8
  1561. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +3 -8
  1562. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
  1563. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
  1564. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
  1565. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
  1566. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +3 -8
  1567. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +3 -8
  1568. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +3 -8
  1569. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +3 -8
  1570. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclEntryCommand.d.ts +3 -8
  1571. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +3 -8
  1572. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +3 -8
  1573. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +3 -8
  1574. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +3 -8
  1575. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +10 -11
  1576. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +3 -8
  1577. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +7 -10
  1578. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReservedInstancesListingCommand.d.ts +3 -8
  1579. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +3 -8
  1580. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteCommand.d.ts +3 -8
  1581. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +3 -8
  1582. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +3 -8
  1583. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +4 -10
  1584. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +3 -8
  1585. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +3 -8
  1586. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +3 -8
  1587. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +3 -8
  1588. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +3 -8
  1589. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +3 -8
  1590. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +3 -8
  1591. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateStoreImageTaskCommand.d.ts +3 -8
  1592. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +3 -8
  1593. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +3 -8
  1594. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTagsCommand.d.ts +3 -8
  1595. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +3 -8
  1596. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +3 -8
  1597. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +3 -8
  1598. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +3 -8
  1599. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +3 -8
  1600. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +3 -8
  1601. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +3 -8
  1602. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +3 -8
  1603. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
  1604. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +3 -8
  1605. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
  1606. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +3 -8
  1607. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
  1608. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +3 -8
  1609. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
  1610. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +3 -8
  1611. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +3 -8
  1612. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +3 -8
  1613. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +3 -8
  1614. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +3 -8
  1615. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +3 -8
  1616. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +3 -8
  1617. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
  1618. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +3 -8
  1619. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +3 -8
  1620. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +9 -8
  1621. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +3 -8
  1622. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +3 -8
  1623. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +3 -8
  1624. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +3 -8
  1625. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +3 -8
  1626. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionRouteCommand.d.ts +3 -8
  1627. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +3 -8
  1628. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCapacityManagerDataExportCommand.d.ts +3 -8
  1629. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCarrierGatewayCommand.d.ts +3 -8
  1630. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +3 -8
  1631. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnRouteCommand.d.ts +3 -8
  1632. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipCidrCommand.d.ts +3 -8
  1633. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipPoolCommand.d.ts +3 -8
  1634. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCustomerGatewayCommand.d.ts +3 -8
  1635. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteDhcpOptionsCommand.d.ts +3 -8
  1636. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +3 -8
  1637. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFleetsCommand.d.ts +3 -8
  1638. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFlowLogsCommand.d.ts +3 -8
  1639. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFpgaImageCommand.d.ts +3 -8
  1640. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteImageUsageReportCommand.d.ts +3 -8
  1641. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +3 -8
  1642. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceEventWindowCommand.d.ts +3 -8
  1643. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInternetGatewayCommand.d.ts +3 -8
  1644. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamCommand.d.ts +3 -8
  1645. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
  1646. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPolicyCommand.d.ts +3 -8
  1647. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPoolCommand.d.ts +3 -8
  1648. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverCommand.d.ts +3 -8
  1649. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +3 -8
  1650. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamResourceDiscoveryCommand.d.ts +3 -8
  1651. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamScopeCommand.d.ts +3 -8
  1652. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteKeyPairCommand.d.ts +3 -8
  1653. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +3 -8
  1654. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateVersionsCommand.d.ts +3 -8
  1655. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteCommand.d.ts +3 -8
  1656. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableCommand.d.ts +3 -8
  1657. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
  1658. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
  1659. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
  1660. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
  1661. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteManagedPrefixListCommand.d.ts +3 -8
  1662. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNatGatewayCommand.d.ts +3 -8
  1663. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclCommand.d.ts +3 -8
  1664. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclEntryCommand.d.ts +3 -8
  1665. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
  1666. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +3 -8
  1667. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +3 -8
  1668. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsPathCommand.d.ts +3 -8
  1669. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfaceCommand.d.ts +3 -8
  1670. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfacePermissionCommand.d.ts +3 -8
  1671. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePlacementGroupCommand.d.ts +6 -9
  1672. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +3 -8
  1673. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +3 -8
  1674. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteCommand.d.ts +3 -8
  1675. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerCommand.d.ts +3 -8
  1676. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerEndpointCommand.d.ts +3 -8
  1677. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerPeerCommand.d.ts +3 -8
  1678. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +4 -9
  1679. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +4 -9
  1680. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondarySubnetCommand.d.ts +4 -9
  1681. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +4 -10
  1682. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +3 -8
  1683. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +3 -8
  1684. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +3 -8
  1685. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +3 -8
  1686. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +3 -8
  1687. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +3 -8
  1688. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +3 -8
  1689. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +3 -8
  1690. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorTargetCommand.d.ts +3 -8
  1691. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
  1692. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayCommand.d.ts +3 -8
  1693. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectCommand.d.ts +3 -8
  1694. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +3 -8
  1695. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +3 -8
  1696. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
  1697. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +3 -8
  1698. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
  1699. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +3 -8
  1700. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
  1701. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +3 -8
  1702. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
  1703. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableCommand.d.ts +3 -8
  1704. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +3 -8
  1705. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +3 -8
  1706. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +3 -8
  1707. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +3 -8
  1708. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +3 -8
  1709. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVolumeCommand.d.ts +3 -8
  1710. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
  1711. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcCommand.d.ts +3 -8
  1712. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEncryptionControlCommand.d.ts +3 -8
  1713. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
  1714. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
  1715. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointsCommand.d.ts +3 -8
  1716. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +3 -8
  1717. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConcentratorCommand.d.ts +3 -8
  1718. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionCommand.d.ts +3 -8
  1719. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionRouteCommand.d.ts +3 -8
  1720. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnGatewayCommand.d.ts +3 -8
  1721. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -8
  1722. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamByoasnCommand.d.ts +3 -8
  1723. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamPoolCidrCommand.d.ts +3 -8
  1724. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +3 -8
  1725. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterImageCommand.d.ts +3 -8
  1726. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
  1727. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
  1728. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
  1729. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountAttributesCommand.d.ts +3 -8
  1730. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +87 -0
  1731. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressTransfersCommand.d.ts +3 -8
  1732. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +3 -8
  1733. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesCommand.d.ts +3 -8
  1734. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +3 -8
  1735. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +3 -8
  1736. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +3 -8
  1737. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeBundleTasksCommand.d.ts +3 -8
  1738. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeByoipCidrsCommand.d.ts +3 -8
  1739. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +3 -8
  1740. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +3 -8
  1741. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockOfferingsCommand.d.ts +3 -8
  1742. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockStatusCommand.d.ts +3 -8
  1743. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlocksCommand.d.ts +3 -8
  1744. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityManagerDataExportsCommand.d.ts +3 -8
  1745. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +3 -8
  1746. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +3 -8
  1747. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +4 -9
  1748. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +3 -8
  1749. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +3 -8
  1750. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +3 -8
  1751. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClassicLinkInstancesCommand.d.ts +3 -8
  1752. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +3 -8
  1753. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnConnectionsCommand.d.ts +3 -8
  1754. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +3 -8
  1755. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +3 -8
  1756. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +3 -8
  1757. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCoipPoolsCommand.d.ts +3 -8
  1758. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeConversionTasksCommand.d.ts +3 -8
  1759. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCustomerGatewaysCommand.d.ts +3 -8
  1760. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +3 -8
  1761. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDhcpOptionsCommand.d.ts +3 -8
  1762. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +3 -8
  1763. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeElasticGpusCommand.d.ts +3 -8
  1764. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportImageTasksCommand.d.ts +3 -8
  1765. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -8
  1766. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +3 -8
  1767. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastSnapshotRestoresCommand.d.ts +3 -8
  1768. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetHistoryCommand.d.ts +3 -8
  1769. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetInstancesCommand.d.ts +3 -8
  1770. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +7 -12
  1771. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +3 -8
  1772. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImageAttributeCommand.d.ts +3 -8
  1773. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImagesCommand.d.ts +3 -8
  1774. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationOfferingsCommand.d.ts +3 -8
  1775. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationsCommand.d.ts +3 -8
  1776. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostsCommand.d.ts +7 -9
  1777. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +3 -8
  1778. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdFormatCommand.d.ts +3 -8
  1779. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdentityIdFormatCommand.d.ts +3 -8
  1780. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageAttributeCommand.d.ts +3 -8
  1781. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageReferencesCommand.d.ts +3 -8
  1782. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportEntriesCommand.d.ts +3 -8
  1783. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportsCommand.d.ts +5 -9
  1784. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +4 -8
  1785. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportImageTasksCommand.d.ts +4 -9
  1786. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +3 -8
  1787. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +3 -8
  1788. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +3 -8
  1789. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +3 -8
  1790. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +3 -8
  1791. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +3 -8
  1792. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -9
  1793. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +3 -8
  1794. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaStatesCommand.d.ts +3 -8
  1795. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +3 -8
  1796. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +3 -8
  1797. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +4 -9
  1798. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -10
  1799. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +4 -9
  1800. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInternetGatewaysCommand.d.ts +3 -8
  1801. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamByoasnCommand.d.ts +3 -8
  1802. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +3 -8
  1803. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoliciesCommand.d.ts +3 -8
  1804. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolAllocationsCommand.d.ts +3 -8
  1805. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolsCommand.d.ts +3 -8
  1806. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +3 -8
  1807. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolversCommand.d.ts +3 -8
  1808. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +3 -8
  1809. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +3 -8
  1810. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamScopesCommand.d.ts +3 -8
  1811. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamsCommand.d.ts +3 -8
  1812. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpv6PoolsCommand.d.ts +3 -8
  1813. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeKeyPairsCommand.d.ts +3 -8
  1814. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +4 -9
  1815. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +3 -8
  1816. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +3 -8
  1817. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +3 -8
  1818. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +3 -8
  1819. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +3 -8
  1820. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +3 -8
  1821. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +3 -8
  1822. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLockedSnapshotsCommand.d.ts +3 -8
  1823. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacHostsCommand.d.ts +3 -8
  1824. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacModificationTasksCommand.d.ts +3 -8
  1825. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeManagedPrefixListsCommand.d.ts +3 -8
  1826. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMovingAddressesCommand.d.ts +3 -8
  1827. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNatGatewaysCommand.d.ts +3 -8
  1828. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkAclsCommand.d.ts +3 -8
  1829. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +3 -8
  1830. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +3 -8
  1831. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +3 -8
  1832. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsPathsCommand.d.ts +3 -8
  1833. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +3 -8
  1834. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +3 -8
  1835. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +3 -8
  1836. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeOutpostLagsCommand.d.ts +3 -8
  1837. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +5 -9
  1838. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrefixListsCommand.d.ts +3 -8
  1839. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrincipalIdFormatCommand.d.ts +3 -8
  1840. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +3 -8
  1841. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRegionsCommand.d.ts +3 -8
  1842. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +3 -8
  1843. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +4 -9
  1844. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +3 -8
  1845. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +4 -9
  1846. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +5 -10
  1847. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerEndpointsCommand.d.ts +3 -8
  1848. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerPeersCommand.d.ts +3 -8
  1849. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServersCommand.d.ts +3 -8
  1850. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteTablesCommand.d.ts +3 -8
  1851. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +3 -8
  1852. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +3 -8
  1853. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryInterfacesCommand.d.ts +3 -8
  1854. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryNetworksCommand.d.ts +3 -8
  1855. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondarySubnetsCommand.d.ts +3 -8
  1856. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupReferencesCommand.d.ts +3 -8
  1857. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupRulesCommand.d.ts +3 -8
  1858. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +3 -8
  1859. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupsCommand.d.ts +3 -8
  1860. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +3 -8
  1861. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotAttributeCommand.d.ts +3 -8
  1862. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotTierStatusCommand.d.ts +3 -8
  1863. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotsCommand.d.ts +3 -8
  1864. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +3 -8
  1865. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetInstancesCommand.d.ts +3 -8
  1866. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +3 -8
  1867. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +7 -11
  1868. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +5 -11
  1869. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +5 -10
  1870. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +3 -8
  1871. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +3 -8
  1872. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +3 -8
  1873. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +3 -8
  1874. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +3 -8
  1875. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +3 -8
  1876. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +3 -8
  1877. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +3 -8
  1878. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +3 -8
  1879. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +3 -8
  1880. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectsCommand.d.ts +3 -8
  1881. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +3 -8
  1882. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +3 -8
  1883. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +3 -8
  1884. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +3 -8
  1885. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +3 -8
  1886. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +3 -8
  1887. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +3 -8
  1888. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +3 -8
  1889. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +3 -8
  1890. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +3 -8
  1891. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +3 -8
  1892. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +3 -8
  1893. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +3 -8
  1894. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +3 -8
  1895. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeAttributeCommand.d.ts +3 -8
  1896. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +3 -8
  1897. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +3 -8
  1898. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +9 -8
  1899. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcAttributeCommand.d.ts +3 -8
  1900. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +3 -8
  1901. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
  1902. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkCommand.d.ts +3 -8
  1903. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +3 -8
  1904. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEncryptionControlsCommand.d.ts +3 -8
  1905. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointAssociationsCommand.d.ts +3 -8
  1906. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
  1907. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +9 -8
  1908. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
  1909. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +3 -8
  1910. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +3 -8
  1911. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +9 -8
  1912. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +3 -8
  1913. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcsCommand.d.ts +3 -8
  1914. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConcentratorsCommand.d.ts +3 -8
  1915. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConnectionsCommand.d.ts +3 -8
  1916. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnGatewaysCommand.d.ts +3 -8
  1917. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachClassicLinkVpcCommand.d.ts +3 -8
  1918. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +3 -8
  1919. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachInternetGatewayCommand.d.ts +3 -8
  1920. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachNetworkInterfaceCommand.d.ts +3 -8
  1921. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +3 -8
  1922. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVolumeCommand.d.ts +3 -8
  1923. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVpnGatewayCommand.d.ts +3 -8
  1924. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAddressTransferCommand.d.ts +3 -8
  1925. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAllowedImagesSettingsCommand.d.ts +3 -8
  1926. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
  1927. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableCapacityManagerCommand.d.ts +3 -8
  1928. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableEbsEncryptionByDefaultCommand.d.ts +3 -8
  1929. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastLaunchCommand.d.ts +3 -8
  1930. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastSnapshotRestoresCommand.d.ts +3 -8
  1931. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +3 -8
  1932. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageCommand.d.ts +3 -8
  1933. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeprecationCommand.d.ts +3 -8
  1934. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeregistrationProtectionCommand.d.ts +3 -8
  1935. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
  1936. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +3 -8
  1937. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamPolicyCommand.d.ts +3 -8
  1938. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableRouteServerPropagationCommand.d.ts +3 -8
  1939. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSerialConsoleAccessCommand.d.ts +3 -8
  1940. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +3 -8
  1941. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
  1942. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVgwRoutePropagationCommand.d.ts +3 -8
  1943. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkCommand.d.ts +3 -8
  1944. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
  1945. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateAddressCommand.d.ts +3 -8
  1946. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
  1947. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +3 -8
  1948. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
  1949. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIamInstanceProfileCommand.d.ts +3 -8
  1950. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateInstanceEventWindowCommand.d.ts +3 -8
  1951. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamByoasnCommand.d.ts +3 -8
  1952. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +3 -8
  1953. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateNatGatewayAddressCommand.d.ts +3 -8
  1954. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteServerCommand.d.ts +3 -8
  1955. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteTableCommand.d.ts +3 -8
  1956. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSecurityGroupVpcCommand.d.ts +3 -8
  1957. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSubnetCidrBlockCommand.d.ts +3 -8
  1958. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
  1959. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +3 -8
  1960. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +3 -8
  1961. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTrunkInterfaceCommand.d.ts +3 -8
  1962. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateVpcCidrBlockCommand.d.ts +3 -8
  1963. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAddressTransferCommand.d.ts +3 -8
  1964. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAllowedImagesSettingsCommand.d.ts +3 -8
  1965. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
  1966. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableCapacityManagerCommand.d.ts +3 -8
  1967. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableEbsEncryptionByDefaultCommand.d.ts +3 -8
  1968. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastLaunchCommand.d.ts +3 -8
  1969. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastSnapshotRestoresCommand.d.ts +3 -8
  1970. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +3 -8
  1971. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageCommand.d.ts +3 -8
  1972. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeprecationCommand.d.ts +3 -8
  1973. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +3 -8
  1974. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
  1975. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +3 -8
  1976. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamPolicyCommand.d.ts +3 -8
  1977. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +3 -8
  1978. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableRouteServerPropagationCommand.d.ts +3 -8
  1979. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSerialConsoleAccessCommand.d.ts +3 -8
  1980. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +3 -8
  1981. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
  1982. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVgwRoutePropagationCommand.d.ts +3 -8
  1983. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVolumeIOCommand.d.ts +3 -8
  1984. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkCommand.d.ts +3 -8
  1985. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
  1986. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
  1987. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientConfigurationCommand.d.ts +3 -8
  1988. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +3 -8
  1989. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportTransitGatewayRoutesCommand.d.ts +3 -8
  1990. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +3 -8
  1991. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetActiveVpnTunnelStatusCommand.d.ts +3 -8
  1992. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts +3 -8
  1993. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +5 -9
  1994. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +4 -9
  1995. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAwsNetworkPerformanceDataCommand.d.ts +4 -10
  1996. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +3 -8
  1997. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +3 -8
  1998. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +3 -8
  1999. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
  2000. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +3 -8
  2001. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +3 -8
  2002. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +3 -8
  2003. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +3 -8
  2004. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +3 -8
  2005. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +3 -8
  2006. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
  2007. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +3 -8
  2008. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEnabledIpamPolicyCommand.d.ts +3 -8
  2009. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +3 -8
  2010. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +3 -8
  2011. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetHostReservationPurchasePreviewCommand.d.ts +3 -8
  2012. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageAncestryCommand.d.ts +3 -8
  2013. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +3 -8
  2014. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceMetadataDefaultsCommand.d.ts +3 -8
  2015. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +3 -8
  2016. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +3 -8
  2017. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceUefiDataCommand.d.ts +3 -8
  2018. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +3 -8
  2019. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +3 -8
  2020. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +3 -8
  2021. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +3 -8
  2022. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyAllocationRulesCommand.d.ts +3 -8
  2023. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +3 -8
  2024. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +3 -8
  2025. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +3 -8
  2026. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverRulesCommand.d.ts +3 -8
  2027. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +3 -8
  2028. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +3 -8
  2029. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +3 -8
  2030. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +4 -9
  2031. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListAssociationsCommand.d.ts +3 -8
  2032. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListEntriesCommand.d.ts +3 -8
  2033. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +3 -8
  2034. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +3 -8
  2035. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +3 -8
  2036. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetPasswordDataCommand.d.ts +3 -8
  2037. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +3 -8
  2038. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerAssociationsCommand.d.ts +3 -8
  2039. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerPropagationsCommand.d.ts +3 -8
  2040. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerRoutingDatabaseCommand.d.ts +3 -8
  2041. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSecurityGroupsForVpcCommand.d.ts +3 -8
  2042. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSerialConsoleAccessStatusCommand.d.ts +3 -8
  2043. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +3 -8
  2044. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +3 -8
  2045. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +3 -8
  2046. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +3 -8
  2047. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +3 -8
  2048. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
  2049. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +3 -8
  2050. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +3 -8
  2051. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +3 -8
  2052. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +3 -8
  2053. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +3 -8
  2054. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
  2055. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +3 -8
  2056. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +3 -8
  2057. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +3 -8
  2058. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +3 -8
  2059. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceTypesCommand.d.ts +3 -8
  2060. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +3 -8
  2061. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
  2062. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +3 -8
  2063. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +4 -9
  2064. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +3 -8
  2065. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +3 -8
  2066. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportVolumeCommand.d.ts +3 -8
  2067. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +3 -8
  2068. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListSnapshotsInRecycleBinCommand.d.ts +3 -8
  2069. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +3 -8
  2070. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/LockSnapshotCommand.d.ts +3 -8
  2071. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +96 -0
  2072. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAddressAttributeCommand.d.ts +3 -8
  2073. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAvailabilityZoneGroupCommand.d.ts +3 -8
  2074. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationCommand.d.ts +3 -8
  2075. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationFleetCommand.d.ts +3 -8
  2076. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +3 -8
  2077. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyDefaultCreditSpecificationCommand.d.ts +3 -8
  2078. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +3 -8
  2079. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +15 -9
  2080. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFpgaImageAttributeCommand.d.ts +3 -8
  2081. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyHostsCommand.d.ts +3 -8
  2082. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdFormatCommand.d.ts +3 -8
  2083. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdentityIdFormatCommand.d.ts +3 -8
  2084. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyImageAttributeCommand.d.ts +3 -8
  2085. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +3 -8
  2086. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +3 -8
  2087. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +3 -8
  2088. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +3 -8
  2089. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCreditSpecificationCommand.d.ts +3 -8
  2090. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventStartTimeCommand.d.ts +3 -8
  2091. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventWindowCommand.d.ts +3 -8
  2092. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +3 -8
  2093. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +3 -8
  2094. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataOptionsCommand.d.ts +3 -8
  2095. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +3 -8
  2096. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstancePlacementCommand.d.ts +3 -8
  2097. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamCommand.d.ts +3 -8
  2098. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +3 -8
  2099. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +4 -9
  2100. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolCommand.d.ts +3 -8
  2101. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverCommand.d.ts +4 -9
  2102. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +4 -9
  2103. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceCidrCommand.d.ts +4 -9
  2104. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceDiscoveryCommand.d.ts +4 -9
  2105. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +3 -8
  2106. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +3 -8
  2107. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +3 -8
  2108. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +3 -8
  2109. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +3 -8
  2110. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +3 -8
  2111. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +3 -8
  2112. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +3 -8
  2113. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +4 -9
  2114. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +3 -8
  2115. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +3 -8
  2116. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +3 -8
  2117. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +3 -8
  2118. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +4 -9
  2119. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +3 -8
  2120. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +3 -8
  2121. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +3 -8
  2122. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +3 -8
  2123. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayCommand.d.ts +3 -8
  2124. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +3 -8
  2125. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
  2126. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +3 -8
  2127. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +3 -8
  2128. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
  2129. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +3 -8
  2130. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +3 -8
  2131. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +3 -8
  2132. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +3 -8
  2133. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +3 -8
  2134. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeAttributeCommand.d.ts +3 -8
  2135. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +8 -8
  2136. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcAttributeCommand.d.ts +3 -8
  2137. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
  2138. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
  2139. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEncryptionControlCommand.d.ts +3 -8
  2140. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointCommand.d.ts +3 -8
  2141. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +3 -8
  2142. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +81 -0
  2143. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +3 -8
  2144. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +3 -8
  2145. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +3 -8
  2146. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +3 -8
  2147. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcTenancyCommand.d.ts +3 -8
  2148. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionCommand.d.ts +3 -8
  2149. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +3 -8
  2150. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelCertificateCommand.d.ts +3 -8
  2151. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +3 -8
  2152. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MonitorInstancesCommand.d.ts +3 -8
  2153. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveAddressToVpcCommand.d.ts +3 -8
  2154. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveByoipCidrToIpamCommand.d.ts +3 -8
  2155. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +3 -8
  2156. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +3 -8
  2157. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamByoasnCommand.d.ts +3 -8
  2158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +3 -8
  2159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +3 -8
  2160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -8
  2161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockExtensionCommand.d.ts +3 -8
  2162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +3 -8
  2163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +3 -8
  2164. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +3 -8
  2165. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RebootInstancesCommand.d.ts +3 -8
  2166. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +3 -8
  2167. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
  2168. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
  2169. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
  2170. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +3 -8
  2171. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
  2172. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
  2173. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
  2174. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +3 -8
  2175. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcEndpointConnectionsCommand.d.ts +3 -8
  2176. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcPeeringConnectionCommand.d.ts +3 -8
  2177. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseAddressCommand.d.ts +3 -8
  2178. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseHostsCommand.d.ts +3 -8
  2179. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseIpamPoolAllocationCommand.d.ts +3 -8
  2180. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +3 -8
  2181. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +3 -8
  2182. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclAssociationCommand.d.ts +3 -8
  2183. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclEntryCommand.d.ts +3 -8
  2184. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteCommand.d.ts +3 -8
  2185. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteTableAssociationCommand.d.ts +3 -8
  2186. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +3 -8
  2187. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +3 -8
  2188. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReportInstanceStatusCommand.d.ts +3 -8
  2189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +5 -10
  2190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +5 -10
  2191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetAddressAttributeCommand.d.ts +3 -8
  2192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
  2193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +3 -8
  2194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetImageAttributeCommand.d.ts +3 -8
  2195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetInstanceAttributeCommand.d.ts +3 -8
  2196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +3 -8
  2197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +3 -8
  2198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreAddressToClassicCommand.d.ts +3 -8
  2199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +3 -8
  2200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +3 -8
  2201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +3 -8
  2202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotTierCommand.d.ts +3 -8
  2203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreVolumeFromRecycleBinCommand.d.ts +3 -8
  2204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +3 -8
  2205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +3 -8
  2206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +3 -8
  2207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +5 -10
  2208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunScheduledInstancesCommand.d.ts +3 -8
  2209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchLocalGatewayRoutesCommand.d.ts +3 -8
  2210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +3 -8
  2211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +3 -8
  2212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SendDiagnosticInterruptCommand.d.ts +3 -8
  2213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +3 -8
  2214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartInstancesCommand.d.ts +3 -8
  2215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
  2216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +3 -8
  2217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +3 -8
  2218. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StopInstancesCommand.d.ts +3 -8
  2219. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateClientVpnConnectionsCommand.d.ts +3 -8
  2220. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateInstancesCommand.d.ts +3 -8
  2221. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignIpv6AddressesCommand.d.ts +3 -8
  2222. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateIpAddressesCommand.d.ts +3 -8
  2223. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +3 -8
  2224. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnlockSnapshotCommand.d.ts +3 -8
  2225. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnmonitorInstancesCommand.d.ts +3 -8
  2226. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
  2227. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +4 -9
  2228. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +4 -9
  2229. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +4 -9
  2230. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +4 -9
  2231. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/WithdrawByoipCidrCommand.d.ts +4 -9
  2232. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +3 -0
  2233. package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +2 -0
  2234. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +308 -26
  2235. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +96 -201
  2236. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +348 -117
  2237. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +133 -114
  2238. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +201 -333
  2239. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +335 -851
  2240. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +866 -243
  2241. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +311 -273
  2242. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +321 -265
  2243. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +260 -0
  2244. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +2 -2
  2245. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +2 -2
  2246. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +2 -2
  2247. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.shared.d.ts +1 -0
  2248. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +16 -0
  2249. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +71 -0
  2250. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +18 -0
  2251. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commandBuilder.d.ts +52 -0
  2252. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptAddressTransferCommand.d.ts +7 -16
  2253. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +7 -16
  2254. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +7 -16
  2255. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
  2256. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
  2257. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
  2258. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +7 -16
  2259. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcEndpointConnectionsCommand.d.ts +7 -16
  2260. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcPeeringConnectionCommand.d.ts +7 -16
  2261. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AdvertiseByoipCidrCommand.d.ts +7 -16
  2262. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateAddressCommand.d.ts +7 -16
  2263. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateHostsCommand.d.ts +7 -16
  2264. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateIpamPoolCidrCommand.d.ts +7 -16
  2265. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +7 -16
  2266. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignIpv6AddressesCommand.d.ts +7 -16
  2267. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateIpAddressesCommand.d.ts +7 -16
  2268. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateNatGatewayAddressCommand.d.ts +7 -16
  2269. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateAddressCommand.d.ts +7 -16
  2270. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
  2271. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateClientVpnTargetNetworkCommand.d.ts +7 -16
  2272. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateDhcpOptionsCommand.d.ts +7 -16
  2273. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
  2274. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIamInstanceProfileCommand.d.ts +7 -16
  2275. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateInstanceEventWindowCommand.d.ts +7 -16
  2276. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamByoasnCommand.d.ts +7 -16
  2277. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamResourceDiscoveryCommand.d.ts +7 -16
  2278. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateNatGatewayAddressCommand.d.ts +7 -16
  2279. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteServerCommand.d.ts +7 -16
  2280. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteTableCommand.d.ts +7 -16
  2281. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSecurityGroupVpcCommand.d.ts +7 -16
  2282. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSubnetCidrBlockCommand.d.ts +7 -16
  2283. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
  2284. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +7 -16
  2285. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayRouteTableCommand.d.ts +7 -16
  2286. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTrunkInterfaceCommand.d.ts +7 -16
  2287. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateVpcCidrBlockCommand.d.ts +7 -16
  2288. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachClassicLinkVpcCommand.d.ts +7 -16
  2289. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +7 -16
  2290. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachInternetGatewayCommand.d.ts +7 -16
  2291. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachNetworkInterfaceCommand.d.ts +7 -16
  2292. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +7 -16
  2293. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVolumeCommand.d.ts +7 -16
  2294. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVpnGatewayCommand.d.ts +7 -16
  2295. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeClientVpnIngressCommand.d.ts +7 -16
  2296. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupEgressCommand.d.ts +7 -16
  2297. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupIngressCommand.d.ts +7 -16
  2298. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/BundleInstanceCommand.d.ts +7 -16
  2299. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelBundleTaskCommand.d.ts +7 -16
  2300. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationCommand.d.ts +7 -16
  2301. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationFleetsCommand.d.ts +7 -16
  2302. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelConversionTaskCommand.d.ts +7 -16
  2303. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelDeclarativePoliciesReportCommand.d.ts +7 -16
  2304. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +7 -16
  2305. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImageLaunchPermissionCommand.d.ts +7 -16
  2306. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +7 -16
  2307. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelReservedInstancesListingCommand.d.ts +7 -16
  2308. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotFleetRequestsCommand.d.ts +7 -16
  2309. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotInstanceRequestsCommand.d.ts +7 -16
  2310. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ConfirmProductInstanceCommand.d.ts +7 -16
  2311. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyFpgaImageCommand.d.ts +7 -16
  2312. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyImageCommand.d.ts +7 -16
  2313. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopySnapshotCommand.d.ts +7 -16
  2314. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyVolumesCommand.d.ts +7 -16
  2315. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityManagerDataExportCommand.d.ts +7 -16
  2316. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationBySplittingCommand.d.ts +7 -16
  2317. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +7 -16
  2318. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCommand.d.ts +7 -16
  2319. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationFleetCommand.d.ts +7 -16
  2320. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +7 -16
  2321. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnEndpointCommand.d.ts +7 -16
  2322. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnRouteCommand.d.ts +7 -16
  2323. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipCidrCommand.d.ts +7 -16
  2324. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipPoolCommand.d.ts +7 -16
  2325. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCustomerGatewayCommand.d.ts +7 -16
  2326. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +7 -16
  2327. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +7 -16
  2328. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +7 -16
  2329. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +7 -16
  2330. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +7 -16
  2331. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +7 -16
  2332. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFlowLogsCommand.d.ts +7 -16
  2333. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFpgaImageCommand.d.ts +7 -16
  2334. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageCommand.d.ts +7 -16
  2335. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageUsageReportCommand.d.ts +7 -16
  2336. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceConnectEndpointCommand.d.ts +7 -16
  2337. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceEventWindowCommand.d.ts +7 -16
  2338. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceExportTaskCommand.d.ts +7 -16
  2339. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInternetGatewayCommand.d.ts +7 -16
  2340. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +7 -16
  2341. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamCommand.d.ts +7 -16
  2342. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
  2343. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPolicyCommand.d.ts +7 -16
  2344. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPoolCommand.d.ts +7 -16
  2345. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverCommand.d.ts +7 -16
  2346. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +7 -16
  2347. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamResourceDiscoveryCommand.d.ts +7 -16
  2348. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamScopeCommand.d.ts +7 -16
  2349. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateKeyPairCommand.d.ts +7 -16
  2350. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateCommand.d.ts +7 -16
  2351. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateVersionCommand.d.ts +7 -16
  2352. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteCommand.d.ts +7 -16
  2353. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableCommand.d.ts +7 -16
  2354. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
  2355. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
  2356. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
  2357. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
  2358. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +7 -16
  2359. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateManagedPrefixListCommand.d.ts +7 -16
  2360. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNatGatewayCommand.d.ts +7 -16
  2361. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclCommand.d.ts +7 -16
  2362. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclEntryCommand.d.ts +7 -16
  2363. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +7 -16
  2364. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsPathCommand.d.ts +7 -16
  2365. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfaceCommand.d.ts +7 -16
  2366. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +7 -16
  2367. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +7 -16
  2368. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePublicIpv4PoolCommand.d.ts +7 -16
  2369. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReplaceRootVolumeTaskCommand.d.ts +7 -16
  2370. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReservedInstancesListingCommand.d.ts +7 -16
  2371. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRestoreImageTaskCommand.d.ts +7 -16
  2372. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +7 -16
  2373. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerCommand.d.ts +7 -16
  2374. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerEndpointCommand.d.ts +7 -16
  2375. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +10 -17
  2376. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +7 -16
  2377. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +7 -16
  2378. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +7 -16
  2379. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +7 -16
  2380. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +7 -16
  2381. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotsCommand.d.ts +7 -16
  2382. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +7 -16
  2383. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateStoreImageTaskCommand.d.ts +7 -16
  2384. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCidrReservationCommand.d.ts +7 -16
  2385. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCommand.d.ts +7 -16
  2386. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +7 -16
  2387. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +7 -16
  2388. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +7 -16
  2389. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorSessionCommand.d.ts +7 -16
  2390. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorTargetCommand.d.ts +7 -16
  2391. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayCommand.d.ts +7 -16
  2392. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectCommand.d.ts +7 -16
  2393. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +7 -16
  2394. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +7 -16
  2395. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
  2396. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +7 -16
  2397. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
  2398. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPolicyTableCommand.d.ts +7 -16
  2399. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
  2400. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteCommand.d.ts +7 -16
  2401. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
  2402. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableCommand.d.ts +7 -16
  2403. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +7 -16
  2404. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +7 -16
  2405. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +7 -16
  2406. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessInstanceCommand.d.ts +7 -16
  2407. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +7 -16
  2408. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +7 -16
  2409. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
  2410. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcCommand.d.ts +7 -16
  2411. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEncryptionControlCommand.d.ts +7 -16
  2412. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +7 -16
  2413. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +7 -16
  2414. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +7 -16
  2415. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +7 -16
  2416. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConcentratorCommand.d.ts +7 -16
  2417. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionCommand.d.ts +7 -16
  2418. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionRouteCommand.d.ts +7 -16
  2419. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnGatewayCommand.d.ts +7 -16
  2420. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCapacityManagerDataExportCommand.d.ts +7 -16
  2421. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCarrierGatewayCommand.d.ts +7 -16
  2422. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnEndpointCommand.d.ts +7 -16
  2423. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnRouteCommand.d.ts +7 -16
  2424. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipCidrCommand.d.ts +7 -16
  2425. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipPoolCommand.d.ts +7 -16
  2426. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCustomerGatewayCommand.d.ts +7 -16
  2427. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteDhcpOptionsCommand.d.ts +7 -16
  2428. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +7 -16
  2429. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFleetsCommand.d.ts +7 -16
  2430. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +7 -16
  2431. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +7 -16
  2432. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteImageUsageReportCommand.d.ts +7 -16
  2433. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceConnectEndpointCommand.d.ts +7 -16
  2434. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceEventWindowCommand.d.ts +7 -16
  2435. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInternetGatewayCommand.d.ts +7 -16
  2436. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamCommand.d.ts +7 -16
  2437. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
  2438. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPolicyCommand.d.ts +7 -16
  2439. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPoolCommand.d.ts +7 -16
  2440. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverCommand.d.ts +7 -16
  2441. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +7 -16
  2442. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamResourceDiscoveryCommand.d.ts +7 -16
  2443. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamScopeCommand.d.ts +7 -16
  2444. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteKeyPairCommand.d.ts +7 -16
  2445. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateCommand.d.ts +7 -16
  2446. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateVersionsCommand.d.ts +7 -16
  2447. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteCommand.d.ts +7 -16
  2448. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableCommand.d.ts +7 -16
  2449. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
  2450. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
  2451. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
  2452. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
  2453. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteManagedPrefixListCommand.d.ts +7 -16
  2454. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +7 -16
  2455. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclCommand.d.ts +7 -16
  2456. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclEntryCommand.d.ts +7 -16
  2457. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
  2458. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +7 -16
  2459. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +7 -16
  2460. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsPathCommand.d.ts +7 -16
  2461. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfaceCommand.d.ts +7 -16
  2462. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfacePermissionCommand.d.ts +7 -16
  2463. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePlacementGroupCommand.d.ts +7 -16
  2464. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +7 -16
  2465. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +7 -16
  2466. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +7 -16
  2467. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerCommand.d.ts +7 -16
  2468. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerEndpointCommand.d.ts +7 -16
  2469. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerPeerCommand.d.ts +7 -16
  2470. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +8 -17
  2471. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +8 -17
  2472. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondarySubnetCommand.d.ts +8 -17
  2473. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +10 -17
  2474. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +7 -16
  2475. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +7 -16
  2476. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +7 -16
  2477. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +7 -16
  2478. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +7 -16
  2479. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +7 -16
  2480. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +7 -16
  2481. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +7 -16
  2482. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorTargetCommand.d.ts +7 -16
  2483. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
  2484. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayCommand.d.ts +7 -16
  2485. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectCommand.d.ts +7 -16
  2486. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +7 -16
  2487. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +7 -16
  2488. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
  2489. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +7 -16
  2490. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
  2491. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +7 -16
  2492. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
  2493. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteCommand.d.ts +7 -16
  2494. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
  2495. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableCommand.d.ts +7 -16
  2496. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +7 -16
  2497. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessEndpointCommand.d.ts +7 -16
  2498. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessGroupCommand.d.ts +7 -16
  2499. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessInstanceCommand.d.ts +7 -16
  2500. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +7 -16
  2501. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +7 -16
  2502. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
  2503. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcCommand.d.ts +7 -16
  2504. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEncryptionControlCommand.d.ts +7 -16
  2505. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
  2506. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
  2507. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointsCommand.d.ts +7 -16
  2508. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +7 -16
  2509. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConcentratorCommand.d.ts +7 -16
  2510. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionCommand.d.ts +7 -16
  2511. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionRouteCommand.d.ts +7 -16
  2512. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnGatewayCommand.d.ts +7 -16
  2513. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionByoipCidrCommand.d.ts +7 -16
  2514. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamByoasnCommand.d.ts +7 -16
  2515. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamPoolCidrCommand.d.ts +7 -16
  2516. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +7 -16
  2517. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +7 -16
  2518. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
  2519. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
  2520. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
  2521. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +7 -16
  2522. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +44 -0
  2523. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressTransfersCommand.d.ts +7 -16
  2524. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +7 -16
  2525. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +7 -16
  2526. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +7 -16
  2527. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAvailabilityZonesCommand.d.ts +7 -16
  2528. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +7 -16
  2529. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeBundleTasksCommand.d.ts +7 -16
  2530. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeByoipCidrsCommand.d.ts +7 -16
  2531. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +7 -16
  2532. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +7 -16
  2533. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockOfferingsCommand.d.ts +7 -16
  2534. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockStatusCommand.d.ts +7 -16
  2535. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlocksCommand.d.ts +7 -16
  2536. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityManagerDataExportsCommand.d.ts +7 -16
  2537. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +7 -16
  2538. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +7 -16
  2539. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +7 -16
  2540. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +7 -16
  2541. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +7 -16
  2542. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +7 -16
  2543. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClassicLinkInstancesCommand.d.ts +7 -16
  2544. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +7 -16
  2545. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnConnectionsCommand.d.ts +7 -16
  2546. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnEndpointsCommand.d.ts +7 -16
  2547. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +7 -16
  2548. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +7 -16
  2549. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCoipPoolsCommand.d.ts +7 -16
  2550. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeConversionTasksCommand.d.ts +7 -16
  2551. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCustomerGatewaysCommand.d.ts +7 -16
  2552. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +7 -16
  2553. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDhcpOptionsCommand.d.ts +7 -16
  2554. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +7 -16
  2555. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeElasticGpusCommand.d.ts +7 -16
  2556. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportImageTasksCommand.d.ts +7 -16
  2557. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +7 -16
  2558. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +7 -16
  2559. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastSnapshotRestoresCommand.d.ts +7 -16
  2560. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetHistoryCommand.d.ts +7 -16
  2561. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetInstancesCommand.d.ts +7 -16
  2562. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +7 -16
  2563. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +7 -16
  2564. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImageAttributeCommand.d.ts +7 -16
  2565. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImagesCommand.d.ts +7 -16
  2566. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationOfferingsCommand.d.ts +7 -16
  2567. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationsCommand.d.ts +7 -16
  2568. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostsCommand.d.ts +7 -16
  2569. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +7 -16
  2570. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdFormatCommand.d.ts +7 -16
  2571. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdentityIdFormatCommand.d.ts +7 -16
  2572. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageAttributeCommand.d.ts +7 -16
  2573. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageReferencesCommand.d.ts +7 -16
  2574. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportEntriesCommand.d.ts +7 -16
  2575. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportsCommand.d.ts +9 -20
  2576. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +7 -16
  2577. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportImageTasksCommand.d.ts +8 -17
  2578. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +7 -16
  2579. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +7 -16
  2580. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +7 -16
  2581. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +7 -16
  2582. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +7 -16
  2583. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +7 -16
  2584. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +7 -16
  2585. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +7 -16
  2586. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaStatesCommand.d.ts +7 -16
  2587. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceStatusCommand.d.ts +7 -16
  2588. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +7 -16
  2589. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +7 -16
  2590. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypesCommand.d.ts +7 -16
  2591. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +7 -16
  2592. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInternetGatewaysCommand.d.ts +7 -16
  2593. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamByoasnCommand.d.ts +7 -16
  2594. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +7 -16
  2595. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoliciesCommand.d.ts +7 -16
  2596. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolAllocationsCommand.d.ts +7 -16
  2597. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +7 -16
  2598. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +7 -16
  2599. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolversCommand.d.ts +7 -16
  2600. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +7 -16
  2601. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +7 -16
  2602. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamScopesCommand.d.ts +7 -16
  2603. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamsCommand.d.ts +7 -16
  2604. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpv6PoolsCommand.d.ts +7 -16
  2605. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +7 -16
  2606. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplateVersionsCommand.d.ts +7 -16
  2607. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +7 -16
  2608. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +7 -16
  2609. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +7 -16
  2610. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +7 -16
  2611. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +7 -16
  2612. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +7 -16
  2613. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +7 -16
  2614. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLockedSnapshotsCommand.d.ts +7 -16
  2615. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +7 -16
  2616. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacModificationTasksCommand.d.ts +7 -16
  2617. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeManagedPrefixListsCommand.d.ts +7 -16
  2618. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMovingAddressesCommand.d.ts +7 -16
  2619. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNatGatewaysCommand.d.ts +7 -16
  2620. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkAclsCommand.d.ts +7 -16
  2621. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +7 -16
  2622. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +7 -16
  2623. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +7 -16
  2624. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsPathsCommand.d.ts +7 -16
  2625. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +7 -16
  2626. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +7 -16
  2627. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacesCommand.d.ts +7 -16
  2628. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeOutpostLagsCommand.d.ts +7 -16
  2629. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePlacementGroupsCommand.d.ts +7 -16
  2630. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrefixListsCommand.d.ts +7 -16
  2631. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrincipalIdFormatCommand.d.ts +7 -16
  2632. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +7 -16
  2633. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +7 -16
  2634. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +7 -16
  2635. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +7 -16
  2636. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +7 -16
  2637. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +7 -16
  2638. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesOfferingsCommand.d.ts +7 -16
  2639. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerEndpointsCommand.d.ts +7 -16
  2640. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerPeersCommand.d.ts +7 -16
  2641. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServersCommand.d.ts +7 -16
  2642. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteTablesCommand.d.ts +7 -16
  2643. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +7 -16
  2644. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +7 -16
  2645. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryInterfacesCommand.d.ts +7 -16
  2646. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryNetworksCommand.d.ts +7 -16
  2647. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondarySubnetsCommand.d.ts +7 -16
  2648. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupReferencesCommand.d.ts +7 -16
  2649. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupRulesCommand.d.ts +7 -16
  2650. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +7 -16
  2651. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupsCommand.d.ts +7 -16
  2652. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +7 -16
  2653. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotAttributeCommand.d.ts +7 -16
  2654. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotTierStatusCommand.d.ts +7 -16
  2655. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +7 -16
  2656. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +7 -16
  2657. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetInstancesCommand.d.ts +7 -16
  2658. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +7 -16
  2659. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestsCommand.d.ts +9 -20
  2660. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +10 -17
  2661. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +7 -16
  2662. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +7 -16
  2663. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +7 -16
  2664. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +7 -16
  2665. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +7 -16
  2666. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +7 -16
  2667. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +7 -16
  2668. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +7 -16
  2669. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +7 -16
  2670. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +7 -16
  2671. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +7 -16
  2672. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectsCommand.d.ts +7 -16
  2673. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +7 -16
  2674. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +7 -16
  2675. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +7 -16
  2676. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +7 -16
  2677. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +7 -16
  2678. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +7 -16
  2679. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +7 -16
  2680. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +7 -16
  2681. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +7 -16
  2682. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +7 -16
  2683. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +7 -16
  2684. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +7 -16
  2685. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstancesCommand.d.ts +7 -16
  2686. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +7 -16
  2687. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +7 -16
  2688. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +7 -16
  2689. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +7 -16
  2690. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +7 -16
  2691. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcAttributeCommand.d.ts +7 -16
  2692. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +7 -16
  2693. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
  2694. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkCommand.d.ts +7 -16
  2695. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +7 -16
  2696. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEncryptionControlsCommand.d.ts +7 -16
  2697. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointAssociationsCommand.d.ts +7 -16
  2698. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
  2699. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +7 -16
  2700. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
  2701. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +7 -16
  2702. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicesCommand.d.ts +7 -16
  2703. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +7 -16
  2704. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +7 -16
  2705. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +7 -16
  2706. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConcentratorsCommand.d.ts +7 -16
  2707. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConnectionsCommand.d.ts +7 -16
  2708. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +7 -16
  2709. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachClassicLinkVpcCommand.d.ts +7 -16
  2710. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +7 -16
  2711. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachInternetGatewayCommand.d.ts +7 -16
  2712. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachNetworkInterfaceCommand.d.ts +7 -16
  2713. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +7 -16
  2714. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVolumeCommand.d.ts +7 -16
  2715. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVpnGatewayCommand.d.ts +7 -16
  2716. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAddressTransferCommand.d.ts +7 -16
  2717. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAllowedImagesSettingsCommand.d.ts +7 -16
  2718. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
  2719. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableCapacityManagerCommand.d.ts +7 -16
  2720. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableEbsEncryptionByDefaultCommand.d.ts +7 -16
  2721. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +7 -16
  2722. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastSnapshotRestoresCommand.d.ts +7 -16
  2723. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageBlockPublicAccessCommand.d.ts +7 -16
  2724. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageCommand.d.ts +7 -16
  2725. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeprecationCommand.d.ts +7 -16
  2726. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeregistrationProtectionCommand.d.ts +7 -16
  2727. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
  2728. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +7 -16
  2729. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamPolicyCommand.d.ts +7 -16
  2730. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableRouteServerPropagationCommand.d.ts +7 -16
  2731. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSerialConsoleAccessCommand.d.ts +7 -16
  2732. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +7 -16
  2733. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
  2734. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVgwRoutePropagationCommand.d.ts +7 -16
  2735. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkCommand.d.ts +7 -16
  2736. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
  2737. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateAddressCommand.d.ts +7 -16
  2738. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
  2739. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +7 -16
  2740. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
  2741. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIamInstanceProfileCommand.d.ts +7 -16
  2742. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateInstanceEventWindowCommand.d.ts +7 -16
  2743. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamByoasnCommand.d.ts +7 -16
  2744. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +7 -16
  2745. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateNatGatewayAddressCommand.d.ts +7 -16
  2746. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteServerCommand.d.ts +7 -16
  2747. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteTableCommand.d.ts +7 -16
  2748. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSecurityGroupVpcCommand.d.ts +7 -16
  2749. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSubnetCidrBlockCommand.d.ts +7 -16
  2750. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
  2751. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +7 -16
  2752. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +7 -16
  2753. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTrunkInterfaceCommand.d.ts +7 -16
  2754. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateVpcCidrBlockCommand.d.ts +7 -16
  2755. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAddressTransferCommand.d.ts +7 -16
  2756. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAllowedImagesSettingsCommand.d.ts +7 -16
  2757. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
  2758. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableCapacityManagerCommand.d.ts +7 -16
  2759. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableEbsEncryptionByDefaultCommand.d.ts +7 -16
  2760. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +7 -16
  2761. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastSnapshotRestoresCommand.d.ts +7 -16
  2762. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageBlockPublicAccessCommand.d.ts +7 -16
  2763. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageCommand.d.ts +7 -16
  2764. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeprecationCommand.d.ts +7 -16
  2765. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeregistrationProtectionCommand.d.ts +7 -16
  2766. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
  2767. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +7 -16
  2768. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamPolicyCommand.d.ts +7 -16
  2769. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +7 -16
  2770. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableRouteServerPropagationCommand.d.ts +7 -16
  2771. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSerialConsoleAccessCommand.d.ts +7 -16
  2772. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +7 -16
  2773. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
  2774. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVgwRoutePropagationCommand.d.ts +7 -16
  2775. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVolumeIOCommand.d.ts +7 -16
  2776. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkCommand.d.ts +7 -16
  2777. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
  2778. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
  2779. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientConfigurationCommand.d.ts +7 -16
  2780. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportImageCommand.d.ts +7 -16
  2781. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportTransitGatewayRoutesCommand.d.ts +7 -16
  2782. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +7 -16
  2783. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetActiveVpnTunnelStatusCommand.d.ts +7 -16
  2784. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAllowedImagesSettingsCommand.d.ts +7 -16
  2785. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +9 -20
  2786. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +8 -17
  2787. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAwsNetworkPerformanceDataCommand.d.ts +10 -17
  2788. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +7 -16
  2789. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +7 -16
  2790. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +7 -16
  2791. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
  2792. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +7 -16
  2793. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +7 -16
  2794. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +7 -16
  2795. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +7 -16
  2796. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +7 -16
  2797. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +7 -16
  2798. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
  2799. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +7 -16
  2800. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEnabledIpamPolicyCommand.d.ts +7 -16
  2801. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +7 -16
  2802. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +7 -16
  2803. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +7 -16
  2804. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageAncestryCommand.d.ts +7 -16
  2805. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageBlockPublicAccessStateCommand.d.ts +7 -16
  2806. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceMetadataDefaultsCommand.d.ts +7 -16
  2807. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +7 -16
  2808. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +7 -16
  2809. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +7 -16
  2810. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +7 -16
  2811. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +7 -16
  2812. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +7 -16
  2813. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +7 -16
  2814. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyAllocationRulesCommand.d.ts +7 -16
  2815. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +7 -16
  2816. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +7 -16
  2817. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +7 -16
  2818. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverRulesCommand.d.ts +7 -16
  2819. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +7 -16
  2820. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +7 -16
  2821. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +7 -16
  2822. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +7 -16
  2823. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListAssociationsCommand.d.ts +7 -16
  2824. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +7 -16
  2825. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +7 -16
  2826. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +7 -16
  2827. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +7 -16
  2828. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetPasswordDataCommand.d.ts +7 -16
  2829. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +7 -16
  2830. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerAssociationsCommand.d.ts +7 -16
  2831. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerPropagationsCommand.d.ts +7 -16
  2832. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerRoutingDatabaseCommand.d.ts +7 -16
  2833. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSecurityGroupsForVpcCommand.d.ts +7 -16
  2834. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +7 -16
  2835. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +7 -16
  2836. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +7 -16
  2837. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +7 -16
  2838. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +7 -16
  2839. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +7 -16
  2840. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
  2841. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +7 -16
  2842. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +7 -16
  2843. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +7 -16
  2844. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +7 -16
  2845. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +7 -16
  2846. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
  2847. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +7 -16
  2848. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +7 -16
  2849. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +7 -16
  2850. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +7 -16
  2851. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +7 -16
  2852. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +7 -16
  2853. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
  2854. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportImageCommand.d.ts +7 -16
  2855. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportInstanceCommand.d.ts +7 -16
  2856. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +7 -16
  2857. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +7 -16
  2858. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportVolumeCommand.d.ts +7 -16
  2859. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +7 -16
  2860. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListSnapshotsInRecycleBinCommand.d.ts +7 -16
  2861. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListVolumesInRecycleBinCommand.d.ts +7 -16
  2862. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/LockSnapshotCommand.d.ts +7 -16
  2863. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +44 -0
  2864. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAddressAttributeCommand.d.ts +7 -16
  2865. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAvailabilityZoneGroupCommand.d.ts +7 -16
  2866. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +7 -16
  2867. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationFleetCommand.d.ts +7 -16
  2868. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyClientVpnEndpointCommand.d.ts +7 -16
  2869. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyDefaultCreditSpecificationCommand.d.ts +7 -16
  2870. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +7 -16
  2871. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFleetCommand.d.ts +7 -16
  2872. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFpgaImageAttributeCommand.d.ts +7 -16
  2873. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyHostsCommand.d.ts +7 -16
  2874. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdFormatCommand.d.ts +7 -16
  2875. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdentityIdFormatCommand.d.ts +7 -16
  2876. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyImageAttributeCommand.d.ts +7 -16
  2877. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceAttributeCommand.d.ts +7 -16
  2878. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +7 -16
  2879. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +7 -16
  2880. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCpuOptionsCommand.d.ts +7 -16
  2881. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCreditSpecificationCommand.d.ts +7 -16
  2882. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventStartTimeCommand.d.ts +7 -16
  2883. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventWindowCommand.d.ts +7 -16
  2884. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +7 -16
  2885. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +7 -16
  2886. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataOptionsCommand.d.ts +7 -16
  2887. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +7 -16
  2888. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstancePlacementCommand.d.ts +7 -16
  2889. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamCommand.d.ts +7 -16
  2890. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +7 -16
  2891. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +8 -17
  2892. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolCommand.d.ts +7 -16
  2893. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverCommand.d.ts +8 -17
  2894. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +8 -17
  2895. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceCidrCommand.d.ts +8 -17
  2896. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceDiscoveryCommand.d.ts +8 -17
  2897. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +7 -16
  2898. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +7 -16
  2899. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +7 -16
  2900. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +7 -16
  2901. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +7 -16
  2902. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +7 -16
  2903. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +7 -16
  2904. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +7 -16
  2905. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +7 -16
  2906. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +7 -16
  2907. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +7 -16
  2908. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +7 -16
  2909. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +7 -16
  2910. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +7 -16
  2911. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +7 -16
  2912. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +7 -16
  2913. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +7 -16
  2914. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +7 -16
  2915. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +7 -16
  2916. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +7 -16
  2917. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
  2918. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +7 -16
  2919. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointCommand.d.ts +7 -16
  2920. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
  2921. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupCommand.d.ts +7 -16
  2922. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +7 -16
  2923. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceCommand.d.ts +7 -16
  2924. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +7 -16
  2925. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +7 -16
  2926. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeAttributeCommand.d.ts +7 -16
  2927. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeCommand.d.ts +7 -16
  2928. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcAttributeCommand.d.ts +7 -16
  2929. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
  2930. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
  2931. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEncryptionControlCommand.d.ts +7 -16
  2932. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointCommand.d.ts +7 -16
  2933. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +7 -16
  2934. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +44 -0
  2935. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +7 -16
  2936. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +7 -16
  2937. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +7 -16
  2938. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +7 -16
  2939. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcTenancyCommand.d.ts +7 -16
  2940. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +7 -16
  2941. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +7 -16
  2942. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelCertificateCommand.d.ts +7 -16
  2943. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelOptionsCommand.d.ts +7 -16
  2944. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +7 -16
  2945. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveAddressToVpcCommand.d.ts +7 -16
  2946. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveByoipCidrToIpamCommand.d.ts +7 -16
  2947. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveCapacityReservationInstancesCommand.d.ts +7 -16
  2948. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionByoipCidrCommand.d.ts +7 -16
  2949. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamByoasnCommand.d.ts +7 -16
  2950. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +7 -16
  2951. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +7 -16
  2952. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockCommand.d.ts +7 -16
  2953. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockExtensionCommand.d.ts +7 -16
  2954. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseHostReservationCommand.d.ts +7 -16
  2955. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseReservedInstancesOfferingCommand.d.ts +7 -16
  2956. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseScheduledInstancesCommand.d.ts +7 -16
  2957. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RebootInstancesCommand.d.ts +7 -16
  2958. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +7 -16
  2959. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
  2960. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
  2961. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
  2962. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +7 -16
  2963. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
  2964. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
  2965. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
  2966. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +7 -16
  2967. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcEndpointConnectionsCommand.d.ts +7 -16
  2968. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +7 -16
  2969. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +7 -16
  2970. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseHostsCommand.d.ts +7 -16
  2971. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseIpamPoolAllocationCommand.d.ts +7 -16
  2972. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +7 -16
  2973. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +7 -16
  2974. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclAssociationCommand.d.ts +7 -16
  2975. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclEntryCommand.d.ts +7 -16
  2976. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteCommand.d.ts +7 -16
  2977. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteTableAssociationCommand.d.ts +7 -16
  2978. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +7 -16
  2979. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +7 -16
  2980. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +7 -16
  2981. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +7 -16
  2982. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +7 -16
  2983. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +7 -16
  2984. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
  2985. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +7 -16
  2986. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +7 -16
  2987. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +7 -16
  2988. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +7 -16
  2989. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +7 -16
  2990. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +7 -16
  2991. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +7 -16
  2992. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +7 -16
  2993. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +7 -16
  2994. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +7 -16
  2995. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreVolumeFromRecycleBinCommand.d.ts +7 -16
  2996. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +7 -16
  2997. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +7 -16
  2998. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +7 -16
  2999. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +7 -16
  3000. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunScheduledInstancesCommand.d.ts +7 -16
  3001. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchLocalGatewayRoutesCommand.d.ts +7 -16
  3002. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +7 -16
  3003. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayRoutesCommand.d.ts +7 -16
  3004. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +7 -16
  3005. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartDeclarativePoliciesReportCommand.d.ts +7 -16
  3006. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +7 -16
  3007. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
  3008. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +7 -16
  3009. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +7 -16
  3010. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StopInstancesCommand.d.ts +7 -16
  3011. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateClientVpnConnectionsCommand.d.ts +7 -16
  3012. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateInstancesCommand.d.ts +7 -16
  3013. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignIpv6AddressesCommand.d.ts +7 -16
  3014. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateIpAddressesCommand.d.ts +7 -16
  3015. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +7 -16
  3016. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnlockSnapshotCommand.d.ts +7 -16
  3017. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnmonitorInstancesCommand.d.ts +7 -16
  3018. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
  3019. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +8 -17
  3020. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +8 -17
  3021. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +8 -17
  3022. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +8 -17
  3023. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/WithdrawByoipCidrCommand.d.ts +8 -17
  3024. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +3 -0
  3025. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/index.d.ts +2 -0
  3026. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +252 -13
  3027. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +26 -36
  3028. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +57 -26
  3029. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +32 -31
  3030. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +42 -68
  3031. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +69 -110
  3032. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +126 -58
  3033. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +80 -66
  3034. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +84 -59
  3035. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +59 -0
  3036. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  3037. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  3038. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  3039. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  3040. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  3041. package/node_modules/@aws-sdk/client-ec2/package.json +10 -12
  3042. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +5054 -2126
  3043. package/node_modules/@aws-sdk/client-iam/dist-es/commandBuilder.js +6 -0
  3044. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AcceptDelegationRequestCommand.js +2 -14
  3045. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddClientIDToOpenIDConnectProviderCommand.js +2 -14
  3046. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddRoleToInstanceProfileCommand.js +2 -14
  3047. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddUserToGroupCommand.js +2 -14
  3048. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AssociateDelegationRequestCommand.js +2 -14
  3049. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachGroupPolicyCommand.js +2 -14
  3050. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachRolePolicyCommand.js +2 -14
  3051. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachUserPolicyCommand.js +2 -14
  3052. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ChangePasswordCommand.js +2 -14
  3053. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccessKeyCommand.js +2 -14
  3054. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccountAliasCommand.js +2 -14
  3055. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateDelegationRequestCommand.js +2 -14
  3056. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateGroupCommand.js +2 -14
  3057. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateInstanceProfileCommand.js +2 -14
  3058. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateLoginProfileCommand.js +2 -14
  3059. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateOpenIDConnectProviderCommand.js +2 -14
  3060. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyCommand.js +2 -14
  3061. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyVersionCommand.js +2 -14
  3062. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateRoleCommand.js +2 -14
  3063. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateSAMLProviderCommand.js +2 -14
  3064. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceLinkedRoleCommand.js +2 -14
  3065. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceSpecificCredentialCommand.js +2 -14
  3066. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateUserCommand.js +2 -14
  3067. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateVirtualMFADeviceCommand.js +2 -14
  3068. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeactivateMFADeviceCommand.js +2 -14
  3069. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccessKeyCommand.js +2 -14
  3070. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountAliasCommand.js +2 -14
  3071. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountPasswordPolicyCommand.js +2 -14
  3072. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupCommand.js +2 -14
  3073. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupPolicyCommand.js +2 -14
  3074. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteInstanceProfileCommand.js +2 -14
  3075. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteLoginProfileCommand.js +2 -14
  3076. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteOpenIDConnectProviderCommand.js +2 -14
  3077. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyCommand.js +2 -14
  3078. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyVersionCommand.js +2 -14
  3079. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRoleCommand.js +2 -14
  3080. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePermissionsBoundaryCommand.js +2 -14
  3081. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePolicyCommand.js +2 -14
  3082. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSAMLProviderCommand.js +2 -14
  3083. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSSHPublicKeyCommand.js +2 -14
  3084. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServerCertificateCommand.js +2 -14
  3085. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceLinkedRoleCommand.js +2 -14
  3086. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceSpecificCredentialCommand.js +2 -14
  3087. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSigningCertificateCommand.js +2 -14
  3088. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserCommand.js +2 -14
  3089. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPermissionsBoundaryCommand.js +2 -14
  3090. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPolicyCommand.js +2 -14
  3091. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteVirtualMFADeviceCommand.js +2 -14
  3092. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachGroupPolicyCommand.js +2 -14
  3093. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachRolePolicyCommand.js +2 -14
  3094. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachUserPolicyCommand.js +2 -14
  3095. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +2 -14
  3096. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +2 -14
  3097. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOutboundWebIdentityFederationCommand.js +2 -14
  3098. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableMFADeviceCommand.js +2 -14
  3099. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +2 -14
  3100. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +2 -14
  3101. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOutboundWebIdentityFederationCommand.js +2 -14
  3102. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateCredentialReportCommand.js +2 -14
  3103. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateOrganizationsAccessReportCommand.js +2 -14
  3104. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateServiceLastAccessedDetailsCommand.js +2 -14
  3105. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccessKeyLastUsedCommand.js +2 -14
  3106. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountAuthorizationDetailsCommand.js +2 -14
  3107. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountPasswordPolicyCommand.js +2 -14
  3108. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountSummaryCommand.js +2 -14
  3109. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForCustomPolicyCommand.js +2 -14
  3110. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForPrincipalPolicyCommand.js +2 -14
  3111. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetCredentialReportCommand.js +2 -14
  3112. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetDelegationRequestCommand.js +2 -14
  3113. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupCommand.js +2 -14
  3114. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupPolicyCommand.js +2 -14
  3115. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetHumanReadableSummaryCommand.js +2 -14
  3116. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetInstanceProfileCommand.js +2 -14
  3117. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetLoginProfileCommand.js +2 -14
  3118. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetMFADeviceCommand.js +2 -14
  3119. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOpenIDConnectProviderCommand.js +2 -14
  3120. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOrganizationsAccessReportCommand.js +2 -14
  3121. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOutboundWebIdentityFederationInfoCommand.js +2 -14
  3122. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyCommand.js +2 -14
  3123. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyVersionCommand.js +2 -14
  3124. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRoleCommand.js +2 -14
  3125. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRolePolicyCommand.js +2 -14
  3126. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSAMLProviderCommand.js +2 -14
  3127. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSSHPublicKeyCommand.js +2 -14
  3128. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServerCertificateCommand.js +2 -14
  3129. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsCommand.js +2 -14
  3130. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.js +2 -14
  3131. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLinkedRoleDeletionStatusCommand.js +2 -14
  3132. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserCommand.js +2 -14
  3133. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserPolicyCommand.js +2 -14
  3134. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccessKeysCommand.js +2 -14
  3135. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccountAliasesCommand.js +2 -14
  3136. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedGroupPoliciesCommand.js +2 -14
  3137. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedRolePoliciesCommand.js +2 -14
  3138. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedUserPoliciesCommand.js +2 -14
  3139. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListDelegationRequestsCommand.js +2 -14
  3140. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListEntitiesForPolicyCommand.js +2 -14
  3141. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupPoliciesCommand.js +2 -14
  3142. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsCommand.js +2 -14
  3143. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsForUserCommand.js +2 -14
  3144. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfileTagsCommand.js +2 -14
  3145. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesCommand.js +2 -14
  3146. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesForRoleCommand.js +2 -14
  3147. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADeviceTagsCommand.js +2 -14
  3148. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADevicesCommand.js +2 -14
  3149. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProviderTagsCommand.js +2 -14
  3150. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProvidersCommand.js +2 -14
  3151. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOrganizationsFeaturesCommand.js +2 -14
  3152. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesCommand.js +2 -14
  3153. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesGrantingServiceAccessCommand.js +2 -14
  3154. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyTagsCommand.js +2 -14
  3155. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyVersionsCommand.js +2 -14
  3156. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolePoliciesCommand.js +2 -14
  3157. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRoleTagsCommand.js +2 -14
  3158. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolesCommand.js +2 -14
  3159. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProviderTagsCommand.js +2 -14
  3160. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProvidersCommand.js +2 -14
  3161. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSSHPublicKeysCommand.js +2 -14
  3162. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificateTagsCommand.js +2 -14
  3163. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificatesCommand.js +2 -14
  3164. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServiceSpecificCredentialsCommand.js +2 -14
  3165. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSigningCertificatesCommand.js +2 -14
  3166. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserPoliciesCommand.js +2 -14
  3167. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserTagsCommand.js +2 -14
  3168. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUsersCommand.js +2 -14
  3169. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListVirtualMFADevicesCommand.js +2 -14
  3170. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutGroupPolicyCommand.js +2 -14
  3171. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePermissionsBoundaryCommand.js +2 -14
  3172. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePolicyCommand.js +2 -14
  3173. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPermissionsBoundaryCommand.js +2 -14
  3174. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPolicyCommand.js +2 -14
  3175. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RejectDelegationRequestCommand.js +2 -14
  3176. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveClientIDFromOpenIDConnectProviderCommand.js +2 -14
  3177. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveRoleFromInstanceProfileCommand.js +2 -14
  3178. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveUserFromGroupCommand.js +2 -14
  3179. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResetServiceSpecificCredentialCommand.js +2 -14
  3180. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResyncMFADeviceCommand.js +2 -14
  3181. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SendDelegationTokenCommand.js +2 -14
  3182. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetDefaultPolicyVersionCommand.js +2 -14
  3183. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetSecurityTokenServicePreferencesCommand.js +2 -14
  3184. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulateCustomPolicyCommand.js +2 -14
  3185. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulatePrincipalPolicyCommand.js +2 -14
  3186. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagInstanceProfileCommand.js +2 -14
  3187. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagMFADeviceCommand.js +2 -14
  3188. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagOpenIDConnectProviderCommand.js +2 -14
  3189. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagPolicyCommand.js +2 -14
  3190. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagRoleCommand.js +2 -14
  3191. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagSAMLProviderCommand.js +2 -14
  3192. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagServerCertificateCommand.js +2 -14
  3193. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagUserCommand.js +2 -14
  3194. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagInstanceProfileCommand.js +2 -14
  3195. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagMFADeviceCommand.js +2 -14
  3196. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagOpenIDConnectProviderCommand.js +2 -14
  3197. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagPolicyCommand.js +2 -14
  3198. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagRoleCommand.js +2 -14
  3199. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagSAMLProviderCommand.js +2 -14
  3200. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagServerCertificateCommand.js +2 -14
  3201. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagUserCommand.js +2 -14
  3202. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccessKeyCommand.js +2 -14
  3203. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccountPasswordPolicyCommand.js +2 -14
  3204. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAssumeRolePolicyCommand.js +2 -14
  3205. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateDelegationRequestCommand.js +2 -14
  3206. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateGroupCommand.js +2 -14
  3207. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateLoginProfileCommand.js +2 -14
  3208. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateOpenIDConnectProviderThumbprintCommand.js +2 -14
  3209. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleCommand.js +2 -14
  3210. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleDescriptionCommand.js +2 -14
  3211. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSAMLProviderCommand.js +2 -14
  3212. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSSHPublicKeyCommand.js +2 -14
  3213. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServerCertificateCommand.js +2 -14
  3214. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServiceSpecificCredentialCommand.js +2 -14
  3215. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSigningCertificateCommand.js +2 -14
  3216. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateUserCommand.js +2 -14
  3217. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSSHPublicKeyCommand.js +2 -14
  3218. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadServerCertificateCommand.js +2 -14
  3219. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSigningCertificateCommand.js +2 -14
  3220. package/node_modules/@aws-sdk/client-iam/dist-es/index.js +1 -0
  3221. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.browser.js +0 -2
  3222. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +1 -2
  3223. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.native.js +0 -2
  3224. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +2 -0
  3225. package/node_modules/@aws-sdk/client-iam/dist-types/commandBuilder.d.ts +18 -0
  3226. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AcceptDelegationRequestCommand.d.ts +3 -8
  3227. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +3 -8
  3228. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddRoleToInstanceProfileCommand.d.ts +3 -8
  3229. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddUserToGroupCommand.d.ts +3 -8
  3230. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AssociateDelegationRequestCommand.d.ts +3 -8
  3231. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachGroupPolicyCommand.d.ts +3 -8
  3232. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachRolePolicyCommand.d.ts +3 -8
  3233. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachUserPolicyCommand.d.ts +3 -8
  3234. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ChangePasswordCommand.d.ts +3 -8
  3235. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccessKeyCommand.d.ts +3 -8
  3236. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccountAliasCommand.d.ts +3 -8
  3237. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateDelegationRequestCommand.d.ts +3 -8
  3238. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateGroupCommand.d.ts +3 -8
  3239. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -8
  3240. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateLoginProfileCommand.d.ts +3 -8
  3241. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateOpenIDConnectProviderCommand.d.ts +3 -8
  3242. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyCommand.d.ts +3 -8
  3243. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyVersionCommand.d.ts +3 -8
  3244. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateRoleCommand.d.ts +3 -8
  3245. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateSAMLProviderCommand.d.ts +3 -8
  3246. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceLinkedRoleCommand.d.ts +3 -8
  3247. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +3 -8
  3248. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateUserCommand.d.ts +3 -8
  3249. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateVirtualMFADeviceCommand.d.ts +3 -8
  3250. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeactivateMFADeviceCommand.d.ts +3 -8
  3251. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccessKeyCommand.d.ts +3 -8
  3252. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountAliasCommand.d.ts +3 -8
  3253. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountPasswordPolicyCommand.d.ts +3 -8
  3254. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
  3255. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupPolicyCommand.d.ts +3 -8
  3256. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -8
  3257. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteLoginProfileCommand.d.ts +3 -8
  3258. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteOpenIDConnectProviderCommand.d.ts +3 -8
  3259. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyCommand.d.ts +3 -8
  3260. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyVersionCommand.d.ts +3 -8
  3261. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRoleCommand.d.ts +3 -8
  3262. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePermissionsBoundaryCommand.d.ts +3 -8
  3263. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePolicyCommand.d.ts +3 -8
  3264. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSAMLProviderCommand.d.ts +3 -8
  3265. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSSHPublicKeyCommand.d.ts +3 -8
  3266. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServerCertificateCommand.d.ts +3 -8
  3267. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceLinkedRoleCommand.d.ts +3 -8
  3268. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceSpecificCredentialCommand.d.ts +3 -8
  3269. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSigningCertificateCommand.d.ts +3 -8
  3270. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserCommand.d.ts +3 -8
  3271. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPermissionsBoundaryCommand.d.ts +3 -8
  3272. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPolicyCommand.d.ts +3 -8
  3273. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteVirtualMFADeviceCommand.d.ts +3 -8
  3274. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachGroupPolicyCommand.d.ts +3 -8
  3275. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachRolePolicyCommand.d.ts +3 -8
  3276. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachUserPolicyCommand.d.ts +3 -8
  3277. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
  3278. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +3 -8
  3279. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOutboundWebIdentityFederationCommand.d.ts +3 -8
  3280. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableMFADeviceCommand.d.ts +3 -8
  3281. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
  3282. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +3 -8
  3283. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOutboundWebIdentityFederationCommand.d.ts +3 -8
  3284. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateCredentialReportCommand.d.ts +3 -8
  3285. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateOrganizationsAccessReportCommand.d.ts +3 -8
  3286. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +3 -8
  3287. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccessKeyLastUsedCommand.d.ts +3 -8
  3288. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountAuthorizationDetailsCommand.d.ts +3 -8
  3289. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountPasswordPolicyCommand.d.ts +3 -8
  3290. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountSummaryCommand.d.ts +3 -8
  3291. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForCustomPolicyCommand.d.ts +3 -8
  3292. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +3 -8
  3293. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetCredentialReportCommand.d.ts +3 -8
  3294. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetDelegationRequestCommand.d.ts +3 -8
  3295. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupCommand.d.ts +3 -8
  3296. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupPolicyCommand.d.ts +3 -8
  3297. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetHumanReadableSummaryCommand.d.ts +3 -8
  3298. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetInstanceProfileCommand.d.ts +3 -8
  3299. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetLoginProfileCommand.d.ts +3 -8
  3300. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetMFADeviceCommand.d.ts +3 -8
  3301. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOpenIDConnectProviderCommand.d.ts +3 -8
  3302. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOrganizationsAccessReportCommand.d.ts +3 -8
  3303. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +3 -8
  3304. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyCommand.d.ts +3 -8
  3305. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyVersionCommand.d.ts +3 -8
  3306. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRoleCommand.d.ts +3 -8
  3307. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRolePolicyCommand.d.ts +3 -8
  3308. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSAMLProviderCommand.d.ts +3 -8
  3309. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSSHPublicKeyCommand.d.ts +3 -8
  3310. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServerCertificateCommand.d.ts +3 -8
  3311. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsCommand.d.ts +3 -8
  3312. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +3 -8
  3313. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +3 -8
  3314. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserCommand.d.ts +3 -8
  3315. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserPolicyCommand.d.ts +3 -8
  3316. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccessKeysCommand.d.ts +3 -8
  3317. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccountAliasesCommand.d.ts +3 -8
  3318. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedGroupPoliciesCommand.d.ts +3 -8
  3319. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedRolePoliciesCommand.d.ts +3 -8
  3320. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedUserPoliciesCommand.d.ts +3 -8
  3321. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListDelegationRequestsCommand.d.ts +3 -8
  3322. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListEntitiesForPolicyCommand.d.ts +3 -8
  3323. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupPoliciesCommand.d.ts +3 -8
  3324. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsCommand.d.ts +3 -8
  3325. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsForUserCommand.d.ts +3 -8
  3326. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfileTagsCommand.d.ts +3 -8
  3327. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesCommand.d.ts +3 -8
  3328. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesForRoleCommand.d.ts +3 -8
  3329. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADeviceTagsCommand.d.ts +3 -8
  3330. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADevicesCommand.d.ts +3 -8
  3331. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProviderTagsCommand.d.ts +3 -8
  3332. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProvidersCommand.d.ts +3 -8
  3333. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +3 -8
  3334. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesCommand.d.ts +3 -8
  3335. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +3 -8
  3336. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyTagsCommand.d.ts +3 -8
  3337. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyVersionsCommand.d.ts +3 -8
  3338. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolePoliciesCommand.d.ts +3 -8
  3339. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRoleTagsCommand.d.ts +3 -8
  3340. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolesCommand.d.ts +3 -8
  3341. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProviderTagsCommand.d.ts +3 -8
  3342. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProvidersCommand.d.ts +3 -8
  3343. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSSHPublicKeysCommand.d.ts +3 -8
  3344. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificateTagsCommand.d.ts +3 -8
  3345. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificatesCommand.d.ts +3 -8
  3346. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +3 -8
  3347. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSigningCertificatesCommand.d.ts +3 -8
  3348. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserPoliciesCommand.d.ts +3 -8
  3349. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserTagsCommand.d.ts +3 -8
  3350. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUsersCommand.d.ts +3 -8
  3351. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListVirtualMFADevicesCommand.d.ts +3 -8
  3352. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutGroupPolicyCommand.d.ts +3 -8
  3353. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePermissionsBoundaryCommand.d.ts +3 -8
  3354. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePolicyCommand.d.ts +3 -8
  3355. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPermissionsBoundaryCommand.d.ts +3 -8
  3356. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPolicyCommand.d.ts +3 -8
  3357. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RejectDelegationRequestCommand.d.ts +3 -8
  3358. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +3 -8
  3359. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveRoleFromInstanceProfileCommand.d.ts +3 -8
  3360. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveUserFromGroupCommand.d.ts +3 -8
  3361. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResetServiceSpecificCredentialCommand.d.ts +3 -8
  3362. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResyncMFADeviceCommand.d.ts +3 -8
  3363. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SendDelegationTokenCommand.d.ts +3 -8
  3364. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetDefaultPolicyVersionCommand.d.ts +3 -8
  3365. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetSecurityTokenServicePreferencesCommand.d.ts +3 -8
  3366. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulateCustomPolicyCommand.d.ts +3 -8
  3367. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +3 -8
  3368. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagInstanceProfileCommand.d.ts +3 -8
  3369. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagMFADeviceCommand.d.ts +3 -8
  3370. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +3 -8
  3371. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagPolicyCommand.d.ts +3 -8
  3372. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagRoleCommand.d.ts +3 -8
  3373. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagSAMLProviderCommand.d.ts +3 -8
  3374. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagServerCertificateCommand.d.ts +3 -8
  3375. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagUserCommand.d.ts +3 -8
  3376. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagInstanceProfileCommand.d.ts +3 -8
  3377. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagMFADeviceCommand.d.ts +3 -8
  3378. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagOpenIDConnectProviderCommand.d.ts +3 -8
  3379. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagPolicyCommand.d.ts +3 -8
  3380. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagRoleCommand.d.ts +3 -8
  3381. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagSAMLProviderCommand.d.ts +3 -8
  3382. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagServerCertificateCommand.d.ts +3 -8
  3383. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagUserCommand.d.ts +3 -8
  3384. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccessKeyCommand.d.ts +3 -8
  3385. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccountPasswordPolicyCommand.d.ts +3 -8
  3386. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAssumeRolePolicyCommand.d.ts +3 -8
  3387. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateDelegationRequestCommand.d.ts +3 -8
  3388. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
  3389. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateLoginProfileCommand.d.ts +3 -8
  3390. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +3 -8
  3391. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleCommand.d.ts +3 -8
  3392. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleDescriptionCommand.d.ts +3 -8
  3393. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSAMLProviderCommand.d.ts +3 -8
  3394. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSSHPublicKeyCommand.d.ts +3 -8
  3395. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServerCertificateCommand.d.ts +3 -8
  3396. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServiceSpecificCredentialCommand.d.ts +3 -8
  3397. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSigningCertificateCommand.d.ts +3 -8
  3398. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateUserCommand.d.ts +3 -8
  3399. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSSHPublicKeyCommand.d.ts +3 -8
  3400. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadServerCertificateCommand.d.ts +3 -8
  3401. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSigningCertificateCommand.d.ts +3 -8
  3402. package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +1 -0
  3403. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +2 -2
  3404. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +2 -2
  3405. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +2 -2
  3406. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.shared.d.ts +1 -0
  3407. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  3408. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AcceptDelegationRequestCommand.d.ts +7 -16
  3409. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +7 -16
  3410. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddRoleToInstanceProfileCommand.d.ts +7 -16
  3411. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddUserToGroupCommand.d.ts +7 -16
  3412. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AssociateDelegationRequestCommand.d.ts +7 -16
  3413. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachGroupPolicyCommand.d.ts +7 -16
  3414. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachRolePolicyCommand.d.ts +7 -16
  3415. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachUserPolicyCommand.d.ts +7 -16
  3416. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +7 -16
  3417. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccessKeyCommand.d.ts +7 -16
  3418. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccountAliasCommand.d.ts +7 -16
  3419. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateDelegationRequestCommand.d.ts +7 -16
  3420. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
  3421. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateInstanceProfileCommand.d.ts +7 -16
  3422. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +7 -16
  3423. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateOpenIDConnectProviderCommand.d.ts +7 -16
  3424. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +7 -16
  3425. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyVersionCommand.d.ts +7 -16
  3426. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateRoleCommand.d.ts +7 -16
  3427. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateSAMLProviderCommand.d.ts +7 -16
  3428. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceLinkedRoleCommand.d.ts +7 -16
  3429. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceSpecificCredentialCommand.d.ts +7 -16
  3430. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
  3431. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateVirtualMFADeviceCommand.d.ts +7 -16
  3432. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeactivateMFADeviceCommand.d.ts +7 -16
  3433. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccessKeyCommand.d.ts +7 -16
  3434. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +7 -16
  3435. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountPasswordPolicyCommand.d.ts +7 -16
  3436. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
  3437. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupPolicyCommand.d.ts +7 -16
  3438. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteInstanceProfileCommand.d.ts +7 -16
  3439. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +7 -16
  3440. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteOpenIDConnectProviderCommand.d.ts +7 -16
  3441. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +7 -16
  3442. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyVersionCommand.d.ts +7 -16
  3443. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRoleCommand.d.ts +7 -16
  3444. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePermissionsBoundaryCommand.d.ts +7 -16
  3445. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePolicyCommand.d.ts +7 -16
  3446. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSAMLProviderCommand.d.ts +7 -16
  3447. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSSHPublicKeyCommand.d.ts +7 -16
  3448. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServerCertificateCommand.d.ts +7 -16
  3449. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceLinkedRoleCommand.d.ts +7 -16
  3450. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceSpecificCredentialCommand.d.ts +7 -16
  3451. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSigningCertificateCommand.d.ts +7 -16
  3452. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
  3453. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPermissionsBoundaryCommand.d.ts +7 -16
  3454. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPolicyCommand.d.ts +7 -16
  3455. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteVirtualMFADeviceCommand.d.ts +7 -16
  3456. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachGroupPolicyCommand.d.ts +7 -16
  3457. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachRolePolicyCommand.d.ts +7 -16
  3458. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachUserPolicyCommand.d.ts +7 -16
  3459. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
  3460. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +7 -16
  3461. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOutboundWebIdentityFederationCommand.d.ts +7 -16
  3462. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableMFADeviceCommand.d.ts +7 -16
  3463. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
  3464. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +7 -16
  3465. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOutboundWebIdentityFederationCommand.d.ts +7 -16
  3466. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateCredentialReportCommand.d.ts +7 -16
  3467. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateOrganizationsAccessReportCommand.d.ts +7 -16
  3468. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +7 -16
  3469. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccessKeyLastUsedCommand.d.ts +7 -16
  3470. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountAuthorizationDetailsCommand.d.ts +7 -16
  3471. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountPasswordPolicyCommand.d.ts +7 -16
  3472. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountSummaryCommand.d.ts +7 -16
  3473. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForCustomPolicyCommand.d.ts +7 -16
  3474. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +7 -16
  3475. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetCredentialReportCommand.d.ts +7 -16
  3476. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetDelegationRequestCommand.d.ts +7 -16
  3477. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -16
  3478. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupPolicyCommand.d.ts +7 -16
  3479. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetHumanReadableSummaryCommand.d.ts +7 -16
  3480. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetInstanceProfileCommand.d.ts +7 -16
  3481. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +7 -16
  3482. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetMFADeviceCommand.d.ts +7 -16
  3483. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOpenIDConnectProviderCommand.d.ts +7 -16
  3484. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOrganizationsAccessReportCommand.d.ts +7 -16
  3485. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +7 -16
  3486. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
  3487. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyVersionCommand.d.ts +7 -16
  3488. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRoleCommand.d.ts +7 -16
  3489. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRolePolicyCommand.d.ts +7 -16
  3490. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSAMLProviderCommand.d.ts +7 -16
  3491. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSSHPublicKeyCommand.d.ts +7 -16
  3492. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServerCertificateCommand.d.ts +7 -16
  3493. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsCommand.d.ts +7 -16
  3494. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +7 -16
  3495. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +7 -16
  3496. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserCommand.d.ts +7 -16
  3497. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserPolicyCommand.d.ts +7 -16
  3498. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccessKeysCommand.d.ts +7 -16
  3499. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccountAliasesCommand.d.ts +7 -16
  3500. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedGroupPoliciesCommand.d.ts +7 -16
  3501. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedRolePoliciesCommand.d.ts +7 -16
  3502. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedUserPoliciesCommand.d.ts +7 -16
  3503. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListDelegationRequestsCommand.d.ts +7 -16
  3504. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListEntitiesForPolicyCommand.d.ts +7 -16
  3505. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupPoliciesCommand.d.ts +7 -16
  3506. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
  3507. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsForUserCommand.d.ts +7 -16
  3508. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfileTagsCommand.d.ts +7 -16
  3509. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesCommand.d.ts +7 -16
  3510. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesForRoleCommand.d.ts +7 -16
  3511. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADeviceTagsCommand.d.ts +7 -16
  3512. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADevicesCommand.d.ts +7 -16
  3513. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProviderTagsCommand.d.ts +7 -16
  3514. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProvidersCommand.d.ts +7 -16
  3515. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +7 -16
  3516. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +7 -16
  3517. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +7 -16
  3518. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyTagsCommand.d.ts +7 -16
  3519. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyVersionsCommand.d.ts +7 -16
  3520. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolePoliciesCommand.d.ts +7 -16
  3521. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRoleTagsCommand.d.ts +7 -16
  3522. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolesCommand.d.ts +7 -16
  3523. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProviderTagsCommand.d.ts +7 -16
  3524. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProvidersCommand.d.ts +7 -16
  3525. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSSHPublicKeysCommand.d.ts +7 -16
  3526. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificateTagsCommand.d.ts +7 -16
  3527. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificatesCommand.d.ts +7 -16
  3528. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServiceSpecificCredentialsCommand.d.ts +7 -16
  3529. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSigningCertificatesCommand.d.ts +7 -16
  3530. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserPoliciesCommand.d.ts +7 -16
  3531. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserTagsCommand.d.ts +7 -16
  3532. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
  3533. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListVirtualMFADevicesCommand.d.ts +7 -16
  3534. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutGroupPolicyCommand.d.ts +7 -16
  3535. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePermissionsBoundaryCommand.d.ts +7 -16
  3536. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePolicyCommand.d.ts +7 -16
  3537. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPermissionsBoundaryCommand.d.ts +7 -16
  3538. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPolicyCommand.d.ts +7 -16
  3539. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RejectDelegationRequestCommand.d.ts +7 -16
  3540. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +7 -16
  3541. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveRoleFromInstanceProfileCommand.d.ts +7 -16
  3542. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveUserFromGroupCommand.d.ts +7 -16
  3543. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResetServiceSpecificCredentialCommand.d.ts +7 -16
  3544. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResyncMFADeviceCommand.d.ts +7 -16
  3545. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SendDelegationTokenCommand.d.ts +7 -16
  3546. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetDefaultPolicyVersionCommand.d.ts +7 -16
  3547. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetSecurityTokenServicePreferencesCommand.d.ts +7 -16
  3548. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +7 -16
  3549. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +7 -16
  3550. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +7 -16
  3551. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +7 -16
  3552. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +7 -16
  3553. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +7 -16
  3554. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagRoleCommand.d.ts +7 -16
  3555. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +7 -16
  3556. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +7 -16
  3557. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagUserCommand.d.ts +7 -16
  3558. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagInstanceProfileCommand.d.ts +7 -16
  3559. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagMFADeviceCommand.d.ts +7 -16
  3560. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagOpenIDConnectProviderCommand.d.ts +7 -16
  3561. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagPolicyCommand.d.ts +7 -16
  3562. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagRoleCommand.d.ts +7 -16
  3563. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagSAMLProviderCommand.d.ts +7 -16
  3564. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagServerCertificateCommand.d.ts +7 -16
  3565. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagUserCommand.d.ts +7 -16
  3566. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccessKeyCommand.d.ts +7 -16
  3567. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccountPasswordPolicyCommand.d.ts +7 -16
  3568. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAssumeRolePolicyCommand.d.ts +7 -16
  3569. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateDelegationRequestCommand.d.ts +7 -16
  3570. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
  3571. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateLoginProfileCommand.d.ts +7 -16
  3572. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +7 -16
  3573. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleCommand.d.ts +7 -16
  3574. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleDescriptionCommand.d.ts +7 -16
  3575. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSAMLProviderCommand.d.ts +7 -16
  3576. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSSHPublicKeyCommand.d.ts +7 -16
  3577. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServerCertificateCommand.d.ts +7 -16
  3578. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServiceSpecificCredentialCommand.d.ts +7 -16
  3579. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSigningCertificateCommand.d.ts +7 -16
  3580. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
  3581. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSSHPublicKeyCommand.d.ts +7 -16
  3582. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadServerCertificateCommand.d.ts +7 -16
  3583. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSigningCertificateCommand.d.ts +7 -16
  3584. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/index.d.ts +1 -0
  3585. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  3586. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  3587. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  3588. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  3589. package/node_modules/@aws-sdk/client-iam/package.json +9 -11
  3590. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +4555 -1044
  3591. package/node_modules/@aws-sdk/client-lambda/dist-es/commandBuilder.js +6 -0
  3592. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +2 -14
  3593. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +2 -14
  3594. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CheckpointDurableExecutionCommand.js +2 -14
  3595. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +2 -14
  3596. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCapacityProviderCommand.js +2 -14
  3597. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +2 -14
  3598. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +2 -14
  3599. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +2 -14
  3600. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionUrlConfigCommand.js +2 -14
  3601. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +2 -14
  3602. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCapacityProviderCommand.js +2 -14
  3603. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +2 -14
  3604. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +2 -14
  3605. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +2 -14
  3606. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +2 -14
  3607. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +2 -14
  3608. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +2 -14
  3609. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionUrlConfigCommand.js +2 -14
  3610. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +2 -14
  3611. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +2 -14
  3612. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +2 -14
  3613. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +2 -14
  3614. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCapacityProviderCommand.js +2 -14
  3615. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +2 -14
  3616. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionCommand.js +2 -14
  3617. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionHistoryCommand.js +2 -14
  3618. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionStateCommand.js +2 -14
  3619. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +2 -14
  3620. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +2 -14
  3621. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +2 -14
  3622. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +2 -14
  3623. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +2 -14
  3624. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +2 -14
  3625. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionRecursionConfigCommand.js +2 -14
  3626. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionScalingConfigCommand.js +2 -14
  3627. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionUrlConfigCommand.js +2 -14
  3628. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +2 -14
  3629. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +2 -14
  3630. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +2 -14
  3631. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +2 -14
  3632. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +2 -14
  3633. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetRuntimeManagementConfigCommand.js +2 -14
  3634. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +2 -14
  3635. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +2 -14
  3636. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeWithResponseStreamCommand.js +2 -18
  3637. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +2 -14
  3638. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCapacityProvidersCommand.js +2 -14
  3639. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +2 -14
  3640. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +2 -14
  3641. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +2 -14
  3642. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +2 -14
  3643. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionUrlConfigsCommand.js +2 -14
  3644. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +2 -14
  3645. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +2 -14
  3646. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +2 -14
  3647. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +2 -14
  3648. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +2 -14
  3649. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +2 -14
  3650. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +2 -14
  3651. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +2 -14
  3652. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +2 -14
  3653. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +2 -14
  3654. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +2 -14
  3655. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +2 -14
  3656. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +2 -14
  3657. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionRecursionConfigCommand.js +2 -14
  3658. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionScalingConfigCommand.js +2 -14
  3659. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +2 -14
  3660. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutRuntimeManagementConfigCommand.js +2 -14
  3661. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +2 -14
  3662. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +2 -14
  3663. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +2 -14
  3664. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +2 -14
  3665. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +2 -14
  3666. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/StopDurableExecutionCommand.js +2 -14
  3667. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +2 -14
  3668. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +2 -14
  3669. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +2 -14
  3670. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCapacityProviderCommand.js +2 -14
  3671. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +2 -14
  3672. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +2 -14
  3673. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +2 -14
  3674. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +2 -14
  3675. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +2 -14
  3676. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionUrlConfigCommand.js +2 -14
  3677. package/node_modules/@aws-sdk/client-lambda/dist-es/index.js +1 -0
  3678. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +9 -5
  3679. package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +64 -64
  3680. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +0 -2
  3681. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +1 -2
  3682. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +0 -2
  3683. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +2 -0
  3684. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +59 -32
  3685. package/node_modules/@aws-sdk/client-lambda/dist-types/commandBuilder.d.ts +18 -0
  3686. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +3 -8
  3687. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +3 -8
  3688. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +15 -8
  3689. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -8
  3690. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +15 -8
  3691. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +3 -8
  3692. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +3 -8
  3693. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +6 -8
  3694. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +3 -8
  3695. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -8
  3696. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +9 -8
  3697. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +3 -8
  3698. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +3 -8
  3699. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +3 -8
  3700. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +3 -8
  3701. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +3 -8
  3702. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +3 -8
  3703. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -8
  3704. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +3 -8
  3705. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +3 -8
  3706. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -8
  3707. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +3 -8
  3708. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +9 -8
  3709. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +3 -8
  3710. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +22 -8
  3711. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +15 -8
  3712. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +15 -8
  3713. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +3 -8
  3714. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -8
  3715. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +13 -8
  3716. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +3 -8
  3717. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +4 -8
  3718. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +3 -8
  3719. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +3 -8
  3720. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +3 -8
  3721. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +3 -8
  3722. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +8 -8
  3723. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +8 -8
  3724. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +3 -8
  3725. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +3 -8
  3726. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +3 -8
  3727. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +3 -8
  3728. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +3 -8
  3729. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +3 -8
  3730. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -9
  3731. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +3 -8
  3732. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +9 -8
  3733. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +3 -8
  3734. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +4 -8
  3735. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +3 -8
  3736. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +3 -8
  3737. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +3 -8
  3738. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +3 -8
  3739. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +3 -8
  3740. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +4 -8
  3741. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +3 -8
  3742. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +3 -8
  3743. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +3 -8
  3744. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +3 -8
  3745. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +4 -8
  3746. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +9 -8
  3747. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +4 -8
  3748. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +3 -8
  3749. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +3 -8
  3750. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +3 -8
  3751. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +3 -8
  3752. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +3 -8
  3753. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +3 -8
  3754. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +3 -8
  3755. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +3 -8
  3756. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
  3757. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +15 -8
  3758. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -8
  3759. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +15 -8
  3760. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +15 -8
  3761. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +3 -8
  3762. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  3763. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +3 -8
  3764. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +15 -8
  3765. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +3 -8
  3766. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +3 -8
  3767. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +5 -8
  3768. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +5 -8
  3769. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +3 -8
  3770. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +3 -8
  3771. package/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +1 -0
  3772. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +27 -9
  3773. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +56 -56
  3774. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +143 -9
  3775. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +2 -2
  3776. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +2 -2
  3777. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +2 -2
  3778. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +1 -0
  3779. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +4 -0
  3780. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  3781. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +7 -16
  3782. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
  3783. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +7 -16
  3784. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +7 -16
  3785. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +7 -16
  3786. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +7 -16
  3787. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +7 -16
  3788. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +7 -16
  3789. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +7 -16
  3790. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +7 -16
  3791. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +7 -16
  3792. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +7 -16
  3793. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +7 -16
  3794. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +7 -16
  3795. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +7 -16
  3796. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +7 -16
  3797. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +7 -16
  3798. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +7 -16
  3799. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +7 -16
  3800. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +7 -16
  3801. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +7 -16
  3802. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +7 -16
  3803. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +7 -16
  3804. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +7 -16
  3805. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +7 -16
  3806. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +7 -16
  3807. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +7 -16
  3808. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +7 -16
  3809. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +7 -16
  3810. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +7 -16
  3811. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +7 -16
  3812. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +7 -16
  3813. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +7 -16
  3814. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +7 -16
  3815. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +7 -16
  3816. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +7 -16
  3817. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +7 -16
  3818. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +7 -16
  3819. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +7 -16
  3820. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
  3821. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +7 -16
  3822. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +7 -16
  3823. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +7 -16
  3824. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +7 -16
  3825. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +7 -16
  3826. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +7 -16
  3827. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +7 -16
  3828. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +7 -16
  3829. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +7 -16
  3830. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +7 -16
  3831. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +7 -16
  3832. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +7 -16
  3833. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +7 -16
  3834. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +7 -16
  3835. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +7 -16
  3836. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +7 -16
  3837. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +7 -16
  3838. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +7 -16
  3839. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -16
  3840. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +7 -16
  3841. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +7 -16
  3842. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +7 -16
  3843. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +7 -16
  3844. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +7 -16
  3845. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +7 -16
  3846. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +7 -16
  3847. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +7 -16
  3848. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +7 -16
  3849. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +7 -16
  3850. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +7 -16
  3851. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
  3852. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +7 -16
  3853. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +7 -16
  3854. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +7 -16
  3855. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +7 -16
  3856. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  3857. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  3858. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +7 -16
  3859. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +7 -16
  3860. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +7 -16
  3861. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +7 -16
  3862. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +7 -16
  3863. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +7 -16
  3864. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +7 -16
  3865. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +7 -16
  3866. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +1 -0
  3867. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +13 -7
  3868. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +36 -36
  3869. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +32 -1
  3870. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  3871. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  3872. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  3873. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  3874. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  3875. package/node_modules/@aws-sdk/client-lambda/package.json +9 -11
  3876. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5637 -2177
  3877. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -1
  3878. package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
  3879. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
  3880. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -23
  3881. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -25
  3882. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -24
  3883. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
  3884. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
  3885. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -23
  3886. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
  3887. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
  3888. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
  3889. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
  3890. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
  3891. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
  3892. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
  3893. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
  3894. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
  3895. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
  3896. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
  3897. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
  3898. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
  3899. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
  3900. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
  3901. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
  3902. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +2 -21
  3903. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
  3904. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
  3905. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
  3906. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
  3907. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
  3908. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
  3909. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
  3910. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
  3911. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
  3912. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
  3913. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
  3914. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
  3915. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
  3916. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
  3917. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
  3918. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
  3919. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
  3920. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
  3921. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
  3922. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
  3923. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -18
  3924. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
  3925. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
  3926. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
  3927. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
  3928. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
  3929. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
  3930. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
  3931. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +2 -26
  3932. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -22
  3933. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -29
  3934. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
  3935. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
  3936. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
  3937. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
  3938. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
  3939. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
  3940. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
  3941. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -24
  3942. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
  3943. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
  3944. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
  3945. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
  3946. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
  3947. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
  3948. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
  3949. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +2 -21
  3950. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
  3951. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
  3952. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
  3953. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -23
  3954. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
  3955. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
  3956. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
  3957. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
  3958. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
  3959. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
  3960. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
  3961. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
  3962. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
  3963. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
  3964. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
  3965. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
  3966. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
  3967. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
  3968. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
  3969. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
  3970. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
  3971. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
  3972. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
  3973. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
  3974. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +2 -27
  3975. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -29
  3976. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
  3977. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
  3978. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
  3979. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
  3980. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
  3981. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
  3982. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
  3983. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -25
  3984. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +2 -25
  3985. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
  3986. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
  3987. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
  3988. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -28
  3989. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -23
  3990. package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
  3991. package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
  3992. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +1 -6
  3993. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +2 -5
  3994. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
  3995. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +5 -0
  3996. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
  3997. package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
  3998. package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -8
  3999. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +3 -8
  4000. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +3 -8
  4001. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -8
  4002. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +3 -8
  4003. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +3 -8
  4004. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +3 -8
  4005. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -8
  4006. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -8
  4007. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -8
  4008. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -8
  4009. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -8
  4010. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
  4011. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +3 -8
  4012. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -8
  4013. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -8
  4014. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -8
  4015. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -8
  4016. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -8
  4017. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -8
  4018. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -8
  4019. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -8
  4020. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -8
  4021. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +3 -8
  4022. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -8
  4023. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -8
  4024. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +3 -8
  4025. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -8
  4026. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -8
  4027. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -8
  4028. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -8
  4029. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -8
  4030. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -8
  4031. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -8
  4032. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
  4033. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +3 -8
  4034. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -8
  4035. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -8
  4036. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -8
  4037. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +3 -8
  4038. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -8
  4039. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -8
  4040. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -8
  4041. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -8
  4042. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -8
  4043. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -8
  4044. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -8
  4045. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -8
  4046. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -8
  4047. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -8
  4048. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -8
  4049. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -8
  4050. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +3 -8
  4051. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +3 -8
  4052. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +3 -8
  4053. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -8
  4054. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -8
  4055. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -8
  4056. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -8
  4057. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -8
  4058. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -8
  4059. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -8
  4060. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +3 -8
  4061. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -8
  4062. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -8
  4063. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +3 -8
  4064. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -8
  4065. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -8
  4066. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -8
  4067. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +3 -8
  4068. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +3 -8
  4069. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +3 -8
  4070. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +3 -8
  4071. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +3 -8
  4072. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +3 -8
  4073. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +3 -8
  4074. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +3 -8
  4075. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +3 -8
  4076. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -8
  4077. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +3 -8
  4078. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -8
  4079. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
  4080. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +3 -8
  4081. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +3 -8
  4082. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +3 -8
  4083. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -8
  4084. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -8
  4085. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +3 -8
  4086. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +3 -8
  4087. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +3 -8
  4088. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +3 -8
  4089. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +3 -8
  4090. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +3 -8
  4091. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +3 -8
  4092. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +3 -8
  4093. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +3 -8
  4094. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +3 -8
  4095. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +3 -8
  4096. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +3 -8
  4097. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +3 -8
  4098. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +3 -8
  4099. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +3 -8
  4100. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +3 -8
  4101. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +3 -8
  4102. package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -8
  4103. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +3 -8
  4104. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +3 -8
  4105. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +3 -8
  4106. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +3 -8
  4107. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +3 -8
  4108. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +3 -8
  4109. package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +3 -8
  4110. package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
  4111. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +6 -6
  4112. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +47 -48
  4113. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
  4114. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +3 -0
  4115. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +4 -4
  4116. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
  4117. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +7 -16
  4118. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +7 -16
  4119. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +7 -16
  4120. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +7 -16
  4121. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +7 -16
  4122. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +7 -16
  4123. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +7 -16
  4124. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +7 -16
  4125. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +7 -16
  4126. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +7 -16
  4127. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +7 -16
  4128. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +7 -16
  4129. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
  4130. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +7 -16
  4131. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +7 -16
  4132. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +7 -16
  4133. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +7 -16
  4134. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +7 -16
  4135. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +7 -16
  4136. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +7 -16
  4137. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +7 -16
  4138. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +7 -16
  4139. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +7 -16
  4140. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +7 -16
  4141. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +7 -16
  4142. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +7 -16
  4143. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +7 -16
  4144. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +7 -16
  4145. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +7 -16
  4146. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +7 -16
  4147. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +7 -16
  4148. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +7 -16
  4149. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +7 -16
  4150. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +7 -16
  4151. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
  4152. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +7 -16
  4153. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +7 -16
  4154. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +7 -16
  4155. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +7 -16
  4156. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +7 -16
  4157. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +7 -16
  4158. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +7 -16
  4159. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +7 -16
  4160. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +7 -16
  4161. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +7 -16
  4162. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +7 -16
  4163. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +7 -16
  4164. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +7 -16
  4165. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +7 -16
  4166. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +7 -16
  4167. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +7 -16
  4168. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +7 -16
  4169. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +7 -16
  4170. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +7 -16
  4171. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +7 -16
  4172. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +7 -16
  4173. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +7 -16
  4174. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +7 -16
  4175. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +7 -16
  4176. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +7 -16
  4177. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +7 -16
  4178. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +7 -16
  4179. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +7 -16
  4180. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +7 -16
  4181. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +7 -16
  4182. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +7 -16
  4183. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +7 -16
  4184. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +7 -16
  4185. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +7 -16
  4186. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +7 -16
  4187. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +7 -16
  4188. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +7 -16
  4189. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +7 -16
  4190. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +7 -16
  4191. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +7 -16
  4192. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +7 -16
  4193. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +7 -16
  4194. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +7 -16
  4195. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +7 -16
  4196. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +7 -16
  4197. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +7 -16
  4198. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
  4199. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +7 -16
  4200. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +7 -16
  4201. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +7 -16
  4202. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +7 -16
  4203. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +7 -16
  4204. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +7 -16
  4205. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +7 -16
  4206. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +7 -16
  4207. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +7 -16
  4208. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +7 -16
  4209. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +7 -16
  4210. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +7 -16
  4211. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +7 -16
  4212. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +7 -16
  4213. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +7 -16
  4214. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +7 -16
  4215. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +7 -16
  4216. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +7 -16
  4217. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +7 -16
  4218. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +7 -16
  4219. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +7 -16
  4220. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +7 -16
  4221. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +7 -16
  4222. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +7 -16
  4223. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +7 -16
  4224. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +7 -16
  4225. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +7 -16
  4226. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +7 -16
  4227. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +7 -16
  4228. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +7 -16
  4229. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
  4230. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -8
  4231. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +70 -74
  4232. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
  4233. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -0
  4234. package/node_modules/@aws-sdk/client-s3/package.json +13 -16
  4235. package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +1986 -518
  4236. package/node_modules/@aws-sdk/client-sns/dist-es/commandBuilder.js +6 -0
  4237. package/node_modules/@aws-sdk/client-sns/dist-es/commands/AddPermissionCommand.js +2 -14
  4238. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -14
  4239. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ConfirmSubscriptionCommand.js +2 -14
  4240. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformApplicationCommand.js +2 -14
  4241. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformEndpointCommand.js +2 -14
  4242. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -14
  4243. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateTopicCommand.js +2 -14
  4244. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteEndpointCommand.js +2 -14
  4245. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeletePlatformApplicationCommand.js +2 -14
  4246. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -14
  4247. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteTopicCommand.js +2 -14
  4248. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
  4249. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetEndpointAttributesCommand.js +2 -14
  4250. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -14
  4251. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSAttributesCommand.js +2 -14
  4252. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -14
  4253. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -14
  4254. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetTopicAttributesCommand.js +2 -14
  4255. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -14
  4256. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListOriginationNumbersCommand.js +2 -14
  4257. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -14
  4258. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPlatformApplicationsCommand.js +2 -14
  4259. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -14
  4260. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -14
  4261. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsCommand.js +2 -14
  4262. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  4263. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTopicsCommand.js +2 -14
  4264. package/node_modules/@aws-sdk/client-sns/dist-es/commands/OptInPhoneNumberCommand.js +2 -14
  4265. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishBatchCommand.js +2 -14
  4266. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishCommand.js +2 -14
  4267. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
  4268. package/node_modules/@aws-sdk/client-sns/dist-es/commands/RemovePermissionCommand.js +2 -14
  4269. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetEndpointAttributesCommand.js +2 -14
  4270. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -14
  4271. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSMSAttributesCommand.js +2 -14
  4272. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -14
  4273. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetTopicAttributesCommand.js +2 -14
  4274. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SubscribeCommand.js +2 -14
  4275. package/node_modules/@aws-sdk/client-sns/dist-es/commands/TagResourceCommand.js +2 -14
  4276. package/node_modules/@aws-sdk/client-sns/dist-es/commands/UnsubscribeCommand.js +2 -14
  4277. package/node_modules/@aws-sdk/client-sns/dist-es/commands/UntagResourceCommand.js +2 -14
  4278. package/node_modules/@aws-sdk/client-sns/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -14
  4279. package/node_modules/@aws-sdk/client-sns/dist-es/index.js +1 -0
  4280. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.browser.js +0 -2
  4281. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +1 -2
  4282. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.native.js +0 -2
  4283. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +2 -0
  4284. package/node_modules/@aws-sdk/client-sns/dist-types/commandBuilder.d.ts +18 -0
  4285. package/node_modules/@aws-sdk/client-sns/dist-types/commands/AddPermissionCommand.d.ts +3 -8
  4286. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +3 -8
  4287. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +3 -8
  4288. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformApplicationCommand.d.ts +3 -8
  4289. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformEndpointCommand.d.ts +3 -8
  4290. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +3 -8
  4291. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateTopicCommand.d.ts +3 -8
  4292. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteEndpointCommand.d.ts +3 -8
  4293. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeletePlatformApplicationCommand.d.ts +3 -8
  4294. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +3 -8
  4295. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteTopicCommand.d.ts +3 -8
  4296. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -8
  4297. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetEndpointAttributesCommand.d.ts +3 -8
  4298. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetPlatformApplicationAttributesCommand.d.ts +3 -8
  4299. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSAttributesCommand.d.ts +3 -8
  4300. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSSandboxAccountStatusCommand.d.ts +3 -8
  4301. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSubscriptionAttributesCommand.d.ts +3 -8
  4302. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetTopicAttributesCommand.d.ts +3 -8
  4303. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListEndpointsByPlatformApplicationCommand.d.ts +3 -8
  4304. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListOriginationNumbersCommand.d.ts +3 -8
  4305. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPhoneNumbersOptedOutCommand.d.ts +3 -8
  4306. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPlatformApplicationsCommand.d.ts +3 -8
  4307. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +3 -8
  4308. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsByTopicCommand.d.ts +3 -8
  4309. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsCommand.d.ts +3 -8
  4310. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  4311. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTopicsCommand.d.ts +3 -8
  4312. package/node_modules/@aws-sdk/client-sns/dist-types/commands/OptInPhoneNumberCommand.d.ts +3 -8
  4313. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishBatchCommand.d.ts +3 -8
  4314. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishCommand.d.ts +3 -8
  4315. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -8
  4316. package/node_modules/@aws-sdk/client-sns/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
  4317. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetEndpointAttributesCommand.d.ts +3 -8
  4318. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetPlatformApplicationAttributesCommand.d.ts +3 -8
  4319. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSMSAttributesCommand.d.ts +3 -8
  4320. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +3 -8
  4321. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetTopicAttributesCommand.d.ts +3 -8
  4322. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +3 -8
  4323. package/node_modules/@aws-sdk/client-sns/dist-types/commands/TagResourceCommand.d.ts +3 -8
  4324. package/node_modules/@aws-sdk/client-sns/dist-types/commands/UnsubscribeCommand.d.ts +3 -8
  4325. package/node_modules/@aws-sdk/client-sns/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  4326. package/node_modules/@aws-sdk/client-sns/dist-types/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +3 -8
  4327. package/node_modules/@aws-sdk/client-sns/dist-types/index.d.ts +1 -0
  4328. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +2 -2
  4329. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +2 -2
  4330. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +2 -2
  4331. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.shared.d.ts +1 -0
  4332. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  4333. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
  4334. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +7 -16
  4335. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +7 -16
  4336. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +7 -16
  4337. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +7 -16
  4338. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +7 -16
  4339. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +7 -16
  4340. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +7 -16
  4341. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +7 -16
  4342. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +7 -16
  4343. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +7 -16
  4344. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +7 -16
  4345. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +7 -16
  4346. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +7 -16
  4347. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +7 -16
  4348. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +7 -16
  4349. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +7 -16
  4350. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +7 -16
  4351. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +7 -16
  4352. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +7 -16
  4353. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +7 -16
  4354. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +7 -16
  4355. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +7 -16
  4356. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +7 -16
  4357. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +7 -16
  4358. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  4359. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +7 -16
  4360. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +7 -16
  4361. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +7 -16
  4362. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +7 -16
  4363. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +7 -16
  4364. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
  4365. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +7 -16
  4366. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +7 -16
  4367. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +7 -16
  4368. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +7 -16
  4369. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +7 -16
  4370. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +7 -16
  4371. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  4372. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +7 -16
  4373. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  4374. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +7 -16
  4375. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +1 -0
  4376. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  4377. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  4378. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  4379. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  4380. package/node_modules/@aws-sdk/client-sns/package.json +8 -10
  4381. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1492 -300
  4382. package/node_modules/@aws-sdk/client-sqs/dist-es/commandBuilder.js +18 -0
  4383. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/AddPermissionCommand.js +2 -14
  4384. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -14
  4385. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -14
  4386. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -14
  4387. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CreateQueueCommand.js +2 -14
  4388. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageBatchCommand.js +2 -14
  4389. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageCommand.js +2 -14
  4390. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteQueueCommand.js +2 -14
  4391. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueAttributesCommand.js +2 -14
  4392. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueUrlCommand.js +2 -14
  4393. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -14
  4394. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListMessageMoveTasksCommand.js +2 -14
  4395. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueueTagsCommand.js +2 -14
  4396. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueuesCommand.js +2 -14
  4397. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/PurgeQueueCommand.js +2 -14
  4398. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -20
  4399. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/RemovePermissionCommand.js +2 -14
  4400. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageBatchCommand.js +2 -18
  4401. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageCommand.js +2 -18
  4402. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SetQueueAttributesCommand.js +2 -14
  4403. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/StartMessageMoveTaskCommand.js +2 -14
  4404. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/TagQueueCommand.js +2 -14
  4405. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/UntagQueueCommand.js +2 -14
  4406. package/node_modules/@aws-sdk/client-sqs/dist-es/index.js +1 -0
  4407. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.browser.js +0 -4
  4408. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +1 -3
  4409. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.native.js +0 -2
  4410. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +3 -0
  4411. package/node_modules/@aws-sdk/client-sqs/dist-types/commandBuilder.d.ts +30 -0
  4412. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/AddPermissionCommand.d.ts +3 -8
  4413. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +3 -8
  4414. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +3 -8
  4415. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +3 -8
  4416. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CreateQueueCommand.d.ts +3 -8
  4417. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageBatchCommand.d.ts +3 -8
  4418. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageCommand.d.ts +3 -8
  4419. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteQueueCommand.d.ts +3 -8
  4420. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueAttributesCommand.d.ts +3 -8
  4421. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueUrlCommand.d.ts +3 -8
  4422. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +3 -8
  4423. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListMessageMoveTasksCommand.d.ts +3 -8
  4424. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueueTagsCommand.d.ts +3 -8
  4425. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueuesCommand.d.ts +3 -8
  4426. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/PurgeQueueCommand.d.ts +3 -8
  4427. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ReceiveMessageCommand.d.ts +3 -8
  4428. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
  4429. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageBatchCommand.d.ts +3 -8
  4430. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageCommand.d.ts +3 -8
  4431. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -8
  4432. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/StartMessageMoveTaskCommand.d.ts +3 -8
  4433. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/TagQueueCommand.d.ts +3 -8
  4434. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/UntagQueueCommand.d.ts +3 -8
  4435. package/node_modules/@aws-sdk/client-sqs/dist-types/index.d.ts +1 -0
  4436. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +3 -3
  4437. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +26 -27
  4438. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +2 -2
  4439. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.shared.d.ts +2 -0
  4440. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commandBuilder.d.ts +64 -0
  4441. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
  4442. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +7 -16
  4443. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +7 -16
  4444. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +7 -16
  4445. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +7 -16
  4446. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +7 -16
  4447. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +7 -16
  4448. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +7 -16
  4449. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +7 -16
  4450. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +7 -16
  4451. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +7 -16
  4452. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +7 -16
  4453. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +7 -16
  4454. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +7 -16
  4455. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +7 -16
  4456. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +7 -16
  4457. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
  4458. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +7 -16
  4459. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
  4460. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +7 -16
  4461. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +7 -16
  4462. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +7 -16
  4463. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +7 -16
  4464. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +1 -0
  4465. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -3
  4466. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +44 -43
  4467. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  4468. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
  4469. package/node_modules/@aws-sdk/client-sqs/package.json +10 -12
  4470. package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
  4471. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9342 -1855
  4472. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +16 -0
  4473. package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
  4474. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
  4475. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
  4476. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
  4477. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
  4478. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
  4479. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
  4480. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
  4481. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
  4482. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
  4483. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
  4484. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
  4485. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
  4486. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
  4487. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
  4488. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
  4489. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
  4490. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
  4491. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
  4492. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
  4493. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
  4494. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
  4495. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
  4496. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
  4497. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
  4498. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
  4499. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
  4500. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
  4501. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
  4502. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
  4503. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
  4504. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
  4505. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
  4506. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
  4507. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
  4508. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
  4509. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
  4510. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
  4511. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
  4512. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
  4513. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
  4514. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
  4515. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
  4516. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
  4517. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
  4518. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
  4519. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
  4520. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
  4521. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
  4522. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
  4523. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
  4524. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
  4525. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
  4526. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
  4527. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
  4528. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
  4529. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
  4530. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
  4531. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
  4532. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
  4533. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
  4534. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
  4535. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
  4536. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
  4537. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
  4538. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
  4539. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
  4540. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
  4541. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
  4542. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
  4543. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
  4544. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
  4545. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
  4546. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
  4547. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
  4548. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
  4549. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
  4550. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
  4551. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
  4552. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
  4553. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
  4554. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
  4555. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
  4556. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
  4557. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
  4558. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
  4559. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
  4560. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
  4561. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
  4562. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
  4563. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
  4564. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
  4565. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
  4566. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
  4567. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
  4568. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
  4569. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
  4570. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
  4571. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
  4572. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
  4573. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
  4574. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
  4575. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
  4576. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
  4577. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
  4578. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
  4579. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
  4580. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
  4581. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
  4582. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
  4583. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
  4584. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
  4585. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
  4586. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  4587. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
  4588. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
  4589. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
  4590. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
  4591. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
  4592. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
  4593. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
  4594. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
  4595. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
  4596. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
  4597. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
  4598. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
  4599. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
  4600. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
  4601. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
  4602. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
  4603. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
  4604. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
  4605. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
  4606. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
  4607. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
  4608. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
  4609. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
  4610. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
  4611. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
  4612. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
  4613. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
  4614. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
  4615. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
  4616. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
  4617. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
  4618. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
  4619. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
  4620. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
  4621. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
  4622. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
  4623. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
  4624. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
  4625. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
  4626. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
  4627. package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
  4628. package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
  4629. package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
  4630. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
  4631. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
  4632. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
  4633. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +0 -2
  4634. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +1 -2
  4635. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
  4636. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +2 -0
  4637. package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
  4638. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +57 -0
  4639. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +8 -2
  4640. package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
  4641. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -9
  4642. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -8
  4643. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -8
  4644. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -8
  4645. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -8
  4646. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -8
  4647. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -8
  4648. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
  4649. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -8
  4650. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -8
  4651. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -8
  4652. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -8
  4653. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -8
  4654. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -8
  4655. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -8
  4656. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -8
  4657. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
  4658. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -8
  4659. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -8
  4660. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -8
  4661. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -8
  4662. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -8
  4663. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -8
  4664. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -8
  4665. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -8
  4666. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -8
  4667. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -8
  4668. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -8
  4669. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
  4670. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -8
  4671. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -8
  4672. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -8
  4673. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -8
  4674. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -8
  4675. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -8
  4676. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -8
  4677. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -8
  4678. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -8
  4679. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -8
  4680. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -8
  4681. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -8
  4682. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -8
  4683. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -8
  4684. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +5 -9
  4685. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -8
  4686. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -8
  4687. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -8
  4688. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -9
  4689. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -8
  4690. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -8
  4691. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -8
  4692. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -8
  4693. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -8
  4694. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -8
  4695. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -8
  4696. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -8
  4697. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -8
  4698. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -8
  4699. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -8
  4700. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -8
  4701. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -8
  4702. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -8
  4703. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -8
  4704. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -8
  4705. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -8
  4706. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -8
  4707. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -8
  4708. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -8
  4709. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
  4710. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -8
  4711. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -8
  4712. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -8
  4713. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -8
  4714. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -8
  4715. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -8
  4716. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -8
  4717. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -8
  4718. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -8
  4719. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -8
  4720. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -8
  4721. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -8
  4722. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -8
  4723. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -8
  4724. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -8
  4725. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -8
  4726. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +17 -8
  4727. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -8
  4728. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +4 -9
  4729. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +17 -8
  4730. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +4 -9
  4731. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +4 -9
  4732. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +4 -9
  4733. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +4 -10
  4734. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -8
  4735. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -8
  4736. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +4 -9
  4737. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
  4738. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -8
  4739. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -8
  4740. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -8
  4741. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -8
  4742. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -8
  4743. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -8
  4744. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -8
  4745. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -8
  4746. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +10 -9
  4747. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -11
  4748. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -8
  4749. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -8
  4750. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -8
  4751. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -8
  4752. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -8
  4753. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -9
  4754. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -8
  4755. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -8
  4756. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -8
  4757. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +17 -8
  4758. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -8
  4759. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -8
  4760. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
  4761. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -8
  4762. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -8
  4763. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -9
  4764. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -8
  4765. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -8
  4766. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -8
  4767. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -8
  4768. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -8
  4769. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -8
  4770. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -8
  4771. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -8
  4772. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -8
  4773. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -8
  4774. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -8
  4775. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -8
  4776. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -8
  4777. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -8
  4778. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -8
  4779. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
  4780. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -8
  4781. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -8
  4782. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -8
  4783. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -8
  4784. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -8
  4785. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -8
  4786. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -8
  4787. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -8
  4788. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -8
  4789. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -8
  4790. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -8
  4791. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -8
  4792. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
  4793. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
  4794. package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
  4795. package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
  4796. package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +61 -47
  4797. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
  4798. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
  4799. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
  4800. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
  4801. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
  4802. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +2 -2
  4803. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +2 -2
  4804. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +2 -2
  4805. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
  4806. package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
  4807. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +117 -0
  4808. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +38 -2
  4809. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  4810. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +7 -16
  4811. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +7 -16
  4812. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +7 -16
  4813. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +7 -16
  4814. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +7 -16
  4815. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +7 -16
  4816. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +7 -16
  4817. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
  4818. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +7 -16
  4819. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +7 -16
  4820. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +7 -16
  4821. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +7 -16
  4822. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +7 -16
  4823. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +7 -16
  4824. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +7 -16
  4825. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +7 -16
  4826. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
  4827. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +7 -16
  4828. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +7 -16
  4829. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +7 -16
  4830. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +7 -16
  4831. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +7 -16
  4832. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +7 -16
  4833. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +7 -16
  4834. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +7 -16
  4835. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +7 -16
  4836. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +7 -16
  4837. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +7 -16
  4838. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
  4839. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +7 -16
  4840. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +7 -16
  4841. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +7 -16
  4842. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +7 -16
  4843. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +7 -16
  4844. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +7 -16
  4845. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +7 -16
  4846. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +7 -16
  4847. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +7 -16
  4848. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +7 -16
  4849. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +7 -16
  4850. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +7 -16
  4851. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +7 -16
  4852. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +7 -16
  4853. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +7 -16
  4854. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +7 -16
  4855. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +7 -16
  4856. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +7 -16
  4857. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +7 -16
  4858. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +7 -16
  4859. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +7 -16
  4860. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +7 -16
  4861. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +7 -16
  4862. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +7 -16
  4863. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +7 -16
  4864. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +7 -16
  4865. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +7 -16
  4866. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +7 -16
  4867. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +7 -16
  4868. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +7 -16
  4869. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +7 -16
  4870. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +7 -16
  4871. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +7 -16
  4872. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +7 -16
  4873. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +7 -16
  4874. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +7 -16
  4875. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +7 -16
  4876. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +7 -16
  4877. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +7 -16
  4878. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
  4879. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +7 -16
  4880. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +7 -16
  4881. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +7 -16
  4882. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +7 -16
  4883. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +7 -16
  4884. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +7 -16
  4885. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +7 -16
  4886. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +7 -16
  4887. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +7 -16
  4888. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +7 -16
  4889. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +7 -16
  4890. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +7 -16
  4891. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +7 -16
  4892. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +7 -16
  4893. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +7 -16
  4894. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +7 -16
  4895. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +7 -16
  4896. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +7 -16
  4897. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +8 -17
  4898. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +7 -16
  4899. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +8 -17
  4900. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +8 -17
  4901. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +8 -17
  4902. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +10 -17
  4903. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +7 -16
  4904. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +7 -16
  4905. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +7 -16
  4906. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
  4907. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +7 -16
  4908. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +7 -16
  4909. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +7 -16
  4910. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +7 -16
  4911. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +7 -16
  4912. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +7 -16
  4913. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +7 -16
  4914. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +7 -16
  4915. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +7 -16
  4916. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +7 -16
  4917. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +7 -16
  4918. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +7 -16
  4919. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +7 -16
  4920. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +7 -16
  4921. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +7 -16
  4922. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  4923. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +7 -16
  4924. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +7 -16
  4925. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +7 -16
  4926. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +7 -16
  4927. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +7 -16
  4928. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +7 -16
  4929. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
  4930. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +7 -16
  4931. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +7 -16
  4932. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +7 -16
  4933. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +7 -16
  4934. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +7 -16
  4935. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +7 -16
  4936. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +7 -16
  4937. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +7 -16
  4938. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +7 -16
  4939. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +7 -16
  4940. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +7 -16
  4941. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +7 -16
  4942. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +7 -16
  4943. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +7 -16
  4944. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +7 -16
  4945. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +7 -16
  4946. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +7 -16
  4947. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +7 -16
  4948. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
  4949. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +7 -16
  4950. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +7 -16
  4951. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +7 -16
  4952. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +7 -16
  4953. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +7 -16
  4954. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +7 -16
  4955. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +7 -16
  4956. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +7 -16
  4957. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +7 -16
  4958. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +7 -16
  4959. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +7 -16
  4960. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +7 -16
  4961. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
  4962. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
  4963. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
  4964. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
  4965. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +26 -20
  4966. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
  4967. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
  4968. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
  4969. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
  4970. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
  4971. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  4972. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  4973. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  4974. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  4975. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
  4976. package/node_modules/@aws-sdk/client-ssm/package.json +8 -10
  4977. package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
  4978. package/node_modules/@aws-sdk/core/client.d.ts +1 -3
  4979. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +55 -141
  4980. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
  4981. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +1 -1
  4982. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +48 -19
  4983. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -1
  4984. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +0 -5
  4985. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
  4986. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
  4987. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
  4988. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
  4989. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
  4990. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +5 -5
  4991. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +5 -5
  4992. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +5 -5
  4993. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +1 -0
  4994. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +5 -1
  4995. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -1
  4996. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -1
  4997. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -1
  4998. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -1
  4999. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -1
  5000. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -1
  5001. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
  5002. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
  5003. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  5004. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
  5005. package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -1
  5006. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
  5007. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -1
  5008. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
  5009. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
  5010. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  5011. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
  5012. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -1
  5013. package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
  5014. package/node_modules/@aws-sdk/core/package.json +11 -18
  5015. package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
  5016. package/node_modules/@aws-sdk/core/util.d.ts +1 -3
  5017. package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
  5018. package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
  5019. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
  5020. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  5021. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +178 -1
  5022. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +16 -10
  5023. package/node_modules/@aws-sdk/credential-provider-http/package.json +8 -10
  5024. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +1 -1
  5025. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
  5026. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
  5027. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
  5028. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
  5029. package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
  5030. package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
  5031. package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
  5032. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
  5033. package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
  5034. package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
  5035. package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
  5036. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
  5037. package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
  5038. package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
  5039. package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
  5040. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
  5041. package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
  5042. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
  5043. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -4
  5044. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
  5045. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
  5046. package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
  5047. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +58 -3
  5048. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
  5049. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
  5050. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
  5051. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -8
  5052. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
  5053. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -18
  5054. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +1 -3
  5055. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +1 -3
  5056. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/index.js +4 -4
  5057. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/index.d.ts +5 -4
  5058. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +26 -4
  5059. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  5060. package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
  5061. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +13 -25
  5062. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +13 -17
  5063. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +12 -15
  5064. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +12 -15
  5065. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +13 -25
  5066. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
  5067. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
  5068. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
  5069. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
  5070. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +0 -2
  5071. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
  5072. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
  5073. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +2 -0
  5074. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
  5075. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
  5076. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
  5077. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +0 -2
  5078. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +1 -2
  5079. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
  5080. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +2 -0
  5081. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
  5082. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
  5083. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
  5084. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +0 -2
  5085. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +1 -2
  5086. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
  5087. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +2 -0
  5088. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
  5089. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
  5090. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
  5091. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +0 -2
  5092. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
  5093. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
  5094. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
  5095. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
  5096. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
  5097. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
  5098. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
  5099. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +0 -2
  5100. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +1 -2
  5101. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
  5102. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +2 -0
  5103. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
  5104. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
  5105. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
  5106. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
  5107. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
  5108. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
  5109. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
  5110. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  5111. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
  5112. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  5113. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
  5114. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -2
  5115. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +2 -2
  5116. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -2
  5117. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  5118. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
  5119. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  5120. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
  5121. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -2
  5122. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +2 -2
  5123. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -2
  5124. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  5125. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
  5126. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  5127. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
  5128. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
  5129. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
  5130. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
  5131. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  5132. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
  5133. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
  5134. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
  5135. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
  5136. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -2
  5137. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +2 -2
  5138. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -2
  5139. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  5140. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
  5141. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
  5142. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
  5143. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
  5144. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +8 -2
  5145. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +8 -2
  5146. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +8 -2
  5147. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  5148. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
  5149. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  5150. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
  5151. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +8 -2
  5152. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +8 -2
  5153. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +8 -2
  5154. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  5155. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
  5156. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  5157. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
  5158. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +8 -2
  5159. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +8 -2
  5160. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +8 -2
  5161. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  5162. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
  5163. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  5164. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
  5165. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +8 -2
  5166. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +8 -2
  5167. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +8 -2
  5168. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  5169. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
  5170. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
  5171. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
  5172. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
  5173. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +8 -2
  5174. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +8 -2
  5175. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +8 -2
  5176. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  5177. package/node_modules/@aws-sdk/nested-clients/package.json +8 -10
  5178. package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
  5179. package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
  5180. package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
  5181. package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
  5182. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
  5183. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
  5184. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
  5185. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
  5186. package/node_modules/@aws-sdk/token-providers/package.json +6 -6
  5187. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
  5188. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
  5189. package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
  5190. package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
  5191. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
  5192. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
  5193. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
  5194. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
  5195. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
  5196. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
  5197. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
  5198. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
  5199. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
  5200. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
  5201. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
  5202. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
  5203. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
  5204. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
  5205. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
  5206. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
  5207. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
  5208. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
  5209. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
  5210. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
  5211. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
  5212. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
  5213. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
  5214. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
  5215. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
  5216. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
  5217. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
  5218. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
  5219. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
  5220. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
  5221. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
  5222. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
  5223. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
  5224. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
  5225. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
  5226. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
  5227. package/node_modules/@aws-sdk/types/package.json +2 -2
  5228. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -3
  5229. package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
  5230. package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
  5231. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
  5232. package/node_modules/@aws-sdk/xml-builder/package.json +3 -4
  5233. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +4 -1
  5234. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +8 -2
  5235. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +4 -1
  5236. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +18 -0
  5237. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +108 -63
  5238. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +11 -8
  5239. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -8
  5240. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +31 -27
  5241. package/node_modules/@smithy/core/dist-es/index.js +5 -5
  5242. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -3
  5243. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -2
  5244. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -3
  5245. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -3
  5246. package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
  5247. package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +4 -1
  5248. package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +4 -1
  5249. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +1 -0
  5250. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
  5251. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +6 -1
  5252. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
  5253. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +3 -0
  5254. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +3 -56
  5255. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +1 -1
  5256. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -1
  5257. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -1
  5258. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -2
  5259. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +11 -11
  5260. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -7
  5261. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -2
  5262. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +5 -3
  5263. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +7 -6
  5264. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -13
  5265. package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
  5266. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +31 -27
  5267. package/node_modules/@smithy/core/dist-types/index.d.ts +7 -5
  5268. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -3
  5269. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -2
  5270. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -3
  5271. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -3
  5272. package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
  5273. package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +5 -0
  5274. package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +5 -0
  5275. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +1 -0
  5276. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
  5277. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +5 -6
  5278. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +1 -1
  5279. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
  5280. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +12 -0
  5281. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +6 -6
  5282. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +6 -6
  5283. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +3 -4
  5284. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +1 -2
  5285. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +1 -2
  5286. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +1 -1
  5287. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -2
  5288. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +12 -11
  5289. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -7
  5290. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -2
  5291. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -13
  5292. package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
  5293. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +22 -14
  5294. package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +2 -2
  5295. package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +2 -1
  5296. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +14 -0
  5297. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  5298. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  5299. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
  5300. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
  5301. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
  5302. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  5303. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  5304. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
  5305. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
  5306. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  5307. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  5308. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  5309. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  5310. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  5311. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
  5312. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
  5313. package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
  5314. package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
  5315. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
  5316. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
  5317. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
  5318. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +22 -0
  5319. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +13 -0
  5320. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
  5321. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +25 -0
  5322. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
  5323. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
  5324. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
  5325. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
  5326. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
  5327. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
  5328. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
  5329. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
  5330. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
  5331. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
  5332. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.browser.d.ts +11 -0
  5333. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.d.ts +11 -0
  5334. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.native.d.ts +11 -0
  5335. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Js.d.ts +19 -0
  5336. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Node.d.ts +17 -0
  5337. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
  5338. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
  5339. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
  5340. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/index.d.ts +27 -0
  5341. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidFunction.d.ts +4 -0
  5342. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidProvider.d.ts +5 -0
  5343. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/MiddlewareStack.d.ts +5 -0
  5344. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/types.d.ts +22 -0
  5345. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/NoOpLogger.d.ts +11 -0
  5346. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
  5347. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client.d.ts +84 -0
  5348. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/command.d.ts +118 -0
  5349. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/constants.d.ts +4 -0
  5350. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
  5351. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
  5352. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/defaults-mode.d.ts +28 -0
  5353. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
  5354. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/exceptions.d.ts +42 -0
  5355. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
  5356. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
  5357. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/retry.d.ts +18 -0
  5358. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
  5359. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
  5360. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/is-serializable-header-value.d.ts +5 -0
  5361. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/object-mapping.d.ts +179 -0
  5362. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/schemaLogFilter.d.ts +9 -0
  5363. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/ser-utils.d.ts +14 -0
  5364. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/serde-json.d.ts +10 -0
  5365. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
  5366. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/createWaiter.d.ts +11 -0
  5367. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/poller.d.ts +11 -0
  5368. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
  5369. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/validate.d.ts +8 -0
  5370. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/waiter.d.ts +49 -0
  5371. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
  5372. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
  5373. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
  5374. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
  5375. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  5376. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/checkRegion.d.ts +9 -0
  5377. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
  5378. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
  5379. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getRealRegion.d.ts +4 -0
  5380. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/isFipsRegion.d.ts +4 -0
  5381. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/resolveRegionConfig.d.ts +34 -0
  5382. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariant.d.ts +11 -0
  5383. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariantTag.d.ts +10 -0
  5384. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/PartitionHash.d.ts +15 -0
  5385. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/RegionHash.d.ts +13 -0
  5386. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.d.ts +14 -0
  5387. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getRegionInfo.d.ts +19 -0
  5388. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedHostname.d.ts +13 -0
  5389. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedPartition.d.ts +13 -0
  5390. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.d.ts +14 -0
  5391. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/constants.d.ts +36 -0
  5392. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
  5393. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
  5394. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
  5395. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
  5396. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.browser.d.ts +55 -0
  5397. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.d.ts +36 -0
  5398. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.native.d.ts +55 -0
  5399. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/configLoader.d.ts +31 -0
  5400. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromEnv.d.ts +20 -0
  5401. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
  5402. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromStatic.d.ts +9 -0
  5403. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/getSelectorName.d.ts +9 -0
  5404. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
  5405. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/ProviderError.d.ts +38 -0
  5406. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
  5407. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/chain.d.ts +12 -0
  5408. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/fromValue.d.ts +5 -0
  5409. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/memoize.d.ts +40 -0
  5410. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/constants.d.ts +4 -0
  5411. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/externalDataInterceptor.d.ts +9 -0
  5412. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
  5413. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigFilepath.d.ts +2 -0
  5414. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getCredentialsFilepath.d.ts +2 -0
  5415. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getHomeDir.d.ts +6 -0
  5416. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getProfileName.d.ts +15 -0
  5417. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.d.ts +5 -0
  5418. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
  5419. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
  5420. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.d.ts +33 -0
  5421. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSsoSessionData.d.ts +17 -0
  5422. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/mergeConfigFiles.d.ts +7 -0
  5423. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
  5424. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
  5425. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/readFile.d.ts +21 -0
  5426. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/types.d.ts +16 -0
  5427. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/booleanSelector.d.ts +10 -0
  5428. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/numberSelector.d.ts +9 -0
  5429. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/types.d.ts +4 -0
  5430. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.browser.d.ts +24 -0
  5431. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +24 -0
  5432. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.d.ts +14 -0
  5433. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  5434. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.d.ts +4 -0
  5435. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
  5436. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
  5437. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
  5438. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
  5439. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
  5440. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
  5441. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.d.ts +32 -0
  5442. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
  5443. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/s3.d.ts +26 -0
  5444. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +41 -0
  5445. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
  5446. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/debugId.d.ts +1 -0
  5447. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
  5448. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/toDebugString.d.ts +9 -0
  5449. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
  5450. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
  5451. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/booleanEquals.d.ts +5 -0
  5452. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
  5453. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttr.d.ts +7 -0
  5454. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttrPathList.d.ts +4 -0
  5455. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
  5456. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isIpAddress.d.ts +4 -0
  5457. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isSet.d.ts +5 -0
  5458. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
  5459. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/not.d.ts +5 -0
  5460. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
  5461. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
  5462. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/stringEquals.d.ts +5 -0
  5463. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/substring.d.ts +7 -0
  5464. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/uriEncode.d.ts +4 -0
  5465. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
  5466. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointError.d.ts +3 -0
  5467. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointFunctions.d.ts +2 -0
  5468. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointRuleObject.d.ts +5 -0
  5469. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/ErrorRuleObject.d.ts +2 -0
  5470. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/RuleSetObject.d.ts +4 -0
  5471. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/TreeRuleObject.d.ts +3 -0
  5472. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
  5473. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
  5474. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/callFunction.d.ts +1 -0
  5475. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.d.ts +4 -0
  5476. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
  5477. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
  5478. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
  5479. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.d.ts +3 -0
  5480. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
  5481. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
  5482. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
  5483. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTemplate.d.ts +2 -0
  5484. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTreeRule.d.ts +1 -0
  5485. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
  5486. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
  5487. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperty.d.ts +1 -0
  5488. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
  5489. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
  5490. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
  5491. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
  5492. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
  5493. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/HeaderMarshaller.d.ts +12 -0
  5494. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Int64.d.ts +20 -0
  5495. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Message.d.ts +26 -0
  5496. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageDecoderStream.d.ts +17 -0
  5497. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageEncoderStream.d.ts +18 -0
  5498. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.d.ts +17 -0
  5499. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.d.ts +17 -0
  5500. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/splitMessage.d.ts +11 -0
  5501. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
  5502. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
  5503. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
  5504. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.d.ts +27 -0
  5505. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
  5506. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getChunkedStream.d.ts +4 -0
  5507. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
  5508. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.browser.d.ts +23 -0
  5509. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +23 -0
  5510. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
  5511. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +95 -0
  5512. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +16 -0
  5513. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
  5514. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
  5515. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
  5516. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +27 -0
  5517. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts +6 -0
  5518. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Field.d.ts +49 -0
  5519. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Fields.d.ts +44 -0
  5520. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
  5521. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
  5522. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/types.d.ts +21 -0
  5523. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/querystring-builder/buildQueryString.d.ts +5 -0
  5524. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +52 -0
  5525. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
  5526. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
  5527. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
  5528. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
  5529. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
  5530. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
  5531. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri-path.d.ts +4 -0
  5532. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri.d.ts +4 -0
  5533. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.browser.d.ts +26 -0
  5534. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.d.ts +20 -0
  5535. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/configurations.d.ts +71 -0
  5536. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  5537. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  5538. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/longPollMiddleware.d.ts +15 -0
  5539. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.d.ts +15 -0
  5540. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/parseRetryAfterHeader.d.ts +10 -0
  5541. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
  5542. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +33 -0
  5543. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +26 -0
  5544. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.d.ts +6 -0
  5545. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.d.ts +6 -0
  5546. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/types.d.ts +65 -0
  5547. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
  5548. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/util.d.ts +2 -0
  5549. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/constants.d.ts +30 -0
  5550. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
  5551. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
  5552. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
  5553. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRateLimiter.d.ts +119 -0
  5554. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryBackoffStrategy.d.ts +12 -0
  5555. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
  5556. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
  5557. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/config.d.ts +20 -0
  5558. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/constants.d.ts +60 -0
  5559. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
  5560. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/types.d.ts +19 -0
  5561. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +71 -0
  5562. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
  5563. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
  5564. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
  5565. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
  5566. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
  5567. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
  5568. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
  5569. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
  5570. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
  5571. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +146 -0
  5572. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
  5573. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
  5574. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
  5575. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
  5576. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
  5577. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
  5578. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +13 -0
  5579. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/concatBytes.d.ts +6 -0
  5580. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
  5581. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +61 -0
  5582. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/hash-node/hash-node.d.ts +13 -0
  5583. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.browser.d.ts +41 -0
  5584. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +39 -0
  5585. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.native.d.ts +39 -0
  5586. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +43 -0
  5587. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/deserializerMiddleware.d.ts +6 -0
  5588. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serdePlugin.d.ts +24 -0
  5589. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serializerMiddleware.d.ts +6 -0
  5590. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +250 -0
  5591. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
  5592. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +38 -0
  5593. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +10 -0
  5594. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
  5595. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/constants-for-browser.d.ts +5 -0
  5596. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.browser.d.ts +8 -0
  5597. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.d.ts +7 -0
  5598. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.browser.d.ts +9 -0
  5599. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.d.ts +8 -0
  5600. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts +4 -0
  5601. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.d.ts +4 -0
  5602. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
  5603. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-hex-encoding/hex-encoding.d.ts +12 -0
  5604. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/ByteArrayCollector.d.ts +13 -0
  5605. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
  5606. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.browser.d.ts +37 -0
  5607. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
  5608. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
  5609. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
  5610. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +55 -0
  5611. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
  5612. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.d.ts +5 -0
  5613. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
  5614. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.browser.d.ts +7 -0
  5615. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.d.ts +9 -0
  5616. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.browser.d.ts +7 -0
  5617. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
  5618. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.browser.d.ts +8 -0
  5619. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.d.ts +17 -0
  5620. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
  5621. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.d.ts +6 -0
  5622. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-type-check.d.ts +17 -0
  5623. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
  5624. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/uuid/v4.d.ts +24 -0
  5625. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
  5626. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/getSmithyContext.d.ts +5 -0
  5627. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpRequest.d.ts +52 -0
  5628. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpResponse.d.ts +29 -0
  5629. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/index.d.ts +10 -0
  5630. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostLabel.d.ts +7 -0
  5631. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostname.d.ts +1 -0
  5632. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/normalizeProvider.d.ts +7 -0
  5633. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseQueryString.d.ts +5 -0
  5634. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseUrl.d.ts +5 -0
  5635. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/toEndpointV1.d.ts +6 -0
  5636. package/node_modules/@smithy/core/package.json +2 -3
  5637. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
  5638. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
  5639. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
  5640. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
  5641. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
  5642. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
  5643. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
  5644. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
  5645. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
  5646. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +26 -0
  5647. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
  5648. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
  5649. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +5 -0
  5650. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/node-http.d.ts +2 -0
  5651. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
  5652. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
  5653. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
  5654. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
  5655. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +15 -0
  5656. package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
  5657. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +1 -1
  5658. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +7 -0
  5659. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +38 -0
  5660. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  5661. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  5662. package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
  5663. package/node_modules/@smithy/middleware-compression/dist-es/index.js +5 -6
  5664. package/node_modules/@smithy/middleware-compression/dist-types/index.d.ts +7 -6
  5665. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.d.ts +17 -0
  5666. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.d.ts +17 -0
  5667. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.browser.d.ts +1 -0
  5668. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.d.ts +2 -0
  5669. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.browser.d.ts +1 -0
  5670. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.d.ts +1 -0
  5671. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressionMiddleware.d.ts +21 -0
  5672. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/configurations.d.ts +37 -0
  5673. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/constants.d.ts +7 -0
  5674. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/getCompressionPlugin.d.ts +7 -0
  5675. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/index.d.ts +7 -0
  5676. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/isStreaming.d.ts +4 -0
  5677. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/resolveCompressionConfig.d.ts +5 -0
  5678. package/node_modules/@smithy/middleware-compression/package.json +3 -3
  5679. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +1 -1
  5680. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +10 -0
  5681. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  5682. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  5683. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/http2/ClientHttp2SessionRef.d.ts +46 -0
  5684. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  5685. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +47 -0
  5686. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +46 -0
  5687. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +36 -0
  5688. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +76 -0
  5689. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2.d.ts +2 -0
  5690. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-https.d.ts +2 -0
  5691. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  5692. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
  5693. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  5694. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  5695. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +9 -0
  5696. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  5697. package/node_modules/@smithy/node-http-handler/package.json +4 -4
  5698. package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
  5699. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +5 -4
  5700. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +25 -0
  5701. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +20 -0
  5702. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
  5703. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
  5704. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
  5705. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
  5706. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
  5707. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
  5708. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
  5709. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +12 -0
  5710. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
  5711. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
  5712. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +23 -0
  5713. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
  5714. package/node_modules/@smithy/signature-v4/package.json +3 -4
  5715. package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
  5716. package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
  5717. package/node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js +1 -0
  5718. package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
  5719. package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
  5720. package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
  5721. package/node_modules/@smithy/types/dist-es/index.js +7 -43
  5722. package/node_modules/@smithy/types/dist-es/metrics.js +1 -0
  5723. package/node_modules/@smithy/types/dist-types/abort.d.ts +1 -1
  5724. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
  5725. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
  5726. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
  5727. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
  5728. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
  5729. package/node_modules/@smithy/types/dist-types/index.d.ts +52 -43
  5730. package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
  5731. package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
  5732. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +45 -0
  5733. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  5734. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  5735. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  5736. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  5737. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  5738. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +59 -0
  5739. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +7 -0
  5740. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +37 -0
  5741. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +61 -0
  5742. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
  5743. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
  5744. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +15 -0
  5745. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  5746. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
  5747. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
  5748. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +58 -0
  5749. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +40 -0
  5750. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
  5751. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  5752. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointParameterInstructions.d.ts +41 -0
  5753. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
  5754. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
  5755. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
  5756. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
  5757. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  5758. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
  5759. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
  5760. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
  5761. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +32 -0
  5762. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  5763. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +6 -0
  5764. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  5765. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  5766. package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
  5767. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
  5768. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +110 -0
  5769. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  5770. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
  5771. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  5772. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  5773. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  5774. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +52 -0
  5775. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  5776. package/node_modules/@smithy/types/dist-types/ts3.4/metrics.d.ts +93 -0
  5777. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +541 -0
  5778. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
  5779. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  5780. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  5781. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +162 -0
  5782. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
  5783. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
  5784. package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
  5785. package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
  5786. package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
  5787. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
  5788. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +79 -0
  5789. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +172 -0
  5790. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  5791. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +28 -0
  5792. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +54 -0
  5793. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +41 -0
  5794. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +42 -0
  5795. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  5796. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +77 -0
  5797. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  5798. package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
  5799. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
  5800. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +40 -0
  5801. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  5802. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  5803. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  5804. package/node_modules/@smithy/types/package.json +2 -2
  5805. package/package.json +10 -10
  5806. package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
  5807. package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
  5808. package/node_modules/@aws-crypto/crc32/README.md +0 -16
  5809. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
  5810. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
  5811. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
  5812. package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
  5813. package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
  5814. package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
  5815. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
  5816. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
  5817. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
  5818. package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
  5819. package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
  5820. package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
  5821. package/node_modules/@aws-crypto/crc32/package.json +0 -32
  5822. package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
  5823. package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
  5824. package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
  5825. package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
  5826. package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
  5827. package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
  5828. package/node_modules/@aws-crypto/crc32c/README.md +0 -16
  5829. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
  5830. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
  5831. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
  5832. package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
  5833. package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
  5834. package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
  5835. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
  5836. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
  5837. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
  5838. package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
  5839. package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
  5840. package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
  5841. package/node_modules/@aws-crypto/crc32c/package.json +0 -32
  5842. package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
  5843. package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
  5844. package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
  5845. package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
  5846. package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
  5847. package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
  5848. package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
  5849. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
  5850. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
  5851. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
  5852. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
  5853. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
  5854. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
  5855. package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
  5856. package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
  5857. package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
  5858. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
  5859. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
  5860. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
  5861. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
  5862. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
  5863. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
  5864. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
  5865. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
  5866. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
  5867. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
  5868. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
  5869. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
  5870. package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
  5871. package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
  5872. package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
  5873. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
  5874. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
  5875. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
  5876. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
  5877. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
  5878. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
  5879. package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
  5880. package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
  5881. package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
  5882. package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
  5883. package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
  5884. package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
  5885. package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
  5886. package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
  5887. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
  5888. package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
  5889. package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
  5890. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
  5891. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
  5892. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
  5893. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
  5894. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
  5895. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
  5896. package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
  5897. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
  5898. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
  5899. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
  5900. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
  5901. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
  5902. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
  5903. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
  5904. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
  5905. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
  5906. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
  5907. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
  5908. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
  5909. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
  5910. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
  5911. package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
  5912. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
  5913. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
  5914. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
  5915. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
  5916. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
  5917. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
  5918. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
  5919. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
  5920. package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
  5921. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
  5922. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
  5923. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
  5924. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
  5925. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
  5926. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
  5927. package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
  5928. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
  5929. package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
  5930. package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
  5931. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
  5932. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
  5933. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
  5934. package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
  5935. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
  5936. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
  5937. package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
  5938. package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
  5939. package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
  5940. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
  5941. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
  5942. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
  5943. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
  5944. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
  5945. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
  5946. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
  5947. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
  5948. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
  5949. package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
  5950. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
  5951. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
  5952. package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
  5953. package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
  5954. package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
  5955. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
  5956. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
  5957. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
  5958. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
  5959. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
  5960. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
  5961. package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
  5962. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
  5963. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
  5964. package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
  5965. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
  5966. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
  5967. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
  5968. package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
  5969. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
  5970. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
  5971. package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
  5972. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
  5973. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
  5974. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
  5975. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
  5976. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
  5977. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
  5978. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
  5979. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
  5980. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
  5981. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
  5982. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
  5983. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
  5984. package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
  5985. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
  5986. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
  5987. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
  5988. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
  5989. package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
  5990. package/node_modules/@aws-crypto/util/LICENSE +0 -201
  5991. package/node_modules/@aws-crypto/util/README.md +0 -16
  5992. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
  5993. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
  5994. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
  5995. package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
  5996. package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
  5997. package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
  5998. package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
  5999. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
  6000. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
  6001. package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
  6002. package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
  6003. package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
  6004. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
  6005. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
  6006. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
  6007. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
  6008. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
  6009. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
  6010. package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
  6011. package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
  6012. package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
  6013. package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
  6014. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
  6015. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
  6016. package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
  6017. package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
  6018. package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
  6019. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
  6020. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
  6021. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
  6022. package/node_modules/@aws-crypto/util/package.json +0 -32
  6023. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
  6024. package/node_modules/@aws-crypto/util/src/index.ts +0 -7
  6025. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
  6026. package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
  6027. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
  6028. package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
  6029. package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
  6030. package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
  6031. package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
  6032. package/node_modules/@aws-sdk/checksums/dist-es/crc64-nvme/Crc64Nvme.js +0 -92
  6033. package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
  6034. package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
  6035. package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/selectChecksumAlgorithmFunction.js +0 -33
  6036. package/node_modules/@aws-sdk/checksums/dist-types/crc64-nvme/Crc64Nvme.d.ts +0 -24
  6037. package/node_modules/@aws-sdk/checksums/dist-types/crc64-nvme/crc64-nvme-crt-container.d.ts +0 -13
  6038. package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
  6039. package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
  6040. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/crc64-nvme/Crc64Nvme.d.ts +0 -9
  6041. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
  6042. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
  6043. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6044. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +0 -49
  6045. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +0 -14
  6046. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +0 -8
  6047. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +0 -407
  6048. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +0 -32
  6049. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +0 -45
  6050. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +0 -12
  6051. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +0 -39
  6052. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +0 -3022
  6053. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6054. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +0 -49
  6055. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +0 -14
  6056. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +0 -8
  6057. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +0 -227
  6058. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +0 -35
  6059. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +0 -48
  6060. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +0 -12
  6061. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +0 -40
  6062. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +0 -1600
  6063. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6064. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +0 -49
  6065. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +0 -14
  6066. package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +0 -8
  6067. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +0 -32
  6068. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +0 -45
  6069. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +0 -12
  6070. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +0 -39
  6071. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +0 -33485
  6072. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6073. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +0 -82
  6074. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +0 -14
  6075. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +0 -8
  6076. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +0 -431
  6077. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +0 -32
  6078. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +0 -45
  6079. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +0 -12
  6080. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +0 -39
  6081. package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +0 -3676
  6082. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6083. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +0 -46
  6084. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +0 -14
  6085. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +0 -8
  6086. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +0 -865
  6087. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +0 -34
  6088. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +0 -47
  6089. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +0 -12
  6090. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +0 -38
  6091. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +0 -3086
  6092. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -122
  6093. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +0 -758
  6094. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -29
  6095. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -8
  6096. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -257
  6097. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -39
  6098. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -58
  6099. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -12
  6100. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -50
  6101. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3789
  6102. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6103. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +0 -52
  6104. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +0 -14
  6105. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +0 -8
  6106. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +0 -415
  6107. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +0 -32
  6108. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +0 -45
  6109. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +0 -12
  6110. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +0 -39
  6111. package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +0 -1179
  6112. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6113. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +0 -49
  6114. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +0 -14
  6115. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +0 -8
  6116. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +0 -337
  6117. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +0 -34
  6118. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +0 -46
  6119. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +0 -12
  6120. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +0 -39
  6121. package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +0 -836
  6122. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  6123. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +0 -49
  6124. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -14
  6125. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -8
  6126. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -1915
  6127. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -32
  6128. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -45
  6129. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -12
  6130. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -39
  6131. package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -6200
  6132. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +0 -869
  6133. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +0 -862
  6134. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getNodeModulesParentDirs.js +0 -15
  6135. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.js +0 -14
  6136. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.js +0 -9
  6137. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.js +0 -75
  6138. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -10
  6139. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -8
  6140. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -8
  6141. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -6
  6142. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -1
  6143. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -3
  6144. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -3
  6145. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -4
  6146. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -42
  6147. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -27
  6148. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -71
  6149. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -49
  6150. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -13
  6151. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -2
  6152. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -29
  6153. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -25
  6154. package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
  6155. package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
  6156. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -18
  6157. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
  6158. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -2
  6159. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -42
  6160. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +0 -1026
  6161. package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
  6162. package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
  6163. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -12
  6164. package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
  6165. package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
  6166. package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
  6167. package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
  6168. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +0 -57
  6169. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -234
  6170. package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  6171. package/node_modules/@smithy/is-array-buffer/README.md +0 -10
  6172. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  6173. package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  6174. package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  6175. package/node_modules/@smithy/is-array-buffer/package.json +0 -60
  6176. package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  6177. package/node_modules/@smithy/util-buffer-from/README.md +0 -10
  6178. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  6179. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  6180. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  6181. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  6182. package/node_modules/@smithy/util-buffer-from/package.json +0 -61
  6183. package/node_modules/@smithy/util-utf8/LICENSE +0 -201
  6184. package/node_modules/@smithy/util-utf8/README.md +0 -4
  6185. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  6186. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  6187. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  6188. package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  6189. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  6190. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  6191. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  6192. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  6193. package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  6194. package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  6195. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  6196. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  6197. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  6198. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  6199. package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  6200. package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  6201. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  6202. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  6203. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  6204. package/node_modules/@smithy/util-utf8/package.json +0 -66
  6205. /package/node_modules/@aws-sdk/checksums/dist-es/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
  6206. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
  6207. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
  6208. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/configuration.js +0 -0
  6209. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/constants.js +0 -0
  6210. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
  6211. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
  6212. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
  6213. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksum.js +0 -0
  6214. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
  6215. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
  6216. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
  6217. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
  6218. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeader.js +0 -0
  6219. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
  6220. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
  6221. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isStreaming.js +0 -0
  6222. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
  6223. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringHasher.js +0 -0
  6224. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.js +0 -0
  6225. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/types.js +0 -0
  6226. /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.js +0 -0
  6227. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  6228. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  6229. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
  6230. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
  6231. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  6232. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  6233. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  6234. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
  6235. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  6236. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  6237. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  6238. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  6239. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
  6240. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  6241. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  6242. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
  6243. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  6244. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  6245. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
  6246. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  6247. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
  6248. /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  6249. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
  6250. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  6251. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  6252. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
  6253. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
  6254. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  6255. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  6256. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  6257. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
  6258. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  6259. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  6260. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  6261. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  6262. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
  6263. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  6264. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  6265. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
  6266. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  6267. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  6268. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
  6269. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  6270. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
  6271. /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  6272. /package/node_modules/{@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/types.js → @aws-sdk/client-ec2/dist-es/models/models_8.js} +0 -0
  6273. /package/node_modules/@smithy/{is-array-buffer/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
  6274. /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
  6275. /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
  6276. /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
  6277. /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
  6278. /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
  6279. /package/node_modules/@smithy/{core/dist-types/submodules/endpoints/middleware-endpoint/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
@@ -1,6 +1,8 @@
1
1
  import type { ActionsSuppressedBy, AlarmMuteRuleStatus, AlarmType, AnomalyDetectorStateValue, AnomalyDetectorType, ComparisonOperator, EvaluationState, HistoryItemType, MetricStreamOutputFormat, OTelEnrichmentStatus, RecentlyActive, ScanBy, StandardUnit, StateValue, Statistic, StatusCode } from "./enums";
2
2
  /**
3
- * <p>Represents an individual contributor to a multi-timeseries alarm, containing information about a specific time series and its contribution to the alarm's state.</p>
3
+ * <p>Represents an individual contributor to a multi-timeseries alarm, containing
4
+ * information about a specific time series and its contribution to the alarm's
5
+ * state.</p>
4
6
  * @public
5
7
  */
6
8
  export interface AlarmContributor {
@@ -10,12 +12,14 @@ export interface AlarmContributor {
10
12
  */
11
13
  ContributorId: string | undefined;
12
14
  /**
13
- * <p>A map of attributes that describe the contributor, such as metric dimensions and other identifying characteristics.</p>
15
+ * <p>A map of attributes that describe the contributor, such as metric dimensions and other
16
+ * identifying characteristics.</p>
14
17
  * @public
15
18
  */
16
19
  ContributorAttributes: Record<string, string> | undefined;
17
20
  /**
18
- * <p>An explanation for the contributor's current state, providing context about why it is in its current condition.</p>
21
+ * <p>An explanation for the contributor's current state, providing context about why it is
22
+ * in its current condition.</p>
19
23
  * @public
20
24
  */
21
25
  StateReason: string | undefined;
@@ -36,7 +40,8 @@ export interface AlarmHistoryItem {
36
40
  */
37
41
  AlarmName?: string | undefined;
38
42
  /**
39
- * <p>The unique identifier of the alarm contributor associated with this history item, if applicable.</p>
43
+ * <p>The unique identifier of the alarm contributor associated with this history item, if
44
+ * applicable.</p>
40
45
  * @public
41
46
  */
42
47
  AlarmContributorId?: string | undefined;
@@ -66,13 +71,16 @@ export interface AlarmHistoryItem {
66
71
  */
67
72
  HistoryData?: string | undefined;
68
73
  /**
69
- * <p>A map of attributes that describe the alarm contributor associated with this history item, providing context about the contributor's characteristics at the time of the event.</p>
74
+ * <p>A map of attributes that describe the alarm contributor associated with this history
75
+ * item, providing context about the contributor's characteristics at the time of the
76
+ * event.</p>
70
77
  * @public
71
78
  */
72
79
  AlarmContributorAttributes?: Record<string, string> | undefined;
73
80
  }
74
81
  /**
75
- * <p>Summary information about an alarm mute rule, including its name, status, and configuration details.</p>
82
+ * <p>Summary information about an alarm mute rule, including its name, status, and
83
+ * configuration details.</p>
76
84
  * @public
77
85
  */
78
86
  export interface AlarmMuteRuleSummary {
@@ -82,17 +90,20 @@ export interface AlarmMuteRuleSummary {
82
90
  */
83
91
  AlarmMuteRuleArn?: string | undefined;
84
92
  /**
85
- * <p>The date and time when the mute rule expires and is no longer evaluated. This field is only present if an expiration date was configured.</p>
93
+ * <p>The date and time when the mute rule expires and is no longer evaluated. This field
94
+ * is only present if an expiration date was configured.</p>
86
95
  * @public
87
96
  */
88
97
  ExpireDate?: Date | undefined;
89
98
  /**
90
- * <p>The current status of the alarm mute rule. Valid values are <code>SCHEDULED</code>, <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
99
+ * <p>The current status of the alarm mute rule. Valid values are <code>SCHEDULED</code>,
100
+ * <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
91
101
  * @public
92
102
  */
93
103
  Status?: AlarmMuteRuleStatus | undefined;
94
104
  /**
95
- * <p>Indicates whether the mute rule is one-time or recurring. Valid values are <code>ONE_TIME</code> or <code>RECURRING</code>.</p>
105
+ * <p>Indicates whether the mute rule is one-time or recurring. Valid values are
106
+ * <code>ONE_TIME</code> or <code>RECURRING</code>.</p>
96
107
  * @public
97
108
  */
98
109
  MuteType?: string | undefined;
@@ -136,7 +147,7 @@ export interface AlarmPromQLCriteria {
136
147
  export interface Range {
137
148
  /**
138
149
  * <p>The start time of the range to exclude. The format is
139
- * <code>yyyy-MM-dd'T'HH:mm:ss</code>. For example,
150
+ * <code>yyyy-MM-dd'T'HH:mm:ss</code>. For example,
140
151
  * <code>2019-07-01T23:59:59</code>.</p>
141
152
  * @public
142
153
  */
@@ -186,7 +197,7 @@ export interface Dimension {
186
197
  /**
187
198
  * <p>The name of the dimension. Dimension names must contain only ASCII characters, must
188
199
  * include at least one non-whitespace character, and cannot start with a colon
189
- * (<code>:</code>). ASCII control characters are not supported as part of dimension
200
+ * (<code>:</code>). ASCII control characters are not supported as part of dimension
190
201
  * names.</p>
191
202
  * @public
192
203
  */
@@ -252,7 +263,7 @@ export interface MetricStat {
252
263
  * of 60. For high-resolution metrics that are collected at intervals of less than one
253
264
  * minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
254
265
  * metrics are those metrics stored by a <code>PutMetricData</code> call that includes a
255
- * <code>StorageResolution</code> of 1 second.</p>
266
+ * <code>StorageResolution</code> of 1 second.</p>
256
267
  * <p>If the <code>StartTime</code> parameter specifies a time stamp that is greater than
257
268
  * 3 hours ago, you must specify the period as follows or no data points in that time range
258
269
  * is returned:</p>
@@ -294,29 +305,29 @@ export interface MetricStat {
294
305
  }
295
306
  /**
296
307
  * <p>This structure is used in both <code>GetMetricData</code> and
297
- * <code>PutMetricAlarm</code>. The supported use of this structure is different for
308
+ * <code>PutMetricAlarm</code>. The supported use of this structure is different for
298
309
  * those two operations.</p>
299
310
  * <p>When used in <code>GetMetricData</code>, it indicates the metric data to return, and
300
311
  * whether this call is just retrieving a batch set of data for one metric, or is
301
312
  * performing a Metrics Insights query or a math expression. A single
302
- * <code>GetMetricData</code> call can include up to 500 <code>MetricDataQuery</code>
313
+ * <code>GetMetricData</code> call can include up to 500 <code>MetricDataQuery</code>
303
314
  * structures.</p>
304
315
  * <p>When used in <code>PutMetricAlarm</code>, it enables you to create an alarm based on a
305
316
  * metric math expression. Each <code>MetricDataQuery</code> in the array specifies either
306
317
  * a metric to retrieve, or a math expression to be performed on retrieved metrics. A
307
318
  * single <code>PutMetricAlarm</code> call can include up to 20
308
- * <code>MetricDataQuery</code> structures in the array. The 20 structures can include
319
+ * <code>MetricDataQuery</code> structures in the array. The 20 structures can include
309
320
  * as many as 10 structures that contain a <code>MetricStat</code> parameter to retrieve a
310
321
  * metric, and as many as 10 structures that contain the <code>Expression</code> parameter
311
322
  * to perform a math expression. Of those <code>Expression</code> structures, one must have
312
- * <code>true</code> as the value for <code>ReturnData</code>. The result of this
323
+ * <code>true</code> as the value for <code>ReturnData</code>. The result of this
313
324
  * expression is the value the alarm watches.</p>
314
325
  * <p>Any expression used in a <code>PutMetricAlarm</code> operation must return a single
315
326
  * time series. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/using-metric-math.html#metric-math-syntax">Metric Math Syntax and Functions</a> in the <i>Amazon CloudWatch User
316
- * Guide</i>.</p>
327
+ * Guide</i>.</p>
317
328
  * <p>Some of the parameters of this structure also have different uses whether you are
318
329
  * using this structure in a <code>GetMetricData</code> operation or a
319
- * <code>PutMetricAlarm</code> operation. These differences are explained in the
330
+ * <code>PutMetricAlarm</code> operation. These differences are explained in the
320
331
  * following parameter list.</p>
321
332
  * @public
322
333
  */
@@ -335,7 +346,7 @@ export interface MetricDataQuery {
335
346
  * parameter only if this object is retrieving a metric and not performing a math
336
347
  * expression on returned data.</p>
337
348
  * <p>Within one MetricDataQuery object, you must specify either <code>Expression</code> or
338
- * <code>MetricStat</code> but not both.</p>
349
+ * <code>MetricStat</code> but not both.</p>
339
350
  * @public
340
351
  */
341
352
  MetricStat?: MetricStat | undefined;
@@ -343,14 +354,14 @@ export interface MetricDataQuery {
343
354
  * <p>This field can contain either a Metrics Insights query, or a metric math expression to
344
355
  * be performed on the returned data. For more information about Metrics Insights queries,
345
356
  * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch-metrics-insights-querylanguage">Metrics Insights query components and syntax</a> in the <i>Amazon
346
- * CloudWatch User Guide</i>.</p>
357
+ * CloudWatch User Guide</i>.</p>
347
358
  * <p>A math expression can use the <code>Id</code> of the other metrics or queries to refer
348
359
  * to those metrics, and can also use the <code>Id</code> of other expressions to use the
349
360
  * result of those expressions. For more information about metric math expressions, see
350
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/using-metric-math.html#metric-math-syntax">Metric Math Syntax and Functions</a> in the <i>Amazon CloudWatch User
351
- * Guide</i>.</p>
361
+ * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/using-metric-math.html#metric-math-syntax">Metric Math Syntax and Functions</a> in the <i>Amazon CloudWatch User
362
+ * Guide</i>.</p>
352
363
  * <p>Within each MetricDataQuery object, you must specify either <code>Expression</code> or
353
- * <code>MetricStat</code> but not both.</p>
364
+ * <code>MetricStat</code> but not both.</p>
354
365
  * @public
355
366
  */
356
367
  Expression?: string | undefined;
@@ -369,11 +380,11 @@ export interface MetricDataQuery {
369
380
  * <p>When used in <code>GetMetricData</code>, this option indicates whether to return the
370
381
  * timestamps and raw data values of this metric. If you are performing this call just to
371
382
  * do math expressions and do not also need the raw data returned, you can specify
372
- * <code>false</code>. If you omit this, the default of <code>true</code> is
383
+ * <code>false</code>. If you omit this, the default of <code>true</code> is
373
384
  * used.</p>
374
385
  * <p>When used in <code>PutMetricAlarm</code>, specify <code>true</code> for the one
375
386
  * expression result to use as the alarm. For all other metrics and expressions in the same
376
- * <code>PutMetricAlarm</code> operation, specify <code>ReturnData</code> as
387
+ * <code>PutMetricAlarm</code> operation, specify <code>ReturnData</code> as
377
388
  * False.</p>
378
389
  * @public
379
390
  */
@@ -408,10 +419,10 @@ export interface MetricMathAnomalyDetector {
408
419
  /**
409
420
  * <p>An array of metric data query structures that enables you to create an anomaly
410
421
  * detector based on the result of a metric math expression. Each item in
411
- * <code>MetricDataQueries</code> gets a metric or performs a math expression. One item
422
+ * <code>MetricDataQueries</code> gets a metric or performs a math expression. One item
412
423
  * in <code>MetricDataQueries</code> is the expression that provides the time series that
413
424
  * the anomaly detector uses as input. Designate the expression by setting
414
- * <code>ReturnData</code> to <code>true</code> for this object in the array. For all
425
+ * <code>ReturnData</code> to <code>true</code> for this object in the array. For all
415
426
  * other expressions and metrics, set <code>ReturnData</code> to <code>false</code>. The
416
427
  * designated expression must return a single time series.</p>
417
428
  * @public
@@ -463,6 +474,16 @@ export interface SingleMetricAnomalyDetector {
463
474
  * @public
464
475
  */
465
476
  export interface AnomalyDetector {
477
+ /**
478
+ * <p>The unique identifier of the anomaly detector.</p>
479
+ * <note>
480
+ * <p>The identifier does not restrict access to a specific anomaly detector in an IAM
481
+ * policy. Permissions for anomaly detector operations apply to all anomaly detectors
482
+ * in the account.</p>
483
+ * </note>
484
+ * @public
485
+ */
486
+ AnomalyDetectorId?: string | undefined;
466
487
  /**
467
488
  * <p>The namespace of the metric associated with the anomaly detection model.</p>
468
489
  *
@@ -665,14 +686,14 @@ export interface CompositeAlarm {
665
686
  /**
666
687
  * <p> When the value is <code>ALARM</code>, it means that the actions are suppressed
667
688
  * because the suppressor alarm is in <code>ALARM</code> When the value is
668
- * <code>WaitPeriod</code>, it means that the actions are suppressed because the
689
+ * <code>WaitPeriod</code>, it means that the actions are suppressed because the
669
690
  * composite alarm is waiting for the suppressor alarm to go into into the
670
- * <code>ALARM</code> state. The maximum waiting time is as specified in
671
- * <code>ActionsSuppressorWaitPeriod</code>. After this time, the composite alarm
691
+ * <code>ALARM</code> state. The maximum waiting time is as specified in
692
+ * <code>ActionsSuppressorWaitPeriod</code>. After this time, the composite alarm
672
693
  * performs its actions. When the value is <code>ExtensionPeriod</code>, it means that the
673
694
  * actions are suppressed because the composite alarm is waiting after the suppressor alarm
674
695
  * went out of the <code>ALARM</code> state. The maximum waiting time is as specified in
675
- * <code>ActionsSuppressorExtensionPeriod</code>. After this time, the composite alarm
696
+ * <code>ActionsSuppressorExtensionPeriod</code>. After this time, the composite alarm
676
697
  * performs its actions. </p>
677
698
  * @public
678
699
  */
@@ -830,6 +851,12 @@ export interface DeleteAlarmsInput {
830
851
  * @public
831
852
  */
832
853
  export interface DeleteAnomalyDetectorInput {
854
+ /**
855
+ * <p>Specifies the unique identifier of the anomaly detector to delete. If you specify
856
+ * this parameter, you do not need to specify a metric to identify the detector.</p>
857
+ * @public
858
+ */
859
+ AnomalyDetectorId?: string | undefined;
833
860
  /**
834
861
  * <p>The namespace associated with the anomaly detection model to delete.</p>
835
862
  *
@@ -884,12 +911,12 @@ export interface DeleteAnomalyDetectorInput {
884
911
  * </li>
885
912
  * <li>
886
913
  * <p>the <code>MetricMathAnomalyDetector</code> parameters of
887
- * <code>DeleteAnomalyDetectorInput</code>
914
+ * <code>DeleteAnomalyDetectorInput</code>
888
915
  * </p>
889
916
  * </li>
890
917
  * </ul>
891
918
  * <p>Instead, specify the single metric anomaly detector attributes as part of the
892
- * <code>SingleMetricAnomalyDetector</code> property.</p>
919
+ * <code>SingleMetricAnomalyDetector</code> property.</p>
893
920
  * @public
894
921
  */
895
922
  SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
@@ -919,12 +946,12 @@ export interface DeleteAnomalyDetectorInput {
919
946
  * </li>
920
947
  * <li>
921
948
  * <p>the <code>SingleMetricAnomalyDetector</code> parameters of
922
- * <code>DeleteAnomalyDetectorInput</code>
949
+ * <code>DeleteAnomalyDetectorInput</code>
923
950
  * </p>
924
951
  * </li>
925
952
  * </ul>
926
953
  * <p>Instead, specify the metric math anomaly detector attributes as part of the
927
- * <code>MetricMathAnomalyDetector</code> property.</p>
954
+ * <code>MetricMathAnomalyDetector</code> property.</p>
928
955
  * @public
929
956
  */
930
957
  MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
@@ -996,7 +1023,8 @@ export interface DescribeAlarmContributorsInput {
996
1023
  */
997
1024
  AlarmName: string | undefined;
998
1025
  /**
999
- * <p>The token returned by a previous call to indicate that there is more data available.</p>
1026
+ * <p>The token returned by a previous call to indicate that there is more data
1027
+ * available.</p>
1000
1028
  * @public
1001
1029
  */
1002
1030
  NextToken?: string | undefined;
@@ -1006,7 +1034,8 @@ export interface DescribeAlarmContributorsInput {
1006
1034
  */
1007
1035
  export interface DescribeAlarmContributorsOutput {
1008
1036
  /**
1009
- * <p>A list of alarm contributors that provide details about the individual time series contributing to the alarm's state.</p>
1037
+ * <p>A list of alarm contributors that provide details about the individual time series
1038
+ * contributing to the alarm's state.</p>
1010
1039
  * @public
1011
1040
  */
1012
1041
  AlarmContributors: AlarmContributor[] | undefined;
@@ -1026,13 +1055,15 @@ export interface DescribeAlarmHistoryInput {
1026
1055
  */
1027
1056
  AlarmName?: string | undefined;
1028
1057
  /**
1029
- * <p>The unique identifier of a specific alarm contributor to filter the alarm history results.</p>
1058
+ * <p>The unique identifier of a specific alarm contributor to filter the alarm history
1059
+ * results.</p>
1030
1060
  * @public
1031
1061
  */
1032
1062
  AlarmContributorId?: string | undefined;
1033
1063
  /**
1034
- * <p>Use this parameter to specify whether you want the operation to return metric alarms
1035
- * or composite alarms. If you omit this parameter, only metric alarms are returned.</p>
1064
+ * <p>Use this parameter to specify whether you want the operation to return metric alarms,
1065
+ * composite alarms, or log alarms. If you omit this parameter, only metric alarms are
1066
+ * returned.</p>
1036
1067
  * @public
1037
1068
  */
1038
1069
  AlarmTypes?: AlarmType[] | undefined;
@@ -1064,7 +1095,7 @@ export interface DescribeAlarmHistoryInput {
1064
1095
  NextToken?: string | undefined;
1065
1096
  /**
1066
1097
  * <p>Specified whether to return the newest or oldest alarm history first. Specify
1067
- * <code>TimestampDescending</code> to have the newest event history returned first,
1098
+ * <code>TimestampDescending</code> to have the newest event history returned first,
1068
1099
  * and specify <code>TimestampAscending</code> to have the oldest history returned
1069
1100
  * first.</p>
1070
1101
  * @public
@@ -1104,14 +1135,16 @@ export interface DescribeAlarmsInput {
1104
1135
  */
1105
1136
  AlarmNamePrefix?: string | undefined;
1106
1137
  /**
1107
- * <p>Use this parameter to specify whether you want the operation to return metric alarms
1108
- * or composite alarms. If you omit this parameter, only metric alarms are returned, even
1109
- * if composite alarms exist in the account.</p>
1138
+ * <p>Use this parameter to specify whether you want the operation to return metric alarms,
1139
+ * composite alarms, or log alarms. If you omit this parameter, only metric alarms are
1140
+ * returned, even if composite alarms or log alarms exist in the account.</p>
1110
1141
  * <p>For example, if you omit this parameter or specify <code>MetricAlarms</code>, the
1111
- * operation returns only a list of metric alarms. It does not return any composite alarms,
1112
- * even if composite alarms exist in the account.</p>
1142
+ * operation returns only a list of metric alarms. It does not return any composite alarms
1143
+ * or log alarms, even if they exist in the account.</p>
1113
1144
  * <p>If you specify <code>CompositeAlarms</code>, the operation returns only a list of
1114
- * composite alarms, and does not return any metric alarms.</p>
1145
+ * composite alarms, and does not return any metric alarms or log alarms.</p>
1146
+ * <p>If you specify <code>LogAlarms</code>, the operation returns only a list of log
1147
+ * alarms, and does not return any metric alarms or composite alarms.</p>
1115
1148
  * @public
1116
1149
  */
1117
1150
  AlarmTypes?: AlarmType[] | undefined;
@@ -1147,8 +1180,8 @@ export interface DescribeAlarmsInput {
1147
1180
  * <note>
1148
1181
  * <p>Only the Alarm Name and ARN are returned by this operation when you use this
1149
1182
  * parameter. To get complete information about these alarms, perform another
1150
- * <code>DescribeAlarms</code> operation and specify the parent alarm names in the
1151
- * <code>AlarmNames</code> parameter.</p>
1183
+ * <code>DescribeAlarms</code> operation and specify the parent alarm names in the
1184
+ * <code>AlarmNames</code> parameter.</p>
1152
1185
  * </note>
1153
1186
  * @public
1154
1187
  */
@@ -1179,8 +1212,205 @@ export interface DescribeAlarmsInput {
1179
1212
  NextToken?: string | undefined;
1180
1213
  }
1181
1214
  /**
1182
- * <p>The evaluation criteria for an alarm. This is a union type that currently
1183
- * supports <code>PromQLCriteria</code>.</p>
1215
+ * <p>Contains the schedule expression and time-range offsets that define when a scheduled query runs and what time range each execution covers.</p>
1216
+ * @public
1217
+ */
1218
+ export interface ScheduleConfiguration {
1219
+ /**
1220
+ * <p>The schedule expression that defines how often the underlying CloudWatch Logs scheduled query runs. Specify a <code>rate()</code> expression, for example <code>rate(5 minutes)</code>.</p>
1221
+ * @public
1222
+ */
1223
+ ScheduleExpression: string | undefined;
1224
+ /**
1225
+ * <p>The offset, in seconds, before the scheduled execution time at which the query time range begins. For example, an offset of 360 (6 minutes) on a query running at 12:05:00 starts the query time range at 11:59:00.</p>
1226
+ * @public
1227
+ */
1228
+ StartTimeOffset?: number | undefined;
1229
+ /**
1230
+ * <p>The offset, in seconds, before the scheduled execution time at which the query time range ends. Must be non-negative and less than <code>StartTimeOffset</code>. The default is 0.</p>
1231
+ * @public
1232
+ */
1233
+ EndTimeOffset?: number | undefined;
1234
+ }
1235
+ /**
1236
+ * <p>A key-value pair associated with a CloudWatch resource.</p>
1237
+ * @public
1238
+ */
1239
+ export interface Tag {
1240
+ /**
1241
+ * <p>A string that you can use to assign a value. The combination of tag keys and values
1242
+ * can help you organize and categorize your resources.</p>
1243
+ * @public
1244
+ */
1245
+ Key: string | undefined;
1246
+ /**
1247
+ * <p>The value for the specified tag key.</p>
1248
+ * @public
1249
+ */
1250
+ Value: string | undefined;
1251
+ }
1252
+ /**
1253
+ * <p>The configuration of the CloudWatch Logs scheduled query that backs a log alarm.</p>
1254
+ * @public
1255
+ */
1256
+ export interface ScheduledQueryConfiguration {
1257
+ /**
1258
+ * <p>The CloudWatch Logs query to execute on each scheduled run. Length constraints: maximum of 10,000 characters.</p>
1259
+ * @public
1260
+ */
1261
+ QueryString: string | undefined;
1262
+ /**
1263
+ * <p>The log groups to query. Each entry can be a log group name or ARN. Use the ARN form when querying log groups in a different account (for example, when running cross-account queries from a monitoring account). The list must contain between 1 and 50 entries.</p>
1264
+ * @public
1265
+ */
1266
+ LogGroupIdentifiers?: string[] | undefined;
1267
+ /**
1268
+ * <p>The Amazon Resource Name (ARN) of the CloudWatch Logs scheduled query that the alarm uses. This field is populated in <code>DescribeAlarms</code> responses.</p>
1269
+ * @public
1270
+ */
1271
+ QueryARN?: string | undefined;
1272
+ /**
1273
+ * <p>The Amazon Resource Name (ARN) of the IAM role that CloudWatch assumes when executing the scheduled query against the configured log groups.</p>
1274
+ * @public
1275
+ */
1276
+ ScheduledQueryRoleARN: string | undefined;
1277
+ /**
1278
+ * <p>The schedule and time-range offset configuration for the underlying scheduled query.</p>
1279
+ * @public
1280
+ */
1281
+ ScheduleConfiguration: ScheduleConfiguration | undefined;
1282
+ /**
1283
+ * <p>The expression that defines how to aggregate query results into one or more scalar values for alarm evaluation. For example, <code>count(*)</code> or <code>avg(latency) by host | sort desc</code>. Length constraints: minimum 1 character, maximum 2048 characters.</p>
1284
+ * @public
1285
+ */
1286
+ AggregationExpression: string | undefined;
1287
+ /**
1288
+ * <p>A list of key-value pairs to associate with the underlying scheduled query resource.</p>
1289
+ * @public
1290
+ */
1291
+ Tags?: Tag[] | undefined;
1292
+ }
1293
+ /**
1294
+ * <p>The details about a log alarm.</p>
1295
+ * @public
1296
+ */
1297
+ export interface LogAlarm {
1298
+ /**
1299
+ * <p>The name of the alarm.</p>
1300
+ * @public
1301
+ */
1302
+ AlarmName?: string | undefined;
1303
+ /**
1304
+ * <p>The Amazon Resource Name (ARN) of the alarm.</p>
1305
+ * @public
1306
+ */
1307
+ AlarmArn?: string | undefined;
1308
+ /**
1309
+ * <p>The description of the alarm.</p>
1310
+ * @public
1311
+ */
1312
+ AlarmDescription?: string | undefined;
1313
+ /**
1314
+ * <p>The time stamp of the last update to the alarm configuration.</p>
1315
+ * @public
1316
+ */
1317
+ AlarmConfigurationUpdatedTimestamp?: Date | undefined;
1318
+ /**
1319
+ * <p>Indicates whether actions should be executed during any changes to the alarm state.</p>
1320
+ * @public
1321
+ */
1322
+ ActionsEnabled?: boolean | undefined;
1323
+ /**
1324
+ * <p>The actions to execute when this alarm transitions to the <code>OK</code> state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
1325
+ * @public
1326
+ */
1327
+ OKActions?: string[] | undefined;
1328
+ /**
1329
+ * <p>The actions to execute when this alarm transitions to the <code>ALARM</code> state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
1330
+ * @public
1331
+ */
1332
+ AlarmActions?: string[] | undefined;
1333
+ /**
1334
+ * <p>The actions to execute when this alarm transitions to the <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
1335
+ * @public
1336
+ */
1337
+ InsufficientDataActions?: string[] | undefined;
1338
+ /**
1339
+ * <p>The state value for the alarm.</p>
1340
+ * @public
1341
+ */
1342
+ StateValue?: StateValue | undefined;
1343
+ /**
1344
+ * <p>An explanation for the alarm state, in text format.</p>
1345
+ * @public
1346
+ */
1347
+ StateReason?: string | undefined;
1348
+ /**
1349
+ * <p>An explanation for the alarm state, in JSON format.</p>
1350
+ * @public
1351
+ */
1352
+ StateReasonData?: string | undefined;
1353
+ /**
1354
+ * <p>The time stamp of the last update to the value of either the <code>StateValue</code> or <code>EvaluationState</code> parameters.</p>
1355
+ * @public
1356
+ */
1357
+ StateUpdatedTimestamp?: Date | undefined;
1358
+ /**
1359
+ * <p>The configuration of the underlying CloudWatch Logs scheduled query, including the query string, log groups, schedule, aggregation expression, and the ARN of the managed scheduled query.</p>
1360
+ * @public
1361
+ */
1362
+ ScheduledQueryConfiguration?: ScheduledQueryConfiguration | undefined;
1363
+ /**
1364
+ * <p>The number of most recent scheduled query results that the alarm evaluates against the threshold (the N in M-of-N evaluation).</p>
1365
+ * @public
1366
+ */
1367
+ QueryResultsToEvaluate?: number | undefined;
1368
+ /**
1369
+ * <p>The number of query results, out of the most recent <code>QueryResultsToEvaluate</code> results, that must breach the threshold to trigger the alarm to transition to <code>ALARM</code> (the M in M-of-N evaluation).</p>
1370
+ * @public
1371
+ */
1372
+ QueryResultsToAlarm?: number | undefined;
1373
+ /**
1374
+ * <p>The value to compare with the aggregated query result.</p>
1375
+ * @public
1376
+ */
1377
+ Threshold?: number | undefined;
1378
+ /**
1379
+ * <p>The arithmetic operation to use when comparing the aggregated query result and the threshold. The aggregated query result is used as the first operand.</p>
1380
+ * @public
1381
+ */
1382
+ ComparisonOperator?: ComparisonOperator | undefined;
1383
+ /**
1384
+ * <p>How this alarm handles missing data points. Valid values are <code>breaching</code>, <code>notBreaching</code>, <code>ignore</code>, and <code>missing</code>.</p>
1385
+ * @public
1386
+ */
1387
+ TreatMissingData?: string | undefined;
1388
+ /**
1389
+ * <p>The date and time that the alarm's <code>StateValue</code> most recently changed.</p>
1390
+ * @public
1391
+ */
1392
+ StateTransitionedTimestamp?: Date | undefined;
1393
+ /**
1394
+ * <p>If the value of this field is <code>EVALUATION_ERROR</code>, it indicates configuration errors in the alarm setup that require review and correction. Refer to the <code>StateReason</code> field of the alarm for more details.</p>
1395
+ * <p>If the value of this field is <code>EVALUATION_FAILURE</code>, it indicates temporary CloudWatch issues. We recommend manual monitoring until the issue is resolved.</p>
1396
+ * <p>If the value of this field is <code>PARTIAL_DATA</code>, it indicates that the query returned the maximum 500 contributor groups but more matched. The alarm evaluates the available contributors, but results might be incomplete.</p>
1397
+ * @public
1398
+ */
1399
+ EvaluationState?: EvaluationState | undefined;
1400
+ /**
1401
+ * <p>The number of log lines from the most recent scheduled query execution that are included in alarm action notifications. Valid range is 0 through 50. A value of 0 means no log lines are included.</p>
1402
+ * @public
1403
+ */
1404
+ ActionLogLineCount?: number | undefined;
1405
+ /**
1406
+ * <p>The Amazon Resource Name (ARN) of the IAM role that CloudWatch assumes to retrieve log events for inclusion in alarm action notifications. Set when <code>ActionLogLineCount</code> is greater than 0.</p>
1407
+ * @public
1408
+ */
1409
+ ActionLogLineRoleArn?: string | undefined;
1410
+ }
1411
+ /**
1412
+ * <p>The evaluation criteria for an alarm. This is a union type that currently supports
1413
+ * <code>PromQLCriteria</code>.</p>
1184
1414
  * @public
1185
1415
  */
1186
1416
  export type EvaluationCriteria = EvaluationCriteria.PromQLCriteriaMember | EvaluationCriteria.$UnknownMember;
@@ -1212,6 +1442,98 @@ export declare namespace EvaluationCriteria {
1212
1442
  _: (name: string, value: any) => T;
1213
1443
  }
1214
1444
  }
1445
+ /**
1446
+ * <p>An evaluation window that advances each time the alarm is evaluated, forming a rolling
1447
+ * time window. This is the default evaluation window. A sliding window has no additional
1448
+ * configuration options.</p>
1449
+ * <p>Choose a sliding window when you need the fastest detection and the calendar
1450
+ * boundaries of the data don't matter, such as for continuous performance, latency, or
1451
+ * resource-exhaustion monitoring.</p>
1452
+ * @public
1453
+ */
1454
+ export interface SlidingWindow {
1455
+ }
1456
+ /**
1457
+ * <p>An evaluation window that aligns the evaluated range to fixed clock boundaries that
1458
+ * match the alarm's period, such as the top of the hour, midnight, or the start of the
1459
+ * calendar week, optionally in a specific time zone.</p>
1460
+ * <p>When you use a wall clock window, the alarm's period must be 1 minute (60 seconds),
1461
+ * 5 minutes (300 seconds), 1 hour (3,600 seconds), 1 day (86,400 seconds), or 1 week
1462
+ * (604,800 seconds). Other period values aren't supported with a wall clock window.</p>
1463
+ * <p>Choose a wall clock window when your monitoring is tied to a business or calendar
1464
+ * period, such as daily reports, batch jobs, or backups, or when you want alarm
1465
+ * evaluations to match the periods shown on a metric dashboard.</p>
1466
+ * @public
1467
+ */
1468
+ export interface WallClockWindow {
1469
+ /**
1470
+ * <p>The time zone to use when the alarm aligns the evaluation window to clock boundaries.
1471
+ * You can specify an IANA time zone name (for example, <code>America/New_York</code>), a
1472
+ * fixed UTC offset (for example, <code>+05:30</code>), or an offset-prefixed identifier
1473
+ * (for example, <code>UTC+05:30</code>). The offset must be aligned to a multiple of
1474
+ * 5 minutes. If you don't specify a time zone, CloudWatch uses
1475
+ * <code>UTC</code>.</p>
1476
+ * <p>The time zone affects window alignment for all periods, including periods of one
1477
+ * hour or shorter.</p>
1478
+ * @public
1479
+ */
1480
+ Timezone?: string | undefined;
1481
+ }
1482
+ /**
1483
+ * <p>The evaluation window that an alarm uses to select the range of metric data that it
1484
+ * evaluates each time it runs. This is a union type. Set exactly one of its members,
1485
+ * <code>SlidingWindow</code> or <code>WallClockWindow</code>. If you don't set
1486
+ * <code>EvaluationWindow</code>, the alarm uses a <code>SlidingWindow</code> by
1487
+ * default.</p>
1488
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/alarm-evaluation-window.html">Alarm
1489
+ * evaluation windows</a> in the <i>CloudWatch User
1490
+ * Guide</i>.</p>
1491
+ * @public
1492
+ */
1493
+ export type EvaluationWindow = EvaluationWindow.SlidingWindowMember | EvaluationWindow.WallClockWindowMember | EvaluationWindow.$UnknownMember;
1494
+ /**
1495
+ * @public
1496
+ */
1497
+ export declare namespace EvaluationWindow {
1498
+ /**
1499
+ * <p>A wall clock window, which aligns the evaluated range to fixed clock boundaries that
1500
+ * match the alarm's period, such as the top of the hour, midnight, or the start of the
1501
+ * calendar week.</p>
1502
+ * @public
1503
+ */
1504
+ interface WallClockWindowMember {
1505
+ WallClockWindow: WallClockWindow;
1506
+ SlidingWindow?: never;
1507
+ $unknown?: never;
1508
+ }
1509
+ /**
1510
+ * <p>A sliding window, which advances each time the alarm is evaluated, forming a rolling
1511
+ * time window. This is the default evaluation window.</p>
1512
+ * @public
1513
+ */
1514
+ interface SlidingWindowMember {
1515
+ WallClockWindow?: never;
1516
+ SlidingWindow: SlidingWindow;
1517
+ $unknown?: never;
1518
+ }
1519
+ /**
1520
+ * @public
1521
+ */
1522
+ interface $UnknownMember {
1523
+ WallClockWindow?: never;
1524
+ SlidingWindow?: never;
1525
+ $unknown: [string, any];
1526
+ }
1527
+ /**
1528
+ * @deprecated unused in schema-serde mode.
1529
+ *
1530
+ */
1531
+ interface Visitor<T> {
1532
+ WallClockWindow: (value: WallClockWindow) => T;
1533
+ SlidingWindow: (value: SlidingWindow) => T;
1534
+ _: (name: string, value: any) => T;
1535
+ }
1536
+ }
1215
1537
  /**
1216
1538
  * <p>The details about a metric alarm.</p>
1217
1539
  * @public
@@ -1259,7 +1581,7 @@ export interface MetricAlarm {
1259
1581
  AlarmActions?: string[] | undefined;
1260
1582
  /**
1261
1583
  * <p>The actions to execute when this alarm transitions to the
1262
- * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
1584
+ * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
1263
1585
  * as an Amazon Resource Name (ARN).</p>
1264
1586
  * @public
1265
1587
  */
@@ -1281,7 +1603,7 @@ export interface MetricAlarm {
1281
1603
  StateReasonData?: string | undefined;
1282
1604
  /**
1283
1605
  * <p>The time stamp of the last update to the value of either the
1284
- * <code>StateValue</code> or <code>EvaluationState</code> parameters.</p>
1606
+ * <code>StateValue</code> or <code>EvaluationState</code> parameters.</p>
1285
1607
  * @public
1286
1608
  */
1287
1609
  StateUpdatedTimestamp?: Date | undefined;
@@ -1347,8 +1669,8 @@ export interface MetricAlarm {
1347
1669
  ComparisonOperator?: ComparisonOperator | undefined;
1348
1670
  /**
1349
1671
  * <p>Sets how this alarm is to handle missing data points. The valid values are
1350
- * <code>breaching</code>, <code>notBreaching</code>, <code>ignore</code>, and
1351
- * <code>missing</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data">Configuring how CloudWatch alarms treat missing data</a>.</p>
1672
+ * <code>breaching</code>, <code>notBreaching</code>, <code>ignore</code>, and
1673
+ * <code>missing</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data">Configuring how CloudWatch alarms treat missing data</a>.</p>
1352
1674
  * <p>If this parameter is omitted, the default behavior of <code>missing</code> is
1353
1675
  * used.</p>
1354
1676
  * <note>
@@ -1375,16 +1697,21 @@ export interface MetricAlarm {
1375
1697
  Metrics?: MetricDataQuery[] | undefined;
1376
1698
  /**
1377
1699
  * <p>In an alarm based on an anomaly detection model, this is the ID of the
1378
- * <code>ANOMALY_DETECTION_BAND</code> function used as the threshold for the
1700
+ * <code>ANOMALY_DETECTION_BAND</code> function used as the threshold for the
1379
1701
  * alarm.</p>
1380
1702
  * @public
1381
1703
  */
1382
1704
  ThresholdMetricId?: string | undefined;
1383
1705
  /**
1384
- * <p>If the value of this field is <code>PARTIAL_DATA</code>, it indicates that not all the available data was able to be retrieved due to quota limitations. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Create_Metrics_Insights_Alarm.html">Create
1706
+ * <p>If the value of this field is <code>PARTIAL_DATA</code>, it indicates that not all the
1707
+ * available data was able to be retrieved due to quota limitations. For more information,
1708
+ * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Create_Metrics_Insights_Alarm.html">Create
1385
1709
  * alarms on Metrics Insights queries</a>.</p>
1386
- * <p>If the value of this field is <code>EVALUATION_ERROR</code>, it indicates configuration errors in alarm setup that require review and correction. Refer to StateReason field of the alarm for more details.</p>
1387
- * <p>If the value of this field is <code>EVALUATION_FAILURE</code>, it indicates temporary CloudWatch issues. We recommend manual monitoring until the issue is resolved </p>
1710
+ * <p>If the value of this field is <code>EVALUATION_ERROR</code>, it indicates
1711
+ * configuration errors in alarm setup that require review and correction. Refer to
1712
+ * StateReason field of the alarm for more details.</p>
1713
+ * <p>If the value of this field is <code>EVALUATION_FAILURE</code>, it indicates temporary
1714
+ * CloudWatch issues. We recommend manual monitoring until the issue is resolved </p>
1388
1715
  * @public
1389
1716
  */
1390
1717
  EvaluationState?: EvaluationState | undefined;
@@ -1394,6 +1721,15 @@ export interface MetricAlarm {
1394
1721
  * @public
1395
1722
  */
1396
1723
  StateTransitionedTimestamp?: Date | undefined;
1724
+ /**
1725
+ * <p>The evaluation window that the alarm uses to select the range of metric data that it
1726
+ * evaluates. This is either a sliding window or a wall clock window. For more information,
1727
+ * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/alarm-evaluation-window.html">Alarm
1728
+ * evaluation windows</a> in the <i>CloudWatch User
1729
+ * Guide</i>.</p>
1730
+ * @public
1731
+ */
1732
+ EvaluationWindow?: EvaluationWindow | undefined;
1397
1733
  /**
1398
1734
  * <p>The evaluation criteria for the alarm.</p>
1399
1735
  * @public
@@ -1419,6 +1755,11 @@ export interface DescribeAlarmsOutput {
1419
1755
  * @public
1420
1756
  */
1421
1757
  MetricAlarms?: MetricAlarm[] | undefined;
1758
+ /**
1759
+ * <p>The information about any log alarms returned by the operation.</p>
1760
+ * @public
1761
+ */
1762
+ LogAlarms?: LogAlarm[] | undefined;
1422
1763
  /**
1423
1764
  * <p>The token that marks the start of the next batch of returned results.</p>
1424
1765
  * @public
@@ -1482,6 +1823,14 @@ export interface DescribeAlarmsForMetricOutput {
1482
1823
  * @public
1483
1824
  */
1484
1825
  export interface DescribeAnomalyDetectorsInput {
1826
+ /**
1827
+ * <p>Specifies the unique identifiers of the anomaly detectors to describe. You can specify
1828
+ * up to 50 identifiers. If you specify this parameter, you cannot also specify the
1829
+ * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>, or
1830
+ * <code>AnomalyDetectorTypes</code> metric filters.</p>
1831
+ * @public
1832
+ */
1833
+ AnomalyDetectorIds?: string[] | undefined;
1485
1834
  /**
1486
1835
  * <p>Use the token returned by the previous operation to request the next page of
1487
1836
  * results.</p>
@@ -1492,7 +1841,7 @@ export interface DescribeAnomalyDetectorsInput {
1492
1841
  * <p>The maximum number of results to return in one operation. The maximum value that you
1493
1842
  * can specify is 100.</p>
1494
1843
  * <p>To retrieve the remaining results, make another call with the returned
1495
- * <code>NextToken</code> value. </p>
1844
+ * <code>NextToken</code> value. </p>
1496
1845
  * @public
1497
1846
  */
1498
1847
  MaxResults?: number | undefined;
@@ -1518,8 +1867,8 @@ export interface DescribeAnomalyDetectorsInput {
1518
1867
  Dimensions?: Dimension[] | undefined;
1519
1868
  /**
1520
1869
  * <p>The anomaly detector types to request when using
1521
- * <code>DescribeAnomalyDetectorsInput</code>. If empty, defaults to
1522
- * <code>SINGLE_METRIC</code>.</p>
1870
+ * <code>DescribeAnomalyDetectorsInput</code>. If empty, defaults to
1871
+ * <code>SINGLE_METRIC</code>.</p>
1523
1872
  * @public
1524
1873
  */
1525
1874
  AnomalyDetectorTypes?: AnomalyDetectorType[] | undefined;
@@ -1560,7 +1909,7 @@ export interface DescribeInsightRulesInput {
1560
1909
  /**
1561
1910
  * <p>This structure contains the definition for a Contributor Insights rule. For more
1562
1911
  * information about this rule, see<a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContributorInsights.html"> Using Constributor Insights to analyze high-cardinality data</a> in the
1563
- * <i>Amazon CloudWatch User Guide</i>.</p>
1912
+ * <i>Amazon CloudWatch User Guide</i>.</p>
1564
1913
  * @public
1565
1914
  */
1566
1915
  export interface InsightRule {
@@ -1576,7 +1925,7 @@ export interface InsightRule {
1576
1925
  State: string | undefined;
1577
1926
  /**
1578
1927
  * <p>For rules that you create, this is always <code>\{"Name": "CloudWatchLogRule",
1579
- * "Version": 1\}</code>. For managed rules, this is <code>\{"Name": "ServiceLogRule",
1928
+ * "Version": 1\}</code>. For managed rules, this is <code>\{"Name": "ServiceLogRule",
1580
1929
  * "Version": 1\}</code>
1581
1930
  * </p>
1582
1931
  * @public
@@ -1595,8 +1944,10 @@ export interface InsightRule {
1595
1944
  */
1596
1945
  ManagedRule?: boolean | undefined;
1597
1946
  /**
1598
- * <p>Displays whether the rule is evaluated on the transformed versions of logs, for log groups
1599
- * that have <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html">Log transformation</a> enabled. If this is <code>false</code>, log events are evaluated before they are transformed.</p>
1947
+ * <p>Displays whether the rule is evaluated on the transformed versions of logs, for log
1948
+ * groups that have <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html">Log
1949
+ * transformation</a> enabled. If this is <code>false</code>, log events are
1950
+ * evaluated before they are transformed.</p>
1600
1951
  * @public
1601
1952
  */
1602
1953
  ApplyOnTransformedLogs?: boolean | undefined;
@@ -1718,7 +2069,7 @@ export interface EnableInsightRulesOutput {
1718
2069
  /**
1719
2070
  * <p>An entity associated with metrics, to allow for finding related telemetry. An entity
1720
2071
  * is typically a resource or service within your system. For example, metrics from an
1721
- * Amazon EC2 instance could be associated with that instance as the entity.
2072
+ * Amazon EC2 instance could be associated with that instance as the entity.
1722
2073
  * Similarly, metrics from a service that you own could be associated with that service as
1723
2074
  * the entity.</p>
1724
2075
  * @public
@@ -1730,12 +2081,11 @@ export interface Entity {
1730
2081
  * the same entity. For an entity to be valid, the <code>KeyAttributes</code> must exist
1731
2082
  * and be formatted correctly.</p>
1732
2083
  * <p>There are five allowed attributes (key names): <code>Type</code>,
1733
- * <code>ResourceType</code>, <code>Identifier</code>, <code>Name</code>, and
1734
- * <code>Environment</code>.</p>
2084
+ * <code>ResourceType</code>, <code>Identifier</code>, <code>Name</code>, and
2085
+ * <code>Environment</code>.</p>
1735
2086
  * <p>For details about how to use the key attributes to specify an entity, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html">How
1736
- * to add related
1737
- * information to telemetry</a> in the <i>CloudWatch User
1738
- * Guide</i>.</p>
2087
+ * to add related information to telemetry</a> in the <i>CloudWatch
2088
+ * User Guide</i>.</p>
1739
2089
  * @public
1740
2090
  */
1741
2091
  KeyAttributes?: Record<string, string> | undefined;
@@ -1743,8 +2093,8 @@ export interface Entity {
1743
2093
  * <p>Additional attributes of the entity that are not used to specify the identity of the
1744
2094
  * entity. A list of key-value pairs.</p>
1745
2095
  * <p>For details about how to use the attributes, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html">How
1746
- * to add related information to
1747
- * telemetry</a> in the <i>CloudWatch User Guide</i>.</p>
2096
+ * to add related information to telemetry</a> in the <i>CloudWatch
2097
+ * User Guide</i>.</p>
1748
2098
  * @public
1749
2099
  */
1750
2100
  Attributes?: Record<string, string> | undefined;
@@ -1814,7 +2164,7 @@ export interface MetricDatum {
1814
2164
  /**
1815
2165
  * <p>Array of numbers representing the values for the metric during the period. Each unique
1816
2166
  * value is listed just once in this array, and the corresponding number in the
1817
- * <code>Counts</code> array specifies the number of times that value occurred during
2167
+ * <code>Counts</code> array specifies the number of times that value occurred during
1818
2168
  * the period. You can include up to 150 unique values in each <code>PutMetricData</code>
1819
2169
  * action that specifies a <code>Values</code> array.</p>
1820
2170
  * <p>Although the <code>Values</code> array accepts numbers of type <code>Double</code>,
@@ -1827,7 +2177,7 @@ export interface MetricDatum {
1827
2177
  /**
1828
2178
  * <p>Array of numbers that is used along with the <code>Values</code> array. Each number in
1829
2179
  * the <code>Count</code> array is the number of times the corresponding value in the
1830
- * <code>Values</code> array occurred during the period. </p>
2180
+ * <code>Values</code> array occurred during the period. </p>
1831
2181
  * <p>If you omit the <code>Counts</code> array, the default of 1 is used as the value for
1832
2182
  * each count. If you include a <code>Counts</code> array, it must include the same amount
1833
2183
  * of values as the <code>Values</code> array.</p>
@@ -1849,7 +2199,7 @@ export interface MetricDatum {
1849
2199
  * metric, which CloudWatch stores at 1-minute resolution. Currently, high resolution is
1850
2200
  * available only for custom metrics. For more information about high-resolution metrics,
1851
2201
  * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html#high-resolution-metrics">High-Resolution Metrics</a> in the <i>Amazon CloudWatch User
1852
- * Guide</i>. </p>
2202
+ * Guide</i>. </p>
1853
2203
  * <p>This field is optional, if you do not specify it the default of 60 is
1854
2204
  * used.</p>
1855
2205
  * @public
@@ -1857,8 +2207,8 @@ export interface MetricDatum {
1857
2207
  StorageResolution?: number | undefined;
1858
2208
  }
1859
2209
  /**
1860
- * <p>A set of metrics that are associated with an entity, such as a specific service
1861
- * or resource. Contains the entity and the list of metric data associated with it.</p>
2210
+ * <p>A set of metrics that are associated with an entity, such as a specific service or
2211
+ * resource. Contains the entity and the list of metric data associated with it.</p>
1862
2212
  * @public
1863
2213
  */
1864
2214
  export interface EntityMetricData {
@@ -1885,30 +2235,39 @@ export interface GetAlarmMuteRuleInput {
1885
2235
  }
1886
2236
  /**
1887
2237
  * <p>Specifies which alarms an alarm mute rule applies to.</p>
1888
- * <p>You can target up to 100 specific alarms by name. When a mute rule is active, the targeted alarms continue to evaluate metrics and transition between states, but their configured actions are muted.</p>
2238
+ * <p>You can target up to 100 specific alarms by name. When a mute rule is active, the
2239
+ * targeted alarms continue to evaluate metrics and transition between states, but their
2240
+ * configured actions are muted.</p>
1889
2241
  * @public
1890
2242
  */
1891
2243
  export interface MuteTargets {
1892
2244
  /**
1893
- * <p>The list of alarm names that this mute rule targets. You can specify up to 100 alarm names.</p>
1894
- * <p>Each alarm name must be between 1 and 255 characters in length. The alarm names must match existing alarms in your Amazon Web Services account and region.</p>
2245
+ * <p>The list of alarm names that this mute rule targets. You can specify up to 100 alarm
2246
+ * names.</p>
2247
+ * <p>Each alarm name must be between 1 and 255 characters in length. The alarm names must
2248
+ * match existing alarms in your Amazon Web Services account and region.</p>
1895
2249
  * @public
1896
2250
  */
1897
2251
  AlarmNames: string[] | undefined;
1898
2252
  }
1899
2253
  /**
1900
2254
  * <p>Specifies when and how long an alarm mute rule is active.</p>
1901
- * <p>The schedule uses either a cron expression for recurring mute windows or an at expression for one-time mute windows. When the schedule activates, the mute rule mutes alarm actions for the specified duration.</p>
2255
+ * <p>The schedule uses either a cron expression for recurring mute windows or an at
2256
+ * expression for one-time mute windows. When the schedule activates, the mute rule mutes
2257
+ * alarm actions for the specified duration.</p>
1902
2258
  * @public
1903
2259
  */
1904
2260
  export interface Schedule {
1905
2261
  /**
1906
- * <p>The schedule expression that defines when the mute rule activates. The expression must be between 1 and 256 characters in length.</p>
2262
+ * <p>The schedule expression that defines when the mute rule activates. The expression must
2263
+ * be between 1 and 256 characters in length.</p>
1907
2264
  * <p>You can use one of two expression formats:</p>
1908
2265
  * <ul>
1909
2266
  * <li>
1910
2267
  * <p>
1911
- * <b>Cron expressions</b> - For recurring mute windows. Format: <code>cron(Minutes Hours Day-of-month Month Day-of-week)</code>
2268
+ * <b>Cron expressions</b> - For recurring mute
2269
+ * windows. Format: <code>cron(Minutes Hours Day-of-month Month
2270
+ * Day-of-week)</code>
1912
2271
  * </p>
1913
2272
  * <p>Examples:</p>
1914
2273
  * <ul>
@@ -1918,36 +2277,45 @@ export interface Schedule {
1918
2277
  * </li>
1919
2278
  * <li>
1920
2279
  * <p>
1921
- * <code>cron(0 2 * * SUN)</code> - Activates every Sunday at 2:00 AM for weekly system maintenance</p>
2280
+ * <code>cron(0 2 * * SUN)</code> - Activates every Sunday at 2:00 AM for
2281
+ * weekly system maintenance</p>
1922
2282
  * </li>
1923
2283
  * <li>
1924
2284
  * <p>
1925
- * <code>cron(0 1 1 * *)</code> - Activates on the first day of each month at 1:00 AM for monthly database maintenance</p>
2285
+ * <code>cron(0 1 1 * *)</code> - Activates on the first day of each
2286
+ * month at 1:00 AM for monthly database maintenance</p>
1926
2287
  * </li>
1927
2288
  * <li>
1928
2289
  * <p>
1929
- * <code>cron(0 18 * * FRI)</code> - Activates every Friday at 6:00 PM</p>
2290
+ * <code>cron(0 18 * * FRI)</code> - Activates every Friday at 6:00
2291
+ * PM</p>
1930
2292
  * </li>
1931
2293
  * <li>
1932
2294
  * <p>
1933
- * <code>cron(0 23 * * *)</code> - Activates every day at 11:00 PM during nightly backup operations</p>
2295
+ * <code>cron(0 23 * * *)</code> - Activates every day at 11:00 PM during
2296
+ * nightly backup operations</p>
1934
2297
  * </li>
1935
2298
  * </ul>
1936
- * <p>The characters <code>*</code>, <code>-</code>, and <code>,</code> are supported in all fields. English names can be used for the month (JAN-DEC) and day of week (SUN-SAT) fields.</p>
2299
+ * <p>The characters <code>*</code>, <code>-</code>, and <code>,</code> are
2300
+ * supported in all fields. English names can be used for the month (JAN-DEC) and
2301
+ * day of week (SUN-SAT) fields.</p>
1937
2302
  * </li>
1938
2303
  * <li>
1939
2304
  * <p>
1940
- * <b>At expressions</b> - For one-time mute windows. Format: <code>at(yyyy-MM-ddThh:mm)</code>
2305
+ * <b>At expressions</b> - For one-time mute windows.
2306
+ * Format: <code>at(yyyy-MM-ddThh:mm)</code>
1941
2307
  * </p>
1942
2308
  * <p>Examples:</p>
1943
2309
  * <ul>
1944
2310
  * <li>
1945
2311
  * <p>
1946
- * <code>at(2024-05-10T14:00)</code> - Activates once on May 10, 2024 at 2:00 PM during an active incident response session</p>
2312
+ * <code>at(2024-05-10T14:00)</code> - Activates once on May 10, 2024 at
2313
+ * 2:00 PM during an active incident response session</p>
1947
2314
  * </li>
1948
2315
  * <li>
1949
2316
  * <p>
1950
- * <code>at(2024-12-23T00:00)</code> - Activates once on December 23, 2024 at midnight during annual company shutdown</p>
2317
+ * <code>at(2024-12-23T00:00)</code> - Activates once on December 23,
2318
+ * 2024 at midnight during annual company shutdown</p>
1951
2319
  * </li>
1952
2320
  * </ul>
1953
2321
  * </li>
@@ -1956,8 +2324,10 @@ export interface Schedule {
1956
2324
  */
1957
2325
  Expression: string | undefined;
1958
2326
  /**
1959
- * <p>The length of time that alarms remain muted when the schedule activates. The duration must be between 1 and 50 characters in length.</p>
1960
- * <p>Specify the duration using ISO 8601 duration format with a minimum of 1 minute (<code>PT1M</code>) and maximum of 15 days (<code>P15D</code>).</p>
2327
+ * <p>The length of time that alarms remain muted when the schedule activates. The duration
2328
+ * must be between 1 and 50 characters in length.</p>
2329
+ * <p>Specify the duration using ISO 8601 duration format with a minimum of 1 minute
2330
+ * (<code>PT1M</code>) and maximum of 15 days (<code>P15D</code>).</p>
1961
2331
  * <p>Examples:</p>
1962
2332
  * <ul>
1963
2333
  * <li>
@@ -1966,7 +2336,8 @@ export interface Schedule {
1966
2336
  * </li>
1967
2337
  * <li>
1968
2338
  * <p>
1969
- * <code>P2DT12H</code> - 2 days and 12 hours for weekend muting from Friday 6:00 PM to Monday 6:00 AM</p>
2339
+ * <code>P2DT12H</code> - 2 days and 12 hours for weekend muting from Friday 6:00
2340
+ * PM to Monday 6:00 AM</p>
1970
2341
  * </li>
1971
2342
  * <li>
1972
2343
  * <p>
@@ -1981,14 +2352,20 @@ export interface Schedule {
1981
2352
  * <code>P7D</code> - 7 days for annual company shutdown</p>
1982
2353
  * </li>
1983
2354
  * </ul>
1984
- * <p>The duration begins when the schedule expression time is reached. For recurring schedules, the duration applies to each occurrence.</p>
2355
+ * <p>The duration begins when the schedule expression time is reached. For recurring
2356
+ * schedules, the duration applies to each occurrence.</p>
1985
2357
  * @public
1986
2358
  */
1987
2359
  Duration: string | undefined;
1988
2360
  /**
1989
- * <p>The time zone to use when evaluating the schedule expression. The time zone must be between 1 and 50 characters in length.</p>
1990
- * <p>Specify the time zone using standard timezone identifiers (for example, <code>America/New_York</code>, <code>Europe/London</code>, or <code>Asia/Tokyo</code>).</p>
1991
- * <p>If you don't specify a time zone, UTC is used by default. The time zone affects how cron and at expressions are interpreted, as well as start and expire dates you specify</p>
2361
+ * <p>The time zone to use when evaluating the schedule expression. The time zone must be
2362
+ * between 1 and 50 characters in length.</p>
2363
+ * <p>Specify the time zone using standard timezone identifiers (for example,
2364
+ * <code>America/New_York</code>, <code>Europe/London</code>, or
2365
+ * <code>Asia/Tokyo</code>).</p>
2366
+ * <p>If you don't specify a time zone, UTC is used by default. The time zone affects how
2367
+ * cron and at expressions are interpreted, as well as start and expire dates you
2368
+ * specify</p>
1992
2369
  * <p>Examples:</p>
1993
2370
  * <ul>
1994
2371
  * <li>
@@ -2018,12 +2395,15 @@ export interface Schedule {
2018
2395
  }
2019
2396
  /**
2020
2397
  * <p>Defines the schedule configuration for an alarm mute rule.</p>
2021
- * <p>The rule contains a schedule that specifies when and how long alarms should be muted. The schedule can be a recurring pattern using cron expressions or a one-time mute window using at expressions.</p>
2398
+ * <p>The rule contains a schedule that specifies when and how long alarms should be muted.
2399
+ * The schedule can be a recurring pattern using cron expressions or a one-time mute window
2400
+ * using at expressions.</p>
2022
2401
  * @public
2023
2402
  */
2024
2403
  export interface Rule {
2025
2404
  /**
2026
- * <p>The schedule configuration that defines when the mute rule activates and how long it remains active.</p>
2405
+ * <p>The schedule configuration that defines when the mute rule activates and how long it
2406
+ * remains active.</p>
2027
2407
  * @public
2028
2408
  */
2029
2409
  Schedule: Schedule | undefined;
@@ -2058,7 +2438,8 @@ export interface GetAlarmMuteRuleOutput {
2058
2438
  */
2059
2439
  MuteTargets?: MuteTargets | undefined;
2060
2440
  /**
2061
- * <p>The date and time when the mute rule becomes active. If not set, the rule is active immediately.</p>
2441
+ * <p>The date and time when the mute rule becomes active. If not set, the rule is active
2442
+ * immediately.</p>
2062
2443
  * @public
2063
2444
  */
2064
2445
  StartDate?: Date | undefined;
@@ -2068,7 +2449,8 @@ export interface GetAlarmMuteRuleOutput {
2068
2449
  */
2069
2450
  ExpireDate?: Date | undefined;
2070
2451
  /**
2071
- * <p>The current status of the alarm mute rule. Valid values are <code>SCHEDULED</code>, <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
2452
+ * <p>The current status of the alarm mute rule. Valid values are <code>SCHEDULED</code>,
2453
+ * <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
2072
2454
  * @public
2073
2455
  */
2074
2456
  Status?: AlarmMuteRuleStatus | undefined;
@@ -2078,7 +2460,8 @@ export interface GetAlarmMuteRuleOutput {
2078
2460
  */
2079
2461
  LastUpdatedTimestamp?: Date | undefined;
2080
2462
  /**
2081
- * <p>Indicates whether the mute rule is one-time or recurring. Valid values are <code>ONE_TIME</code> or <code>RECURRING</code>.</p>
2463
+ * <p>Indicates whether the mute rule is one-time or recurring. Valid values are
2464
+ * <code>ONE_TIME</code> or <code>RECURRING</code>.</p>
2082
2465
  * @public
2083
2466
  */
2084
2467
  MuteType?: string | undefined;
@@ -2105,7 +2488,7 @@ export interface GetDashboardOutput {
2105
2488
  /**
2106
2489
  * <p>The detailed information about the dashboard, including what widgets are included
2107
2490
  * and their location on the dashboard. For more information about the
2108
- * <code>DashboardBody</code> syntax, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CloudWatch-Dashboard-Body-Structure.html">Dashboard Body Structure and Syntax</a>. </p>
2491
+ * <code>DashboardBody</code> syntax, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Dashboard-Body-Structure.html">Dashboard Body Structure and Syntax</a>. </p>
2109
2492
  * @public
2110
2493
  */
2111
2494
  DashboardBody?: string | undefined;
@@ -2166,20 +2549,20 @@ export interface GetInsightRuleReportInput {
2166
2549
  /**
2167
2550
  * <p>The start time of the data to use in the report. When used in a raw HTTP Query API, it
2168
2551
  * is formatted as <code>yyyy-MM-dd'T'HH:mm:ss</code>. For example,
2169
- * <code>2019-07-01T23:59:59</code>.</p>
2552
+ * <code>2019-07-01T23:59:59</code>.</p>
2170
2553
  * @public
2171
2554
  */
2172
2555
  StartTime: Date | undefined;
2173
2556
  /**
2174
2557
  * <p>The end time of the data to use in the report. When used in a raw HTTP Query API, it
2175
2558
  * is formatted as <code>yyyy-MM-dd'T'HH:mm:ss</code>. For example,
2176
- * <code>2019-07-01T23:59:59</code>.</p>
2559
+ * <code>2019-07-01T23:59:59</code>.</p>
2177
2560
  * @public
2178
2561
  */
2179
2562
  EndTime: Date | undefined;
2180
2563
  /**
2181
2564
  * <p>The period, in seconds, to use for the statistics in the
2182
- * <code>InsightRuleMetricDatapoint</code> results.</p>
2565
+ * <code>InsightRuleMetricDatapoint</code> results.</p>
2183
2566
  * @public
2184
2567
  */
2185
2568
  Period: number | undefined;
@@ -2239,7 +2622,7 @@ export interface GetInsightRuleReportInput {
2239
2622
  Metrics?: string[] | undefined;
2240
2623
  /**
2241
2624
  * <p>Determines what statistic to use to rank the contributors. Valid values are
2242
- * <code>Sum</code> and <code>Maximum</code>.</p>
2625
+ * <code>Sum</code> and <code>Maximum</code>.</p>
2243
2626
  * @public
2244
2627
  */
2245
2628
  OrderBy?: string | undefined;
@@ -2404,14 +2787,14 @@ export interface GetInsightRuleReportOutput {
2404
2787
  * display the correct time for your time zone. </p>
2405
2788
  * <p>The <code>Timezone</code> value affects a label only if you have a time-based dynamic
2406
2789
  * expression in the label. For more information about dynamic expressions in labels, see
2407
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html">Using Dynamic
2408
- * Labels</a>.</p>
2790
+ * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html">Using Dynamic
2791
+ * Labels</a>.</p>
2409
2792
  * @public
2410
2793
  */
2411
2794
  export interface LabelOptions {
2412
2795
  /**
2413
2796
  * <p>The time zone to use for metric data return in this operation. The format is
2414
- * <code>+</code> or <code>-</code> followed by four digits. The first two digits
2797
+ * <code>+</code> or <code>-</code> followed by four digits. The first two digits
2415
2798
  * indicate the number of hours ahead or behind of UTC, and the final two digits are the
2416
2799
  * number of minutes. For example, +0130 indicates a time zone that is 1 hour and 30
2417
2800
  * minutes ahead of UTC. The default is +0000. </p>
@@ -2450,8 +2833,8 @@ export interface GetMetricDataInput {
2450
2833
  * clock interval. For example, 12:32:34 is rounded down to 12:00:00.</p>
2451
2834
  * </li>
2452
2835
  * </ul>
2453
- * <p>If you set <code>Period</code> to 5, 10, 20, or 30, the start time of your request is
2454
- * rounded down to the nearest time that corresponds to even 5-, 10-, 20-, or 30-second
2836
+ * <p>If you set <code>Period</code> to 5, 10, 20, or 30, the start time of your request
2837
+ * is rounded down to the nearest time that corresponds to even 5-, 10-, 20-, or 30-second
2455
2838
  * divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the
2456
2839
  * previous 10-second period, the start time of your request is rounded down and you
2457
2840
  * receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous
@@ -2511,9 +2894,9 @@ export interface GetMetricDataInput {
2511
2894
  * <p>A message returned by the <code>GetMetricData</code>API, including a code and a
2512
2895
  * description.</p>
2513
2896
  * <p>If a cross-Region <code>GetMetricData</code> operation fails with a code of
2514
- * <code>Forbidden</code> and a value of <code>Authentication too complex to retrieve
2897
+ * <code>Forbidden</code> and a value of <code>Authentication too complex to retrieve
2515
2898
  * cross region data</code>, you can correct the problem by running the
2516
- * <code>GetMetricData</code> operation in the same Region where the metric data
2899
+ * <code>GetMetricData</code> operation in the same Region where the metric data
2517
2900
  * is.</p>
2518
2901
  * @public
2519
2902
  */
@@ -2565,8 +2948,8 @@ export interface MetricDataResult {
2565
2948
  * in the requested time range were returned. <code>PartialData</code> means that an
2566
2949
  * incomplete set of data points were returned. You can use the <code>NextToken</code>
2567
2950
  * value that was returned and repeat your request to get more data points.
2568
- * <code>NextToken</code> is not returned if you are performing a math expression.
2569
- * <code>InternalError</code> indicates that an error occurred. Retry your request
2951
+ * <code>NextToken</code> is not returned if you are performing a math expression.
2952
+ * <code>InternalError</code> indicates that an error occurred. Retry your request
2570
2953
  * using <code>NextToken</code>, if present.</p>
2571
2954
  * @public
2572
2955
  */
@@ -2624,7 +3007,7 @@ export interface GetMetricStatisticsInput {
2624
3007
  * separate metric. If a specific combination of dimensions was not published, you can't
2625
3008
  * retrieve statistics for it. You must specify the same dimensions that were used when the
2626
3009
  * metrics were created. For an example, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#dimension-combinations">Dimension Combinations</a> in the <i>Amazon CloudWatch User
2627
- * Guide</i>. For more information about specifying dimensions, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html">Publishing Metrics</a> in the <i>Amazon CloudWatch User
3010
+ * Guide</i>. For more information about specifying dimensions, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html">Publishing Metrics</a> in the <i>Amazon CloudWatch User
2628
3011
  * Guide</i>.</p>
2629
3012
  * @public
2630
3013
  */
@@ -2650,8 +3033,8 @@ export interface GetMetricStatisticsInput {
2650
3033
  * clock interval. For example, 12:32:34 is rounded down to 12:00:00.</p>
2651
3034
  * </li>
2652
3035
  * </ul>
2653
- * <p>If you set <code>Period</code> to 5, 10, 20, or 30, the start time of your request is
2654
- * rounded down to the nearest time that corresponds to even 5-, 10-, 20-, or 30-second
3036
+ * <p>If you set <code>Period</code> to 5, 10, 20, or 30, the start time of your request
3037
+ * is rounded down to the nearest time that corresponds to even 5-, 10-, 20-, or 30-second
2655
3038
  * divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the
2656
3039
  * previous 10-second period, the start time of your request is rounded down and you
2657
3040
  * receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous
@@ -2674,7 +3057,7 @@ export interface GetMetricStatisticsInput {
2674
3057
  * of 60. For high-resolution metrics that are collected at intervals of less than one
2675
3058
  * minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
2676
3059
  * metrics are those metrics stored by a <code>PutMetricData</code> call that includes a
2677
- * <code>StorageResolution</code> of 1 second.</p>
3060
+ * <code>StorageResolution</code> of 1 second.</p>
2678
3061
  * <p>If the <code>StartTime</code> parameter specifies a time stamp that is greater than
2679
3062
  * 3 hours ago, you must specify the period as follows or no data points in that time range
2680
3063
  * is returned:</p>
@@ -2697,7 +3080,7 @@ export interface GetMetricStatisticsInput {
2697
3080
  Period: number | undefined;
2698
3081
  /**
2699
3082
  * <p>The metric statistics, other than percentile. For percentile statistics, use
2700
- * <code>ExtendedStatistics</code>. When calling <code>GetMetricStatistics</code>, you
3083
+ * <code>ExtendedStatistics</code>. When calling <code>GetMetricStatistics</code>, you
2701
3084
  * must specify either <code>Statistics</code> or <code>ExtendedStatistics</code>, but not
2702
3085
  * both.</p>
2703
3086
  * @public
@@ -2705,8 +3088,8 @@ export interface GetMetricStatisticsInput {
2705
3088
  Statistics?: Statistic[] | undefined;
2706
3089
  /**
2707
3090
  * <p>The percentile statistics. Specify values between p0.0 and p100. When calling
2708
- * <code>GetMetricStatistics</code>, you must specify either <code>Statistics</code> or
2709
- * <code>ExtendedStatistics</code>, but not both. Percentile statistics are not
3091
+ * <code>GetMetricStatistics</code>, you must specify either <code>Statistics</code> or
3092
+ * <code>ExtendedStatistics</code>, but not both. Percentile statistics are not
2710
3093
  * available for metrics when any of the metric values are negative numbers.</p>
2711
3094
  * @public
2712
3095
  */
@@ -2794,11 +3177,11 @@ export interface MetricStreamStatisticsMetric {
2794
3177
  }
2795
3178
  /**
2796
3179
  * <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>,
2797
- * <code>SUM</code>, and <code>SAMPLECOUNT</code> statistics for each metric that is
3180
+ * <code>SUM</code>, and <code>SAMPLECOUNT</code> statistics for each metric that is
2798
3181
  * streamed. This structure contains information for one metric that includes additional
2799
3182
  * statistics in the stream. For more information about statistics, see CloudWatch,
2800
3183
  * listed in <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
2801
- * CloudWatch statistics definitions</a>.</p>
3184
+ * CloudWatch statistics definitions</a>.</p>
2802
3185
  * @public
2803
3186
  */
2804
3187
  export interface MetricStreamStatisticsConfiguration {
@@ -2816,14 +3199,14 @@ export interface MetricStreamStatisticsConfiguration {
2816
3199
  * the <code>IncludeMetrics</code> array in this structure. This list can include as many
2817
3200
  * as 20 statistics.</p>
2818
3201
  * <p>If the <code>OutputFormat</code> for the stream is <code>opentelemetry1.0</code> or
2819
- * <code>opentelemetry0.7</code>, the only valid values are
2820
- * <code>p<i>??</i>
3202
+ * <code>opentelemetry0.7</code>, the only valid values are
3203
+ * <code>p<i>??</i>
2821
3204
  * </code> percentile statistics such as
2822
- * <code>p90</code>, <code>p99</code> and so on.</p>
3205
+ * <code>p90</code>, <code>p99</code> and so on.</p>
2823
3206
  * <p>If the <code>OutputFormat</code> for the stream is <code>json</code>, the valid values
2824
3207
  * include the abbreviations for all of the statistics listed in <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
2825
3208
  * CloudWatch statistics definitions</a>. For example, this includes
2826
- * <code>tm98, </code>
3209
+ * <code>tm98, </code>
2827
3210
  * <code>wm90</code>, <code>PR(:300)</code>, and so on.</p>
2828
3211
  * @public
2829
3212
  */
@@ -2869,7 +3252,7 @@ export interface GetMetricStreamOutput {
2869
3252
  RoleArn?: string | undefined;
2870
3253
  /**
2871
3254
  * <p>The state of the metric stream. The possible values are <code>running</code> and
2872
- * <code>stopped</code>.</p>
3255
+ * <code>stopped</code>.</p>
2873
3256
  * @public
2874
3257
  */
2875
3258
  State?: string | undefined;
@@ -2885,7 +3268,7 @@ export interface GetMetricStreamOutput {
2885
3268
  LastUpdateDate?: Date | undefined;
2886
3269
  /**
2887
3270
  * <p>The output format for the stream. Valid values are <code>json</code>,
2888
- * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>. For more
3271
+ * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>. For more
2889
3272
  * information about metric stream output formats, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-metric-streams-formats.html">Metric streams output formats</a>.</p>
2890
3273
  * @public
2891
3274
  */
@@ -2914,8 +3297,8 @@ export interface GetMetricWidgetImageInput {
2914
3297
  * <p>A JSON string that defines the bitmap graph to be retrieved. The string includes
2915
3298
  * the metrics to include in the graph, statistics, annotations, title, axis limits, and so
2916
3299
  * on. You can include only one <code>MetricWidget</code> parameter in each
2917
- * <code>GetMetricWidgetImage</code> call.</p>
2918
- * <p>For more information about the syntax of <code>MetricWidget</code> see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CloudWatch-Metric-Widget-Structure.html">GetMetricWidgetImage: Metric Widget Structure and Syntax</a>.</p>
3300
+ * <code>GetMetricWidgetImage</code> call.</p>
3301
+ * <p>For more information about the syntax of <code>MetricWidget</code> see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Metric-Widget-Structure.html">GetMetricWidgetImage: Metric Widget Structure and Syntax</a>.</p>
2919
3302
  * <p>If any metric on the graph could not load all the requested data points, an orange
2920
3303
  * triangle with an exclamation point appears next to the graph legend.</p>
2921
3304
  * @public
@@ -2959,7 +3342,7 @@ export interface GetMetricWidgetImageInput {
2959
3342
  * </p>
2960
3343
  * <p>The <code>image/png</code> setting is intended only for custom HTTP requests. For
2961
3344
  * most use cases, and all actions using an Amazon Web Services SDK, you should use
2962
- * <code>png</code>. If you specify <code>image/png</code>, the HTTP response has a
3345
+ * <code>png</code>. If you specify <code>image/png</code>, the HTTP response has a
2963
3346
  * content-type set to <code>image/png</code>, and the body of the response is a PNG
2964
3347
  * image.</p>
2965
3348
  * @public
@@ -2988,8 +3371,8 @@ export interface GetOTelEnrichmentInput {
2988
3371
  export interface GetOTelEnrichmentOutput {
2989
3372
  /**
2990
3373
  * <p>The status of OTel enrichment for the account. Valid values are
2991
- * <code>Running</code> (enrichment is enabled) and <code>Stopped</code>
2992
- * (enrichment is disabled).</p>
3374
+ * <code>Running</code> (enrichment is enabled) and <code>Stopped</code> (enrichment is
3375
+ * disabled).</p>
2993
3376
  * @public
2994
3377
  */
2995
3378
  Status: OTelEnrichmentStatus | undefined;
@@ -2999,22 +3382,26 @@ export interface GetOTelEnrichmentOutput {
2999
3382
  */
3000
3383
  export interface ListAlarmMuteRulesInput {
3001
3384
  /**
3002
- * <p>Filter results to show only mute rules that target the specified alarm name.</p>
3385
+ * <p>Filter results to show only mute rules that target the specified alarm
3386
+ * name.</p>
3003
3387
  * @public
3004
3388
  */
3005
3389
  AlarmName?: string | undefined;
3006
3390
  /**
3007
- * <p>Filter results to show only mute rules with the specified statuses. Valid values are <code>SCHEDULED</code>, <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
3391
+ * <p>Filter results to show only mute rules with the specified statuses. Valid values
3392
+ * are <code>SCHEDULED</code>, <code>ACTIVE</code>, or <code>EXPIRED</code>.</p>
3008
3393
  * @public
3009
3394
  */
3010
3395
  Statuses?: AlarmMuteRuleStatus[] | undefined;
3011
3396
  /**
3012
- * <p>The maximum number of mute rules to return in one call. The default is 50.</p>
3397
+ * <p>The maximum number of mute rules to return in one call. The default is
3398
+ * 50.</p>
3013
3399
  * @public
3014
3400
  */
3015
3401
  MaxRecords?: number | undefined;
3016
3402
  /**
3017
- * <p>The token returned from a previous call to indicate where to continue retrieving results.</p>
3403
+ * <p>The token returned from a previous call to indicate where to continue retrieving
3404
+ * results.</p>
3018
3405
  * @public
3019
3406
  */
3020
3407
  NextToken?: string | undefined;
@@ -3029,7 +3416,8 @@ export interface ListAlarmMuteRulesOutput {
3029
3416
  */
3030
3417
  AlarmMuteRuleSummaries?: AlarmMuteRuleSummary[] | undefined;
3031
3418
  /**
3032
- * <p>The token to use when requesting the next set of results. If this field is absent, there are no more results to retrieve.</p>
3419
+ * <p>The token to use when requesting the next set of results. If this field is absent,
3420
+ * there are no more results to retrieve.</p>
3033
3421
  * @public
3034
3422
  */
3035
3423
  NextToken?: string | undefined;
@@ -3097,7 +3485,7 @@ export interface ListManagedInsightRulesInput {
3097
3485
  export interface ManagedRuleState {
3098
3486
  /**
3099
3487
  * <p> The name of the Contributor Insights rule that contains data for the specified
3100
- * Amazon Web Services resource. </p>
3488
+ * Amazon Web Services resource. </p>
3101
3489
  * @public
3102
3490
  */
3103
3491
  RuleName: string | undefined;
@@ -3109,14 +3497,14 @@ export interface ManagedRuleState {
3109
3497
  }
3110
3498
  /**
3111
3499
  * <p> Contains information about managed Contributor Insights rules, as returned by
3112
- * <code>ListManagedInsightRules</code>.
3500
+ * <code>ListManagedInsightRules</code>.
3113
3501
  * </p>
3114
3502
  * @public
3115
3503
  */
3116
3504
  export interface ManagedRuleDescription {
3117
3505
  /**
3118
3506
  * <p> The template name for the managed rule. Used to enable managed rules using
3119
- * <code>PutManagedInsightRules</code>. </p>
3507
+ * <code>PutManagedInsightRules</code>. </p>
3120
3508
  * @public
3121
3509
  */
3122
3510
  TemplateName?: string | undefined;
@@ -3168,8 +3556,9 @@ export interface ListMetricsInput {
3168
3556
  */
3169
3557
  MetricName?: string | undefined;
3170
3558
  /**
3171
- * <p>The dimensions to filter against. Only the dimension with names that match exactly will be
3172
- * returned. If you specify one dimension name and a metric has that dimension and also other dimensions, it will be returned.</p>
3559
+ * <p>The dimensions to filter against. Only the dimension with names that match exactly
3560
+ * will be returned. If you specify one dimension name and a metric has that dimension and
3561
+ * also other dimensions, it will be returned.</p>
3173
3562
  * @public
3174
3563
  */
3175
3564
  Dimensions?: DimensionFilter[] | undefined;
@@ -3278,13 +3667,13 @@ export interface MetricStreamEntry {
3278
3667
  FirehoseArn?: string | undefined;
3279
3668
  /**
3280
3669
  * <p>The current state of this stream. Valid values are <code>running</code> and
3281
- * <code>stopped</code>.</p>
3670
+ * <code>stopped</code>.</p>
3282
3671
  * @public
3283
3672
  */
3284
3673
  State?: string | undefined;
3285
3674
  /**
3286
3675
  * <p>The output format of this metric stream. Valid values are <code>json</code>,
3287
- * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>.</p>
3676
+ * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>.</p>
3288
3677
  * @public
3289
3678
  */
3290
3679
  OutputFormat?: MetricStreamOutputFormat | undefined;
@@ -3312,19 +3701,19 @@ export interface ListTagsForResourceInput {
3312
3701
  /**
3313
3702
  * <p>The ARN of the CloudWatch resource that you want to view tags for.</p>
3314
3703
  * <p>The ARN format of an alarm is
3315
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
3704
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
3316
3705
  * </code>
3317
3706
  * </p>
3318
3707
  * <p>The ARN format of a Contributor Insights rule is
3319
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
3708
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
3320
3709
  * </code>
3321
3710
  * </p>
3322
3711
  * <p>The ARN format of a dashboard is
3323
- * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
3712
+ * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
3324
3713
  * </code>
3325
3714
  * </p>
3326
3715
  * <p>The ARN format of a metric stream is
3327
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
3716
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
3328
3717
  * </code>
3329
3718
  * </p>
3330
3719
  * <p>For more information about ARN format, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatch.html#amazoncloudwatch-resources-for-iam-policies"> Resource Types Defined by Amazon CloudWatch</a> in the <i>Amazon Web
@@ -3333,23 +3722,6 @@ export interface ListTagsForResourceInput {
3333
3722
  */
3334
3723
  ResourceARN: string | undefined;
3335
3724
  }
3336
- /**
3337
- * <p>A key-value pair associated with a CloudWatch resource.</p>
3338
- * @public
3339
- */
3340
- export interface Tag {
3341
- /**
3342
- * <p>A string that you can use to assign a value. The combination of tag keys and values
3343
- * can help you organize and categorize your resources.</p>
3344
- * @public
3345
- */
3346
- Key: string | undefined;
3347
- /**
3348
- * <p>The value for the specified tag key.</p>
3349
- * @public
3350
- */
3351
- Value: string | undefined;
3352
- }
3353
3725
  /**
3354
3726
  * @public
3355
3727
  */
@@ -3385,17 +3757,24 @@ export interface PutAlarmMuteRuleInput {
3385
3757
  */
3386
3758
  MuteTargets?: MuteTargets | undefined;
3387
3759
  /**
3388
- * <p>A list of key-value pairs to associate with the alarm mute rule. You can use tags to categorize and manage your mute rules.</p>
3760
+ * <p>A list of key-value pairs to associate with the alarm mute rule. You can use tags
3761
+ * to categorize and manage your mute rules.</p>
3389
3762
  * @public
3390
3763
  */
3391
3764
  Tags?: Tag[] | undefined;
3392
3765
  /**
3393
- * <p>The date and time after which the mute rule takes effect, specified as a timestamp in ISO 8601 format (for example, <code>2026-04-15T08:00:00Z</code>). If not specified, the mute rule takes effect immediately upon creation and the mutes are applied as per the schedule expression.</p>
3766
+ * <p>The date and time after which the mute rule takes effect, specified as a timestamp
3767
+ * in ISO 8601 format (for example, <code>2026-04-15T08:00:00Z</code>). If not specified,
3768
+ * the mute rule takes effect immediately upon creation and the mutes are applied as per
3769
+ * the schedule expression.</p>
3394
3770
  * @public
3395
3771
  */
3396
3772
  StartDate?: Date | undefined;
3397
3773
  /**
3398
- * <p>The date and time when the mute rule expires and is no longer evaluated, specified as a timestamp in ISO 8601 format (for example, <code>2026-12-31T23:59:59Z</code>). After this time, the rule status becomes EXPIRED and will no longer mute the targeted alarms.</p>
3774
+ * <p>The date and time when the mute rule expires and is no longer evaluated, specified
3775
+ * as a timestamp in ISO 8601 format (for example, <code>2026-12-31T23:59:59Z</code>).
3776
+ * After this time, the rule status becomes EXPIRED and will no longer mute the targeted
3777
+ * alarms.</p>
3399
3778
  * @public
3400
3779
  */
3401
3780
  ExpireDate?: Date | undefined;
@@ -3442,7 +3821,7 @@ export interface PutAnomalyDetectorInput {
3442
3821
  Configuration?: AnomalyDetectorConfiguration | undefined;
3443
3822
  /**
3444
3823
  * <p>Use this object to include parameters to provide information about your metric to
3445
- * CloudWatch to help it build more accurate anomaly detection models.
3824
+ * CloudWatch to help it build more accurate anomaly detection models.
3446
3825
  * Currently, it includes the <code>PeriodicSpikes</code> parameter.</p>
3447
3826
  * @public
3448
3827
  */
@@ -3474,12 +3853,12 @@ export interface PutAnomalyDetectorInput {
3474
3853
  * </li>
3475
3854
  * <li>
3476
3855
  * <p>the <code>MetricMathAnomalyDetector</code> parameters of
3477
- * <code>PutAnomalyDetectorInput</code>
3856
+ * <code>PutAnomalyDetectorInput</code>
3478
3857
  * </p>
3479
3858
  * </li>
3480
3859
  * </ul>
3481
3860
  * <p>Instead, specify the single metric anomaly detector attributes as part of the property
3482
- * <code>SingleMetricAnomalyDetector</code>.</p>
3861
+ * <code>SingleMetricAnomalyDetector</code>.</p>
3483
3862
  * @public
3484
3863
  */
3485
3864
  SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
@@ -3510,12 +3889,12 @@ export interface PutAnomalyDetectorInput {
3510
3889
  * </li>
3511
3890
  * <li>
3512
3891
  * <p>the <code>SingleMetricAnomalyDetector</code> parameters of
3513
- * <code>PutAnomalyDetectorInput</code>
3892
+ * <code>PutAnomalyDetectorInput</code>
3514
3893
  * </p>
3515
3894
  * </li>
3516
3895
  * </ul>
3517
3896
  * <p>Instead, specify the metric math anomaly detector attributes as part of the property
3518
- * <code>MetricMathAnomalyDetector</code>.</p>
3897
+ * <code>MetricMathAnomalyDetector</code>.</p>
3519
3898
  * @public
3520
3899
  */
3521
3900
  MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
@@ -3524,6 +3903,11 @@ export interface PutAnomalyDetectorInput {
3524
3903
  * @public
3525
3904
  */
3526
3905
  export interface PutAnomalyDetectorOutput {
3906
+ /**
3907
+ * <p>The unique identifier of the anomaly detector that you created or updated.</p>
3908
+ * @public
3909
+ */
3910
+ AnomalyDetectorId?: string | undefined;
3527
3911
  }
3528
3912
  /**
3529
3913
  * @public
@@ -3553,19 +3937,19 @@ export interface PutCompositeAlarmInput {
3553
3937
  * <ul>
3554
3938
  * <li>
3555
3939
  * <p>Invoke the latest version of a Lambda function:
3556
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
3940
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
3557
3941
  * </code>
3558
3942
  * </p>
3559
3943
  * </li>
3560
3944
  * <li>
3561
3945
  * <p>Invoke a specific version of a Lambda function:
3562
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
3946
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
3563
3947
  * </code>
3564
3948
  * </p>
3565
3949
  * </li>
3566
3950
  * <li>
3567
3951
  * <p>Invoke a function by using an alias Lambda function:
3568
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
3952
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
3569
3953
  * </code>
3570
3954
  * </p>
3571
3955
  * </li>
@@ -3578,7 +3962,8 @@ export interface PutCompositeAlarmInput {
3578
3962
  * </code>
3579
3963
  * </p>
3580
3964
  * <p>
3581
- * <b>Start a Amazon Q Developer operational investigation</b>
3965
+ * <b>Start a Amazon Q Developer operational
3966
+ * investigation</b>
3582
3967
  * </p>
3583
3968
  * <p>
3584
3969
  * <code>arn:aws:aiops:<i>region</i>:<i>account-id</i>:investigation-group:<i>investigation-group-id</i>
@@ -3612,19 +3997,19 @@ export interface PutCompositeAlarmInput {
3612
3997
  * <li>
3613
3998
  * <p>
3614
3999
  * <code>ALARM("<i>alarm-name</i> or
3615
- * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in
4000
+ * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in
3616
4001
  * ALARM state.</p>
3617
4002
  * </li>
3618
4003
  * <li>
3619
4004
  * <p>
3620
4005
  * <code>OK("<i>alarm-name</i> or
3621
- * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in OK
4006
+ * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in OK
3622
4007
  * state.</p>
3623
4008
  * </li>
3624
4009
  * <li>
3625
4010
  * <p>
3626
4011
  * <code>INSUFFICIENT_DATA("<i>alarm-name</i> or
3627
- * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in
4012
+ * <i>alarm-ARN</i>")</code> is TRUE if the named alarm is in
3628
4013
  * INSUFFICIENT_DATA state.</p>
3629
4014
  * </li>
3630
4015
  * <li>
@@ -3658,7 +4043,7 @@ export interface PutCompositeAlarmInput {
3658
4043
  * <li>
3659
4044
  * <p>
3660
4045
  * <code>(ALARM(CPUUtilizationTooHigh) OR ALARM(DiskReadOpsTooHigh)) AND
3661
- * OK(NetworkOutTooHigh)</code> goes into ALARM state if CPUUtilizationTooHigh
4046
+ * OK(NetworkOutTooHigh)</code> goes into ALARM state if CPUUtilizationTooHigh
3662
4047
  * OR DiskReadOpsTooHigh is in ALARM state, and if NetworkOutTooHigh is in OK
3663
4048
  * state. This provides another example of using a composite alarm to prevent
3664
4049
  * noise. This rule ensures that you are not notified with an alarm action on high
@@ -3666,14 +4051,14 @@ export interface PutCompositeAlarmInput {
3666
4051
  * </li>
3667
4052
  * </ul>
3668
4053
  * <p>The <code>AlarmRule</code> can specify as many as 100 "children" alarms. The
3669
- * <code>AlarmRule</code> expression can have as many as 500 elements. Elements are
4054
+ * <code>AlarmRule</code> expression can have as many as 500 elements. Elements are
3670
4055
  * child alarms, TRUE or FALSE statements, and parentheses.</p>
3671
4056
  * @public
3672
4057
  */
3673
4058
  AlarmRule: string | undefined;
3674
4059
  /**
3675
4060
  * <p>The actions to execute when this alarm transitions to the
3676
- * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
4061
+ * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
3677
4062
  * as an Amazon Resource Name (ARN).</p>
3678
4063
  * <p>Valid Values: ]</p>
3679
4064
  * <p>
@@ -3689,19 +4074,19 @@ export interface PutCompositeAlarmInput {
3689
4074
  * <ul>
3690
4075
  * <li>
3691
4076
  * <p>Invoke the latest version of a Lambda function:
3692
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4077
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
3693
4078
  * </code>
3694
4079
  * </p>
3695
4080
  * </li>
3696
4081
  * <li>
3697
4082
  * <p>Invoke a specific version of a Lambda function:
3698
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4083
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
3699
4084
  * </code>
3700
4085
  * </p>
3701
4086
  * </li>
3702
4087
  * <li>
3703
4088
  * <p>Invoke a function by using an alias Lambda function:
3704
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4089
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
3705
4090
  * </code>
3706
4091
  * </p>
3707
4092
  * </li>
@@ -3726,19 +4111,19 @@ export interface PutCompositeAlarmInput {
3726
4111
  * <ul>
3727
4112
  * <li>
3728
4113
  * <p>Invoke the latest version of a Lambda function:
3729
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4114
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
3730
4115
  * </code>
3731
4116
  * </p>
3732
4117
  * </li>
3733
4118
  * <li>
3734
4119
  * <p>Invoke a specific version of a Lambda function:
3735
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4120
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
3736
4121
  * </code>
3737
4122
  * </p>
3738
4123
  * </li>
3739
4124
  * <li>
3740
4125
  * <p>Invoke a function by using an alias Lambda function:
3741
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4126
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
3742
4127
  * </code>
3743
4128
  * </p>
3744
4129
  * </li>
@@ -3805,7 +4190,7 @@ export interface PutDashboardInput {
3805
4190
  /**
3806
4191
  * <p>The detailed information about the dashboard in JSON format, including the widgets
3807
4192
  * to include and their location on the dashboard. This parameter is required.</p>
3808
- * <p>For more information about the syntax, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CloudWatch-Dashboard-Body-Structure.html">Dashboard Body Structure and Syntax</a>.</p>
4193
+ * <p>For more information about the syntax, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Dashboard-Body-Structure.html">Dashboard Body Structure and Syntax</a>.</p>
3809
4194
  * @public
3810
4195
  */
3811
4196
  DashboardBody: string | undefined;
@@ -3816,9 +4201,9 @@ export interface PutDashboardInput {
3816
4201
  * scope user permissions by granting a user permission to access or change only dashboards
3817
4202
  * with certain tag values.</p>
3818
4203
  * <p>You can use this parameter only when creating a new dashboard. If you specify
3819
- * <code>Tags</code> when updating an existing dashboard, the tag updates are ignored. To
3820
- * add or update tags on an existing dashboard, use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_TagResource.html">TagResource</a>. To
3821
- * remove tags, use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
4204
+ * <code>Tags</code> when updating an existing dashboard, the tag updates are ignored.
4205
+ * To add or update tags on an existing dashboard, use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_TagResource.html">TagResource</a>.
4206
+ * To remove tags, use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
3822
4207
  * @public
3823
4208
  */
3824
4209
  Tags?: Tag[] | undefined;
@@ -3855,7 +4240,7 @@ export interface PutInsightRuleInput {
3855
4240
  RuleState?: string | undefined;
3856
4241
  /**
3857
4242
  * <p>The definition of the rule, as a JSON object. For details on the valid syntax, see
3858
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContributorInsights-RuleSyntax.html">Contributor Insights Rule Syntax</a>.</p>
4243
+ * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContributorInsights-RuleSyntax.html">Contributor Insights Rule Syntax</a>.</p>
3859
4244
  * @public
3860
4245
  */
3861
4246
  RuleDefinition: string | undefined;
@@ -3866,8 +4251,8 @@ export interface PutInsightRuleInput {
3866
4251
  * scope user permissions, by granting a user permission to access or change only the
3867
4252
  * resources that have certain tag values.</p>
3868
4253
  * <p>To be able to associate tags with a rule, you must have the
3869
- * <code>cloudwatch:TagResource</code> permission in addition to the
3870
- * <code>cloudwatch:PutInsightRule</code> permission.</p>
4254
+ * <code>cloudwatch:TagResource</code> permission in addition to the
4255
+ * <code>cloudwatch:PutInsightRule</code> permission.</p>
3871
4256
  * <p>If you are using this operation to update an existing Contributor Insights rule, any
3872
4257
  * tags you specify in this parameter are ignored. To change the tags of an existing rule,
3873
4258
  * use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_TagResource.html">TagResource</a>.</p>
@@ -3875,16 +4260,18 @@ export interface PutInsightRuleInput {
3875
4260
  */
3876
4261
  Tags?: Tag[] | undefined;
3877
4262
  /**
3878
- * <p>Specify <code>true</code> to have this rule evaluate log events after they have been transformed by
3879
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html">Log transformation</a>. If you specify <code>true</code>, then the log events in log groups that have transformers will
3880
- * be evaluated by Contributor Insights after being transformed. Log groups that don't have
3881
- * transformers will still have their original log events evaluated by Contributor Insights.</p>
4263
+ * <p>Specify <code>true</code> to have this rule evaluate log events after they have been
4264
+ * transformed by <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html">Log
4265
+ * transformation</a>. If you specify <code>true</code>, then the log events in log
4266
+ * groups that have transformers will be evaluated by Contributor Insights after being
4267
+ * transformed. Log groups that don't have transformers will still have their original log
4268
+ * events evaluated by Contributor Insights.</p>
3882
4269
  * <p>The default is <code>false</code>
3883
4270
  * </p>
3884
4271
  * <note>
3885
- * <p>If a log group has a transformer, and transformation fails for some log events, those log events won't be evaluated by
3886
- * Contributor Insights. For information about investigating log transformation failures, see
3887
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html">Transformation metrics and errors</a>.</p>
4272
+ * <p>If a log group has a transformer, and transformation fails for some log events,
4273
+ * those log events won't be evaluated by Contributor Insights. For information about
4274
+ * investigating log transformation failures, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html">Transformation metrics and errors</a>.</p>
3888
4275
  * </note>
3889
4276
  * @public
3890
4277
  */
@@ -3895,6 +4282,189 @@ export interface PutInsightRuleInput {
3895
4282
  */
3896
4283
  export interface PutInsightRuleOutput {
3897
4284
  }
4285
+ /**
4286
+ * @public
4287
+ */
4288
+ export interface PutLogAlarmInput {
4289
+ /**
4290
+ * <p>The name for the alarm. This name must be unique within the Amazon Web Services account and Region.</p>
4291
+ * @public
4292
+ */
4293
+ AlarmName: string | undefined;
4294
+ /**
4295
+ * <p>The description for the alarm.</p>
4296
+ * @public
4297
+ */
4298
+ AlarmDescription?: string | undefined;
4299
+ /**
4300
+ * <p>The configuration of the underlying CloudWatch Logs scheduled query that this alarm evaluates, including the query string, log groups, schedule, and aggregation expression.</p>
4301
+ * @public
4302
+ */
4303
+ ScheduledQueryConfiguration: ScheduledQueryConfiguration | undefined;
4304
+ /**
4305
+ * <p>The number of log lines from the most recent scheduled query execution to include in alarm action notifications. Valid range is 0 through 50. The default is 0, which means no log lines are included.</p>
4306
+ * @public
4307
+ */
4308
+ ActionLogLineCount?: number | undefined;
4309
+ /**
4310
+ * <p>The Amazon Resource Name (ARN) of an IAM role that CloudWatch assumes to retrieve log events for inclusion in alarm action notifications. Required when <code>ActionLogLineCount</code> is greater than 0.</p>
4311
+ * @public
4312
+ */
4313
+ ActionLogLineRoleArn?: string | undefined;
4314
+ /**
4315
+ * <p>Indicates whether actions should be executed during any changes to the alarm state. The default is <code>true</code>.</p>
4316
+ * @public
4317
+ */
4318
+ ActionsEnabled?: boolean | undefined;
4319
+ /**
4320
+ * <p>The actions to execute when this alarm transitions to the <code>OK</code> state
4321
+ * from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
4322
+ * <p>Valid Values:</p>
4323
+ * <p>
4324
+ * <b>Amazon SNS actions:</b>
4325
+ * </p>
4326
+ * <p>
4327
+ * <code>arn:aws:sns:<i>region</i>:<i>account-id</i>:<i>sns-topic-name</i>
4328
+ * </code>
4329
+ * </p>
4330
+ * <p>
4331
+ * <b>Lambda actions:</b>
4332
+ * </p>
4333
+ * <ul>
4334
+ * <li>
4335
+ * <p>Invoke the latest version of a Lambda function:
4336
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4337
+ * </code>
4338
+ * </p>
4339
+ * </li>
4340
+ * <li>
4341
+ * <p>Invoke a specific version of a Lambda function:
4342
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4343
+ * </code>
4344
+ * </p>
4345
+ * </li>
4346
+ * <li>
4347
+ * <p>Invoke a function by using an alias Lambda function:
4348
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4349
+ * </code>
4350
+ * </p>
4351
+ * </li>
4352
+ * </ul>
4353
+ * @public
4354
+ */
4355
+ OKActions?: string[] | undefined;
4356
+ /**
4357
+ * <p>The actions to execute when this alarm transitions to the <code>ALARM</code> state
4358
+ * from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
4359
+ * <p>Valid Values:</p>
4360
+ * <p>
4361
+ * <b>Amazon SNS actions:</b>
4362
+ * </p>
4363
+ * <p>
4364
+ * <code>arn:aws:sns:<i>region</i>:<i>account-id</i>:<i>sns-topic-name</i>
4365
+ * </code>
4366
+ * </p>
4367
+ * <p>
4368
+ * <b>Lambda actions:</b>
4369
+ * </p>
4370
+ * <ul>
4371
+ * <li>
4372
+ * <p>Invoke the latest version of a Lambda function:
4373
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4374
+ * </code>
4375
+ * </p>
4376
+ * </li>
4377
+ * <li>
4378
+ * <p>Invoke a specific version of a Lambda function:
4379
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4380
+ * </code>
4381
+ * </p>
4382
+ * </li>
4383
+ * <li>
4384
+ * <p>Invoke a function by using an alias Lambda function:
4385
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4386
+ * </code>
4387
+ * </p>
4388
+ * </li>
4389
+ * </ul>
4390
+ * <p>
4391
+ * <b>Systems Manager actions:</b>
4392
+ * </p>
4393
+ * <p>
4394
+ * <code>arn:aws:ssm:<i>region</i>:<i>account-id</i>:opsitem:<i>severity</i>
4395
+ * </code>
4396
+ * </p>
4397
+ * @public
4398
+ */
4399
+ AlarmActions?: string[] | undefined;
4400
+ /**
4401
+ * <p>The actions to execute when this alarm transitions to the <code>INSUFFICIENT_DATA</code> state
4402
+ * from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
4403
+ * <p>Valid Values:</p>
4404
+ * <p>
4405
+ * <b>Amazon SNS actions:</b>
4406
+ * </p>
4407
+ * <p>
4408
+ * <code>arn:aws:sns:<i>region</i>:<i>account-id</i>:<i>sns-topic-name</i>
4409
+ * </code>
4410
+ * </p>
4411
+ * <p>
4412
+ * <b>Lambda actions:</b>
4413
+ * </p>
4414
+ * <ul>
4415
+ * <li>
4416
+ * <p>Invoke the latest version of a Lambda function:
4417
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4418
+ * </code>
4419
+ * </p>
4420
+ * </li>
4421
+ * <li>
4422
+ * <p>Invoke a specific version of a Lambda function:
4423
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4424
+ * </code>
4425
+ * </p>
4426
+ * </li>
4427
+ * <li>
4428
+ * <p>Invoke a function by using an alias Lambda function:
4429
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4430
+ * </code>
4431
+ * </p>
4432
+ * </li>
4433
+ * </ul>
4434
+ * @public
4435
+ */
4436
+ InsufficientDataActions?: string[] | undefined;
4437
+ /**
4438
+ * <p>The number of most recent scheduled query results to evaluate against the threshold (the N in M-of-N evaluation). Valid range is 1 through 100.</p>
4439
+ * @public
4440
+ */
4441
+ QueryResultsToEvaluate: number | undefined;
4442
+ /**
4443
+ * <p>The number of query results, out of the most recent <code>QueryResultsToEvaluate</code> results, that must breach the threshold to trigger the alarm to transition to <code>ALARM</code> (the M in M-of-N evaluation). Must be less than or equal to <code>QueryResultsToEvaluate</code>.</p>
4444
+ * @public
4445
+ */
4446
+ QueryResultsToAlarm: number | undefined;
4447
+ /**
4448
+ * <p>The value to compare with the aggregated query result.</p>
4449
+ * @public
4450
+ */
4451
+ Threshold: number | undefined;
4452
+ /**
4453
+ * <p>The arithmetic operation to use when comparing the aggregated query result and the threshold. The aggregated query result is used as the first operand. Valid values are <code>GreaterThanThreshold</code>, <code>GreaterThanOrEqualToThreshold</code>, <code>LessThanThreshold</code>, and <code>LessThanOrEqualToThreshold</code>.</p>
4454
+ * @public
4455
+ */
4456
+ ComparisonOperator: ComparisonOperator | undefined;
4457
+ /**
4458
+ * <p>Sets how this alarm is to handle missing data points. Valid values are <code>breaching</code>, <code>notBreaching</code>, <code>ignore</code>, and <code>missing</code>. If this parameter is omitted, the default behavior of <code>missing</code> is used.</p>
4459
+ * @public
4460
+ */
4461
+ TreatMissingData?: string | undefined;
4462
+ /**
4463
+ * <p>A list of key-value pairs to associate with the alarm. You can use tags to categorize and manage your alarms.</p>
4464
+ * @public
4465
+ */
4466
+ Tags?: Tag[] | undefined;
4467
+ }
3898
4468
  /**
3899
4469
  * <p> Contains the information that's required to enable a managed Contributor Insights
3900
4470
  * rule for an Amazon Web Services resource.
@@ -3905,7 +4475,7 @@ export interface PutInsightRuleOutput {
3905
4475
  export interface ManagedRule {
3906
4476
  /**
3907
4477
  * <p> The template name for the managed Contributor Insights rule, as returned by
3908
- * <code>ListManagedInsightRules</code>. </p>
4478
+ * <code>ListManagedInsightRules</code>. </p>
3909
4479
  * @public
3910
4480
  */
3911
4481
  TemplateName: string | undefined;
@@ -3924,7 +4494,7 @@ export interface ManagedRule {
3924
4494
  * permission in addition to the <code>cloudwatch:PutInsightRule</code> permission. If you
3925
4495
  * are using this operation to update an existing Contributor Insights rule, any tags that
3926
4496
  * you specify in this parameter are ignored. To change the tags of an existing rule, use
3927
- * <code>TagResource</code>. </p>
4497
+ * <code>TagResource</code>. </p>
3928
4498
  * @public
3929
4499
  */
3930
4500
  Tags?: Tag[] | undefined;
@@ -4037,19 +4607,19 @@ export interface PutMetricAlarmInput {
4037
4607
  * <ul>
4038
4608
  * <li>
4039
4609
  * <p>Invoke the latest version of a Lambda function:
4040
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4610
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4041
4611
  * </code>
4042
4612
  * </p>
4043
4613
  * </li>
4044
4614
  * <li>
4045
4615
  * <p>Invoke a specific version of a Lambda function:
4046
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4616
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4047
4617
  * </code>
4048
4618
  * </p>
4049
4619
  * </li>
4050
4620
  * <li>
4051
4621
  * <p>Invoke a function by using an alias Lambda function:
4052
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4622
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4053
4623
  * </code>
4054
4624
  * </p>
4055
4625
  * </li>
@@ -4151,19 +4721,19 @@ export interface PutMetricAlarmInput {
4151
4721
  * <ul>
4152
4722
  * <li>
4153
4723
  * <p>Invoke the latest version of a Lambda function:
4154
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4724
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4155
4725
  * </code>
4156
4726
  * </p>
4157
4727
  * </li>
4158
4728
  * <li>
4159
4729
  * <p>Invoke a specific version of a Lambda function:
4160
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4730
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4161
4731
  * </code>
4162
4732
  * </p>
4163
4733
  * </li>
4164
4734
  * <li>
4165
4735
  * <p>Invoke a function by using an alias Lambda function:
4166
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4736
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4167
4737
  * </code>
4168
4738
  * </p>
4169
4739
  * </li>
@@ -4197,7 +4767,8 @@ export interface PutMetricAlarmInput {
4197
4767
  * </li>
4198
4768
  * </ul>
4199
4769
  * <p>
4200
- * <b>Start a Amazon Q Developer operational investigation</b>
4770
+ * <b>Start a Amazon Q Developer operational
4771
+ * investigation</b>
4201
4772
  * </p>
4202
4773
  * <p>
4203
4774
  * <code>arn:aws:aiops:<i>region</i>:<i>account-id</i>:investigation-group:<i>investigation-group-id</i>
@@ -4208,7 +4779,7 @@ export interface PutMetricAlarmInput {
4208
4779
  AlarmActions?: string[] | undefined;
4209
4780
  /**
4210
4781
  * <p>The actions to execute when this alarm transitions to the
4211
- * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
4782
+ * <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified
4212
4783
  * as an Amazon Resource Name (ARN). Valid values:</p>
4213
4784
  * <p>
4214
4785
  * <b>EC2 actions:</b>
@@ -4272,19 +4843,19 @@ export interface PutMetricAlarmInput {
4272
4843
  * <ul>
4273
4844
  * <li>
4274
4845
  * <p>Invoke the latest version of a Lambda function:
4275
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4846
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>
4276
4847
  * </code>
4277
4848
  * </p>
4278
4849
  * </li>
4279
4850
  * <li>
4280
4851
  * <p>Invoke a specific version of a Lambda function:
4281
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4852
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>version-number</i>
4282
4853
  * </code>
4283
4854
  * </p>
4284
4855
  * </li>
4285
4856
  * <li>
4286
4857
  * <p>Invoke a function by using an alias Lambda function:
4287
- * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4858
+ * <code>arn:aws:lambda:<i>region</i>:<i>account-id</i>:function:<i>function-name</i>:<i>alias-name</i>
4288
4859
  * </code>
4289
4860
  * </p>
4290
4861
  * </li>
@@ -4322,13 +4893,13 @@ export interface PutMetricAlarmInput {
4322
4893
  InsufficientDataActions?: string[] | undefined;
4323
4894
  /**
4324
4895
  * <p>The name for the metric associated with the alarm. For each
4325
- * <code>PutMetricAlarm</code> operation, you must specify either
4326
- * <code>MetricName</code>, a <code>Metrics</code> array, or an
4327
- * <code>EvaluationCriteria</code>.</p>
4896
+ * <code>PutMetricAlarm</code> operation, you must specify either
4897
+ * <code>MetricName</code>, a <code>Metrics</code> array, or an
4898
+ * <code>EvaluationCriteria</code>.</p>
4328
4899
  * <p>If you are creating an alarm based on a math expression, you cannot specify this
4329
4900
  * parameter, or any of the <code>Namespace</code>, <code>Dimensions</code>,
4330
- * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>, or
4331
- * <code>ExtendedStatistic</code> parameters. Instead, you specify all this information
4901
+ * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>, or
4902
+ * <code>ExtendedStatistic</code> parameters. Instead, you specify all this information
4332
4903
  * in the <code>Metrics</code> array.</p>
4333
4904
  * @public
4334
4905
  */
@@ -4342,7 +4913,7 @@ export interface PutMetricAlarmInput {
4342
4913
  /**
4343
4914
  * <p>The statistic for the metric specified in <code>MetricName</code>, other than
4344
4915
  * percentile. For percentile statistics, use <code>ExtendedStatistic</code>. When you call
4345
- * <code>PutMetricAlarm</code> and specify a <code>MetricName</code>, you must specify
4916
+ * <code>PutMetricAlarm</code> and specify a <code>MetricName</code>, you must specify
4346
4917
  * either <code>Statistic</code> or <code>ExtendedStatistic,</code> but not both.</p>
4347
4918
  * @public
4348
4919
  */
@@ -4421,24 +4992,25 @@ export interface PutMetricAlarmInput {
4421
4992
  Dimensions?: Dimension[] | undefined;
4422
4993
  /**
4423
4994
  * <p>The length, in seconds, used each time the metric specified in
4424
- * <code>MetricName</code> is evaluated. Valid values are 10, 20, 30, and any multiple of
4425
- * 60.</p>
4995
+ * <code>MetricName</code> is evaluated. Valid values are 10, 20, 30, and any multiple
4996
+ * of 60.</p>
4426
4997
  * <p>
4427
4998
  * <code>Period</code> is required for alarms based on static thresholds. If you are
4428
4999
  * creating an alarm based on a metric math expression, you specify the period for each
4429
5000
  * metric within the objects in the <code>Metrics</code> array.</p>
4430
5001
  * <p>Be sure to specify 10, 20, or 30 only for metrics that are stored by a
4431
- * <code>PutMetricData</code> call with a <code>StorageResolution</code> of 1. If you
4432
- * specify a period of 10, 20, or 30 for a metric that does not have sub-minute resolution, the
4433
- * alarm still attempts to gather data at the period rate that you specify. In this case,
4434
- * it does not receive data for the attempts that do not correspond to a one-minute data
4435
- * resolution, and the alarm might often lapse into INSUFFICENT_DATA status. Specifying 10, 20,
4436
- * or 30 also sets this alarm as a high-resolution alarm, which has a higher charge than
4437
- * other alarms. For more information about pricing, see <a href="https://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch
4438
- * Pricing</a>.</p>
5002
+ * <code>PutMetricData</code> call with a <code>StorageResolution</code> of 1. If you
5003
+ * specify a period of 10, 20, or 30 for a metric that does not have sub-minute resolution,
5004
+ * the alarm still attempts to gather data at the period rate that you specify. In this
5005
+ * case, it does not receive data for the attempts that do not correspond to a one-minute
5006
+ * data resolution, and the alarm might often lapse into INSUFFICENT_DATA status.
5007
+ * Specifying 10, 20, or 30 also sets this alarm as a high-resolution alarm, which has a
5008
+ * higher charge than other alarms. For more information about pricing, see <a href="https://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch
5009
+ * Pricing</a>.</p>
4439
5010
  * <p>An alarm's total current evaluation period can be no longer than seven days, so
4440
- * <code>Period</code> multiplied by <code>EvaluationPeriods</code> can't be more than
4441
- * 604,800 seconds. For alarms with a period of less than one hour (3,600 seconds), the total evaluation period can't be longer than one day (86,400 seconds).</p>
5011
+ * <code>Period</code> multiplied by <code>EvaluationPeriods</code> can't be more than
5012
+ * 604,800 seconds. For alarms with a period of less than one hour (3,600 seconds), the
5013
+ * total evaluation period can't be longer than one day (86,400 seconds).</p>
4442
5014
  * @public
4443
5015
  */
4444
5016
  Period?: number | undefined;
@@ -4474,7 +5046,7 @@ export interface PutMetricAlarmInput {
4474
5046
  * <p>The number of data points that must be breaching to trigger the alarm. This is used
4475
5047
  * only if you are setting an "M out of N" alarm. In that case, this value is the M. For
4476
5048
  * more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation">Evaluating an Alarm</a> in the <i>Amazon CloudWatch User
4477
- * Guide</i>.</p>
5049
+ * Guide</i>.</p>
4478
5050
  * @public
4479
5051
  */
4480
5052
  DatapointsToAlarm?: number | undefined;
@@ -4489,21 +5061,21 @@ export interface PutMetricAlarmInput {
4489
5061
  * <p> The arithmetic operation to use when comparing the specified statistic and
4490
5062
  * threshold. The specified statistic value is used as the first operand.</p>
4491
5063
  * <p>The values <code>LessThanLowerOrGreaterThanUpperThreshold</code>,
4492
- * <code>LessThanLowerThreshold</code>, and <code>GreaterThanUpperThreshold</code> are
5064
+ * <code>LessThanLowerThreshold</code>, and <code>GreaterThanUpperThreshold</code> are
4493
5065
  * used only for alarms based on anomaly detection models.</p>
4494
5066
  * @public
4495
5067
  */
4496
5068
  ComparisonOperator?: ComparisonOperator | undefined;
4497
5069
  /**
4498
5070
  * <p> Sets how this alarm is to handle missing data points. If
4499
- * <code>TreatMissingData</code> is omitted, the default behavior of
4500
- * <code>missing</code> is used. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data">Configuring How CloudWatch Alarms Treats Missing Data</a>.</p>
5071
+ * <code>TreatMissingData</code> is omitted, the default behavior of
5072
+ * <code>missing</code> is used. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data">Configuring How CloudWatch Alarms Treats Missing Data</a>.</p>
4501
5073
  * <p>Valid Values: <code>breaching | notBreaching | ignore | missing</code>
4502
5074
  * </p>
4503
5075
  * <note>
4504
5076
  * <p>Alarms that evaluate metrics in the <code>AWS/DynamoDB</code> namespace always
4505
- * <code>ignore</code> missing data even if you choose a different option for
4506
- * <code>TreatMissingData</code>. When an <code>AWS/DynamoDB</code> metric has
5077
+ * <code>ignore</code> missing data even if you choose a different option for
5078
+ * <code>TreatMissingData</code>. When an <code>AWS/DynamoDB</code> metric has
4507
5079
  * missing data, alarms that evaluate that metric remain in their current state.</p>
4508
5080
  * </note>
4509
5081
  * <note>
@@ -4534,11 +5106,11 @@ export interface PutMetricAlarmInput {
4534
5106
  * You designate this expression by setting <code>ReturnData</code> to true for this object
4535
5107
  * in the array. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDataQuery.html">MetricDataQuery</a>.</p>
4536
5108
  * <p>If you use the <code>Metrics</code> parameter, you cannot include the
4537
- * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>,
4538
- * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>,
4539
- * or <code>ExtendedStatistic</code> parameters of <code>PutMetricAlarm</code>
4540
- * in the same operation. Instead, you retrieve the metrics you are using in your
4541
- * math expression as part of the <code>Metrics</code> array.</p>
5109
+ * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>,
5110
+ * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>, or
5111
+ * <code>ExtendedStatistic</code> parameters of <code>PutMetricAlarm</code> in the same
5112
+ * operation. Instead, you retrieve the metrics you are using in your math expression as
5113
+ * part of the <code>Metrics</code> array.</p>
4542
5114
  * @public
4543
5115
  */
4544
5116
  Metrics?: MetricDataQuery[] | undefined;
@@ -4553,7 +5125,7 @@ export interface PutMetricAlarmInput {
4553
5125
  * this parameter are ignored. To change the tags of an existing alarm, use <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_TagResource.html">TagResource</a> or <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
4554
5126
  * <p>To use this field to set tags for an alarm when you create it, you must be signed on
4555
5127
  * with both the <code>cloudwatch:PutMetricAlarm</code> and
4556
- * <code>cloudwatch:TagResource</code> permissions.</p>
5128
+ * <code>cloudwatch:TagResource</code> permissions.</p>
4557
5129
  * @public
4558
5130
  */
4559
5131
  Tags?: Tag[] | undefined;
@@ -4561,25 +5133,40 @@ export interface PutMetricAlarmInput {
4561
5133
  * <p>If this is an alarm based on an anomaly detection model, make this value match the ID
4562
5134
  * of the <code>ANOMALY_DETECTION_BAND</code> function.</p>
4563
5135
  * <p>For an example of how to use this parameter, see the <b>Anomaly
4564
- * Detection Model Alarm</b> example on this page.</p>
5136
+ * Detection Model Alarm</b> example on this page.</p>
4565
5137
  * <p>If your alarm uses this parameter, it cannot have Auto Scaling actions.</p>
4566
5138
  * @public
4567
5139
  */
4568
5140
  ThresholdMetricId?: string | undefined;
5141
+ /**
5142
+ * <p>The evaluation window that the alarm uses to select the range of metric data that it
5143
+ * evaluates. Specify either a sliding window or a wall clock window. If you omit this
5144
+ * parameter, the alarm uses a sliding window.</p>
5145
+ * <p>A sliding window advances each time the alarm is evaluated, forming a rolling time
5146
+ * window. A wall clock window aligns the evaluated range to fixed clock boundaries, such
5147
+ * as the top of the hour or the start of the day.</p>
5148
+ * <p>You can use <code>EvaluationWindow</code> with any type of metric alarm except alarms
5149
+ * that are based on a PromQL query.</p>
5150
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/alarm-evaluation-window.html">Alarm
5151
+ * evaluation windows</a> in the <i>CloudWatch User
5152
+ * Guide</i>.</p>
5153
+ * @public
5154
+ */
5155
+ EvaluationWindow?: EvaluationWindow | undefined;
4569
5156
  /**
4570
5157
  * <p>The evaluation criteria for the alarm. For each <code>PutMetricAlarm</code>
4571
5158
  * operation, you must specify either <code>MetricName</code>, a <code>Metrics</code>
4572
5159
  * array, or an <code>EvaluationCriteria</code>.</p>
4573
5160
  * <p>If you use the <code>EvaluationCriteria</code> parameter, you cannot include the
4574
- * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>,
4575
- * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>,
4576
- * <code>ExtendedStatistic</code>, <code>Metrics</code>, <code>Threshold</code>,
4577
- * <code>ComparisonOperator</code>, <code>ThresholdMetricId</code>,
4578
- * <code>EvaluationPeriods</code>, or <code>DatapointsToAlarm</code> parameters of
4579
- * <code>PutMetricAlarm</code> in the same operation. Instead, all evaluation parameters
4580
- * are defined within this structure.</p>
5161
+ * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>,
5162
+ * <code>Period</code>, <code>Unit</code>, <code>Statistic</code>,
5163
+ * <code>ExtendedStatistic</code>, <code>Metrics</code>, <code>Threshold</code>,
5164
+ * <code>ComparisonOperator</code>, <code>ThresholdMetricId</code>,
5165
+ * <code>EvaluationPeriods</code>, or <code>DatapointsToAlarm</code> parameters of
5166
+ * <code>PutMetricAlarm</code> in the same operation. Instead, all evaluation
5167
+ * parameters are defined within this structure.</p>
4581
5168
  * <p>For an example of how to use this parameter, see the <b>PromQL
4582
- * alarm</b> example on this page.</p>
5169
+ * alarm</b> example on this page.</p>
4583
5170
  * @public
4584
5171
  */
4585
5172
  EvaluationCriteria?: EvaluationCriteria | undefined;
@@ -4588,7 +5175,7 @@ export interface PutMetricAlarmInput {
4588
5175
  * 20, 30, and any multiple of 60.</p>
4589
5176
  * <p>This parameter is required for alarms that use <code>EvaluationCriteria</code>, and
4590
5177
  * cannot be specified for alarms configured with <code>MetricName</code> or
4591
- * <code>Metrics</code>.</p>
5178
+ * <code>Metrics</code>.</p>
4592
5179
  * @public
4593
5180
  */
4594
5181
  EvaluationInterval?: number | undefined;
@@ -4615,9 +5202,9 @@ export interface PutMetricDataInput {
4615
5202
  */
4616
5203
  MetricData?: MetricDatum[] | undefined;
4617
5204
  /**
4618
- * <p>Data for metrics that contain associated entity information. You can include up to
4619
- * two <code>EntityMetricData</code> objects, each of which can contain a single
4620
- * <code>Entity</code> and associated metrics.</p>
5205
+ * <p>Data for metrics that contain associated entity information. You can include up to two
5206
+ * <code>EntityMetricData</code> objects, each of which can contain a single
5207
+ * <code>Entity</code> and associated metrics.</p>
4621
5208
  * <p>The limit of metrics allowed, 1000, is the sum of both <code>EntityMetricData</code>
4622
5209
  * and <code>MetricData</code> metrics.</p>
4623
5210
  * @public
@@ -4633,14 +5220,13 @@ export interface PutMetricDataInput {
4633
5220
  * </li>
4634
5221
  * <li>
4635
5222
  * <p>When set to <code>false</code>: Validation errors in the entity will not
4636
- * associate the metric with the entity, but the metric data will still be
4637
- * accepted and ingested. Validation errors in the metric data will fail the
4638
- * entire request, and no data will be ingested.</p>
4639
- * <p>In the case of an invalid entity, the operation will return a
4640
- * <code>200</code> status, but an additional response header will contain
4641
- * information about the validation errors. The new header,
4642
- * <code>X-Amzn-Failure-Message</code> is an enumeration of the following
4643
- * values:</p>
5223
+ * associate the metric with the entity, but the metric data will still be accepted
5224
+ * and ingested. Validation errors in the metric data will fail the entire request,
5225
+ * and no data will be ingested.</p>
5226
+ * <p>In the case of an invalid entity, the operation will return a <code>200</code>
5227
+ * status, but an additional response header will contain information about the
5228
+ * validation errors. The new header, <code>X-Amzn-Failure-Message</code> is an
5229
+ * enumeration of the following values:</p>
4644
5230
  * <ul>
4645
5231
  * <li>
4646
5232
  * <p>
@@ -4649,7 +5235,7 @@ export interface PutMetricDataInput {
4649
5235
  * <li>
4650
5236
  * <p>
4651
5237
  * <code>InvalidKeyAttributes</code> - The provided
4652
- * <code>KeyAttributes</code> of an entity is invalid.</p>
5238
+ * <code>KeyAttributes</code> of an entity is invalid.</p>
4653
5239
  * </li>
4654
5240
  * <li>
4655
5241
  * <p>
@@ -4659,24 +5245,22 @@ export interface PutMetricDataInput {
4659
5245
  * <li>
4660
5246
  * <p>
4661
5247
  * <code>InvalidTypeValue</code> - The provided <code>Type</code> in the
4662
- * <code>KeyAttributes</code> of an entity is invalid.</p>
5248
+ * <code>KeyAttributes</code> of an entity is invalid.</p>
4663
5249
  * </li>
4664
5250
  * <li>
4665
5251
  * <p>
4666
5252
  * <code>EntitySizeTooLarge</code> - The number of
4667
- * <code>EntityMetricData</code> objects allowed is 2.</p>
5253
+ * <code>EntityMetricData</code> objects allowed is 2.</p>
4668
5254
  * </li>
4669
5255
  * <li>
4670
5256
  * <p>
4671
- * <code>MissingRequiredFields</code> - There are missing required
4672
- * fields in the <code>KeyAttributes</code> for the provided
5257
+ * <code>MissingRequiredFields</code> - There are missing required fields
5258
+ * in the <code>KeyAttributes</code> for the provided
4673
5259
  * <code>Type</code>.</p>
4674
5260
  * </li>
4675
5261
  * </ul>
4676
- * <p>For details of the requirements for specifying an entity, see
4677
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html">How
4678
- * to add related information to telemetry</a> in the
4679
- * <i>CloudWatch User Guide</i>.</p>
5262
+ * <p>For details of the requirements for specifying an entity, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html">How to add related information to telemetry</a> in the
5263
+ * <i>CloudWatch User Guide</i>.</p>
4680
5264
  * </li>
4681
5265
  * </ul>
4682
5266
  * <p>This parameter is <i>required</i> when <code>EntityMetricData</code> is
@@ -4738,7 +5322,7 @@ export interface PutMetricStreamInput {
4738
5322
  RoleArn: string | undefined;
4739
5323
  /**
4740
5324
  * <p>The output format for the stream. Valid values are <code>json</code>,
4741
- * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>. For more
5325
+ * <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>. For more
4742
5326
  * information about metric stream output formats, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-metric-streams-formats.html">
4743
5327
  * Metric streams output formats</a>.</p>
4744
5328
  * @public
@@ -4758,13 +5342,13 @@ export interface PutMetricStreamInput {
4758
5342
  Tags?: Tag[] | undefined;
4759
5343
  /**
4760
5344
  * <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>,
4761
- * <code>SUM</code>, and <code>SAMPLECOUNT</code> statistics for each metric that is
5345
+ * <code>SUM</code>, and <code>SAMPLECOUNT</code> statistics for each metric that is
4762
5346
  * streamed. You can use this parameter to have the metric stream also send additional
4763
5347
  * statistics in the stream. This array can have up to 100 members.</p>
4764
5348
  * <p>For each entry in this array, you specify one or more metrics and the list of
4765
5349
  * additional statistics to stream for those metrics. The additional statistics that you
4766
5350
  * can stream depend on the stream's <code>OutputFormat</code>. If the
4767
- * <code>OutputFormat</code> is <code>json</code>, you can stream any additional
5351
+ * <code>OutputFormat</code> is <code>json</code>, you can stream any additional
4768
5352
  * statistic that is supported by CloudWatch, listed in <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
4769
5353
  * CloudWatch statistics definitions</a>. If the <code>OutputFormat</code>
4770
5354
  * is <code>opentelemetry1.0</code> or <code>opentelemetry0.7</code>, you can stream
@@ -4880,19 +5464,19 @@ export interface TagResourceInput {
4880
5464
  /**
4881
5465
  * <p>The ARN of the CloudWatch resource that you're adding tags to.</p>
4882
5466
  * <p>The ARN format of an alarm is
4883
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
5467
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
4884
5468
  * </code>
4885
5469
  * </p>
4886
5470
  * <p>The ARN format of a Contributor Insights rule is
4887
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
5471
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
4888
5472
  * </code>
4889
5473
  * </p>
4890
5474
  * <p>The ARN format of a dashboard is
4891
- * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
5475
+ * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
4892
5476
  * </code>
4893
5477
  * </p>
4894
5478
  * <p>The ARN format of a metric stream is
4895
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
5479
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
4896
5480
  * </code>
4897
5481
  * </p>
4898
5482
  * <p>For more information about ARN format, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatch.html#amazoncloudwatch-resources-for-iam-policies"> Resource Types Defined by Amazon CloudWatch</a> in the <i>Amazon Web
@@ -4918,19 +5502,19 @@ export interface UntagResourceInput {
4918
5502
  /**
4919
5503
  * <p>The ARN of the CloudWatch resource that you're removing tags from.</p>
4920
5504
  * <p>The ARN format of an alarm is
4921
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
5505
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:alarm:<i>alarm-name</i>
4922
5506
  * </code>
4923
5507
  * </p>
4924
5508
  * <p>The ARN format of a Contributor Insights rule is
4925
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
5509
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:insight-rule/<i>insight-rule-name</i>
4926
5510
  * </code>
4927
5511
  * </p>
4928
5512
  * <p>The ARN format of a dashboard is
4929
- * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
5513
+ * <code>arn:aws:cloudwatch::<i>account-id</i>:dashboard/<i>dashboard-name</i>
4930
5514
  * </code>
4931
5515
  * </p>
4932
5516
  * <p>The ARN format of a metric stream is
4933
- * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
5517
+ * <code>arn:aws:cloudwatch:<i>Region</i>:<i>account-id</i>:metric-stream/<i>metric-stream-name</i>
4934
5518
  * </code>
4935
5519
  * </p>
4936
5520
  * <p>For more information about ARN format, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatch.html#amazoncloudwatch-resources-for-iam-policies"> Resource Types Defined by Amazon CloudWatch</a> in the <i>Amazon Web