@cdklabs/cdk-ssm-documents 0.0.54 → 0.0.55

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 (1396) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +8 -8
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +1 -1
  118. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +1 -1
  119. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +1 -1
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +1 -1
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +1 -1
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +1 -1
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForTypeRegistrationComplete.js +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +90 -90
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +93 -93
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  130. package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -1
  131. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +1 -1
  132. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeAccountLimitsPaginator.d.ts +1 -1
  133. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeChangeSetPaginator.d.ts +1 -1
  134. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeEventsPaginator.d.ts +1 -1
  135. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeStackEventsPaginator.d.ts +1 -1
  136. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeStackResourceDriftsPaginator.d.ts +1 -1
  137. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/DescribeStacksPaginator.d.ts +1 -1
  138. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListChangeSetsPaginator.d.ts +1 -1
  139. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListExportsPaginator.d.ts +1 -1
  140. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +1 -1
  141. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListImportsPaginator.d.ts +1 -1
  142. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScansPaginator.d.ts +1 -1
  145. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackInstancesPaginator.d.ts +1 -1
  146. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackRefactorActionsPaginator.d.ts +1 -1
  147. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackRefactorsPaginator.d.ts +1 -1
  148. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackResourcesPaginator.d.ts +1 -1
  149. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackSetOperationResultsPaginator.d.ts +1 -1
  150. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackSetOperationsPaginator.d.ts +1 -1
  151. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStackSetsPaginator.d.ts +1 -1
  152. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListStacksPaginator.d.ts +1 -1
  153. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListTypeRegistrationsPaginator.d.ts +1 -1
  154. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListTypeVersionsPaginator.d.ts +1 -1
  155. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListTypesPaginator.d.ts +1 -1
  156. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +2 -3
  157. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +3 -3
  159. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +3 -3
  160. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +3 -3
  161. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +3 -3
  162. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +3 -3
  163. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +3 -3
  164. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +3 -3
  165. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +3 -3
  166. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +3 -3
  167. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +3 -3
  168. package/node_modules/@aws-sdk/client-cloudformation/package.json +15 -15
  169. package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
  170. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +47 -0
  171. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +73 -8
  172. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +8 -2
  173. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetOTelEnrichmentCommand.js +16 -0
  174. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartOTelEnrichmentCommand.js +16 -0
  175. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopOTelEnrichmentCommand.js +16 -0
  176. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
  177. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/enums.js +4 -0
  178. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +69 -4
  179. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
  180. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +1 -1
  181. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
  182. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +67 -43
  183. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +51 -48
  184. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  185. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsCommand.d.ts +8 -0
  186. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +8 -0
  187. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +75 -0
  188. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAlarmMuteRuleCommand.d.ts +1 -1
  189. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricAlarmCommand.d.ts +13 -4
  190. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +77 -0
  191. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +73 -0
  192. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
  193. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/index.d.ts +1 -1
  194. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/enums.d.ts +12 -0
  195. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +1 -1
  196. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +150 -10
  197. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/DescribeAlarmHistoryPaginator.d.ts +1 -1
  198. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/DescribeAlarmsPaginator.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/DescribeAnomalyDetectorsPaginator.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/DescribeInsightRulesPaginator.d.ts +1 -1
  201. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/GetMetricDataPaginator.d.ts +1 -1
  202. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/ListAlarmMuteRulesPaginator.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/ListDashboardsPaginator.d.ts +1 -1
  204. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/ListManagedInsightRulesPaginator.d.ts +1 -1
  205. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/ListMetricStreamsPaginator.d.ts +1 -1
  206. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/pagination/ListMetricsPaginator.d.ts +1 -1
  207. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -1
  208. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +54 -0
  209. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +20 -3
  210. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetOTelEnrichmentCommand.d.ts +50 -0
  212. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartOTelEnrichmentCommand.d.ts +51 -0
  213. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopOTelEnrichmentCommand.d.ts +51 -0
  214. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
  215. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/enums.d.ts +6 -0
  216. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +37 -2
  217. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  218. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +3 -3
  219. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +3 -3
  220. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +3 -3
  221. package/node_modules/@aws-sdk/client-cloudwatch/package.json +17 -17
  222. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +15 -15
  223. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForBundleTaskComplete.js +2 -2
  224. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskCancelled.js +1 -1
  225. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskCompleted.js +1 -1
  226. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskDeleted.js +1 -1
  227. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForCustomerGatewayAvailable.js +1 -1
  228. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForExportTaskCancelled.js +2 -2
  229. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForExportTaskCompleted.js +2 -2
  230. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageAvailable.js +1 -1
  231. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +1 -1
  232. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageUsageReportAvailable.js +1 -1
  233. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +1 -1
  234. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +1 -1
  235. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
  236. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
  237. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
  238. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
  239. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +1 -1
  240. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +2 -2
  241. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +2 -2
  242. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
  243. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
  244. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkDeleteComplete.js +1 -1
  246. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
  247. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetDeleteComplete.js +1 -1
  248. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupVpcAssociationAssociated.js +1 -1
  250. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupVpcAssociationDisassociated.js +1 -1
  251. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
  252. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotImported.js +1 -1
  253. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
  254. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForStoreImageTaskComplete.js +1 -1
  255. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
  256. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSystemStatusOk.js +1 -1
  257. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
  258. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +1 -1
  259. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
  260. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
  261. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +1 -1
  262. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
  263. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
  264. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpnConnectionAvailable.js +1 -1
  265. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpnConnectionDeleted.js +1 -1
  266. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +756 -756
  267. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +759 -759
  268. package/node_modules/@aws-sdk/client-ec2/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  269. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
  270. package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +1 -1
  271. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +1 -1
  272. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +2 -2
  273. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +2 -2
  274. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +3 -3
  275. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +5 -5
  276. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +5 -5
  277. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +7 -7
  278. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +7 -7
  279. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeAddressTransfersPaginator.d.ts +1 -1
  280. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeAddressesAttributePaginator.d.ts +1 -1
  281. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator.d.ts +1 -1
  282. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeByoipCidrsPaginator.d.ts +1 -1
  283. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityBlockExtensionHistoryPaginator.d.ts +1 -1
  284. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityBlockExtensionOfferingsPaginator.d.ts +1 -1
  285. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityBlockOfferingsPaginator.d.ts +1 -1
  286. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityBlockStatusPaginator.d.ts +1 -1
  287. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityBlocksPaginator.d.ts +1 -1
  288. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityManagerDataExportsPaginator.d.ts +1 -1
  289. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityReservationBillingRequestsPaginator.d.ts +1 -1
  290. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityReservationFleetsPaginator.d.ts +1 -1
  291. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCapacityReservationsPaginator.d.ts +1 -1
  292. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCarrierGatewaysPaginator.d.ts +1 -1
  293. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClassicLinkInstancesPaginator.d.ts +1 -1
  294. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClientVpnAuthorizationRulesPaginator.d.ts +1 -1
  295. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClientVpnConnectionsPaginator.d.ts +1 -1
  296. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClientVpnEndpointsPaginator.d.ts +1 -1
  297. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClientVpnRoutesPaginator.d.ts +1 -1
  298. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeClientVpnTargetNetworksPaginator.d.ts +1 -1
  299. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeCoipPoolsPaginator.d.ts +1 -1
  300. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeDhcpOptionsPaginator.d.ts +1 -1
  301. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeEgressOnlyInternetGatewaysPaginator.d.ts +1 -1
  302. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeExportImageTasksPaginator.d.ts +1 -1
  303. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +1 -1
  304. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeFastSnapshotRestoresPaginator.d.ts +1 -1
  305. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeFleetsPaginator.d.ts +1 -1
  306. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeFlowLogsPaginator.d.ts +1 -1
  307. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeFpgaImagesPaginator.d.ts +1 -1
  308. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeHostReservationOfferingsPaginator.d.ts +1 -1
  309. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeHostReservationsPaginator.d.ts +1 -1
  310. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeHostsPaginator.d.ts +1 -1
  311. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIamInstanceProfileAssociationsPaginator.d.ts +1 -1
  312. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImageReferencesPaginator.d.ts +1 -1
  313. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImageUsageReportEntriesPaginator.d.ts +1 -1
  314. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImageUsageReportsPaginator.d.ts +1 -1
  315. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImagesPaginator.d.ts +1 -1
  316. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImportImageTasksPaginator.d.ts +1 -1
  317. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeImportSnapshotTasksPaginator.d.ts +1 -1
  318. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceConnectEndpointsPaginator.d.ts +1 -1
  319. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceCreditSpecificationsPaginator.d.ts +1 -1
  320. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceEventWindowsPaginator.d.ts +1 -1
  321. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceImageMetadataPaginator.d.ts +1 -1
  322. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceStatusPaginator.d.ts +1 -1
  323. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceTopologyPaginator.d.ts +1 -1
  324. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceTypeOfferingsPaginator.d.ts +1 -1
  325. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstanceTypesPaginator.d.ts +1 -1
  326. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInstancesPaginator.d.ts +1 -1
  327. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeInternetGatewaysPaginator.d.ts +1 -1
  328. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamPoolsPaginator.d.ts +1 -1
  329. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamPrefixListResolverTargetsPaginator.d.ts +1 -1
  330. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamPrefixListResolversPaginator.d.ts +1 -1
  331. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamResourceDiscoveriesPaginator.d.ts +1 -1
  332. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamResourceDiscoveryAssociationsPaginator.d.ts +1 -1
  333. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamScopesPaginator.d.ts +1 -1
  334. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamsPaginator.d.ts +1 -1
  335. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpv6PoolsPaginator.d.ts +1 -1
  336. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLaunchTemplateVersionsPaginator.d.ts +1 -1
  337. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLaunchTemplatesPaginator.d.ts +1 -1
  338. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.d.ts +1 -1
  339. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.d.ts +1 -1
  340. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewayRouteTablesPaginator.d.ts +1 -1
  341. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.d.ts +1 -1
  342. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.d.ts +1 -1
  343. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeLocalGatewaysPaginator.d.ts +1 -1
  344. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeMacHostsPaginator.d.ts +1 -1
  345. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeMacModificationTasksPaginator.d.ts +1 -1
  346. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeManagedPrefixListsPaginator.d.ts +1 -1
  347. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeMovingAddressesPaginator.d.ts +1 -1
  348. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNatGatewaysPaginator.d.ts +1 -1
  349. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkAclsPaginator.d.ts +1 -1
  350. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.d.ts +1 -1
  351. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInsightsAccessScopesPaginator.d.ts +1 -1
  352. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInsightsAnalysesPaginator.d.ts +1 -1
  353. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInsightsPathsPaginator.d.ts +1 -1
  354. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInterfacePermissionsPaginator.d.ts +1 -1
  355. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeNetworkInterfacesPaginator.d.ts +1 -1
  356. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribePrefixListsPaginator.d.ts +1 -1
  357. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribePrincipalIdFormatPaginator.d.ts +1 -1
  358. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribePublicIpv4PoolsPaginator.d.ts +1 -1
  359. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeReplaceRootVolumeTasksPaginator.d.ts +1 -1
  360. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeReservedInstancesModificationsPaginator.d.ts +1 -1
  361. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeReservedInstancesOfferingsPaginator.d.ts +1 -1
  362. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeRouteServerEndpointsPaginator.d.ts +1 -1
  363. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeRouteServerPeersPaginator.d.ts +1 -1
  364. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeRouteServersPaginator.d.ts +1 -1
  365. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeRouteTablesPaginator.d.ts +1 -1
  366. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeScheduledInstanceAvailabilityPaginator.d.ts +1 -1
  367. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeScheduledInstancesPaginator.d.ts +1 -1
  368. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecondaryInterfacesPaginator.d.ts +1 -1
  369. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecondaryNetworksPaginator.d.ts +1 -1
  370. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecondarySubnetsPaginator.d.ts +1 -1
  371. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecurityGroupRulesPaginator.d.ts +1 -1
  372. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecurityGroupVpcAssociationsPaginator.d.ts +1 -1
  373. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSecurityGroupsPaginator.d.ts +1 -1
  374. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSnapshotTierStatusPaginator.d.ts +1 -1
  375. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +1 -1
  376. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSpotFleetRequestsPaginator.d.ts +1 -1
  377. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSpotInstanceRequestsPaginator.d.ts +1 -1
  378. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSpotPriceHistoryPaginator.d.ts +1 -1
  379. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeStaleSecurityGroupsPaginator.d.ts +1 -1
  380. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeStoreImageTasksPaginator.d.ts +1 -1
  381. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeSubnetsPaginator.d.ts +1 -1
  382. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTagsPaginator.d.ts +1 -1
  383. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTrafficMirrorFiltersPaginator.d.ts +1 -1
  384. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTrafficMirrorSessionsPaginator.d.ts +1 -1
  385. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTrafficMirrorTargetsPaginator.d.ts +1 -1
  386. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayAttachmentsPaginator.d.ts +1 -1
  387. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayConnectPeersPaginator.d.ts +1 -1
  388. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayConnectsPaginator.d.ts +1 -1
  389. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayMulticastDomainsPaginator.d.ts +1 -1
  390. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.d.ts +1 -1
  391. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayPolicyTablesPaginator.d.ts +1 -1
  392. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayRouteTableAnnouncementsPaginator.d.ts +1 -1
  393. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayRouteTablesPaginator.d.ts +1 -1
  394. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.d.ts +1 -1
  395. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTransitGatewaysPaginator.d.ts +1 -1
  396. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeTrunkInterfaceAssociationsPaginator.d.ts +1 -1
  397. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVerifiedAccessEndpointsPaginator.d.ts +1 -1
  398. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVerifiedAccessGroupsPaginator.d.ts +1 -1
  399. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator.d.ts +1 -1
  400. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVerifiedAccessInstancesPaginator.d.ts +1 -1
  401. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVerifiedAccessTrustProvidersPaginator.d.ts +1 -1
  402. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVolumeStatusPaginator.d.ts +1 -1
  403. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVolumesModificationsPaginator.d.ts +1 -1
  404. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVolumesPaginator.d.ts +1 -1
  405. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcClassicLinkDnsSupportPaginator.d.ts +1 -1
  406. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.d.ts +1 -1
  407. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcEndpointConnectionsPaginator.d.ts +1 -1
  408. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.d.ts +1 -1
  409. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcEndpointServicePermissionsPaginator.d.ts +1 -1
  410. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcEndpointsPaginator.d.ts +1 -1
  411. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcPeeringConnectionsPaginator.d.ts +1 -1
  412. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpcsPaginator.d.ts +1 -1
  413. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeVpnConcentratorsPaginator.d.ts +1 -1
  414. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetAssociatedIpv6PoolCidrsPaginator.d.ts +1 -1
  415. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetAwsNetworkPerformanceDataPaginator.d.ts +1 -1
  416. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetCapacityManagerMetricDataPaginator.d.ts +1 -1
  417. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetCapacityManagerMetricDimensionsPaginator.d.ts +1 -1
  418. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetGroupsForCapacityReservationPaginator.d.ts +1 -1
  419. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.d.ts +1 -1
  420. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamAddressHistoryPaginator.d.ts +1 -1
  421. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamDiscoveredAccountsPaginator.d.ts +1 -1
  422. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamDiscoveredResourceCidrsPaginator.d.ts +1 -1
  423. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamPoolAllocationsPaginator.d.ts +1 -1
  424. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamPoolCidrsPaginator.d.ts +1 -1
  425. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamPrefixListResolverRulesPaginator.d.ts +1 -1
  426. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamPrefixListResolverVersionEntriesPaginator.d.ts +1 -1
  427. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamPrefixListResolverVersionsPaginator.d.ts +1 -1
  428. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetIpamResourceCidrsPaginator.d.ts +1 -1
  429. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetManagedPrefixListAssociationsPaginator.d.ts +1 -1
  430. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetManagedPrefixListEntriesPaginator.d.ts +1 -1
  431. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetNetworkInsightsAccessScopeAnalysisFindingsPaginator.d.ts +1 -1
  432. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetSecurityGroupsForVpcPaginator.d.ts +1 -1
  433. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetSpotPlacementScoresPaginator.d.ts +1 -1
  434. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayAttachmentPropagationsPaginator.d.ts +1 -1
  435. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.d.ts +1 -1
  436. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayPolicyTableAssociationsPaginator.d.ts +1 -1
  437. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayPrefixListReferencesPaginator.d.ts +1 -1
  438. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayRouteTableAssociationsPaginator.d.ts +1 -1
  439. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetTransitGatewayRouteTablePropagationsPaginator.d.ts +1 -1
  440. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetVpnConnectionDeviceTypesPaginator.d.ts +1 -1
  441. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/ListImagesInRecycleBinPaginator.d.ts +1 -1
  442. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/ListSnapshotsInRecycleBinPaginator.d.ts +1 -1
  443. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/SearchLocalGatewayRoutesPaginator.d.ts +1 -1
  444. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/SearchTransitGatewayMulticastGroupsPaginator.d.ts +1 -1
  445. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/SearchTransitGatewayRoutesPaginator.d.ts +1 -1
  446. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +2 -3
  447. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  448. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +5 -5
  449. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +4 -4
  450. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +13 -13
  451. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +11 -11
  452. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +7 -7
  453. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +15 -15
  454. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +24 -24
  455. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +3 -3
  456. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +3 -3
  457. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +3 -3
  458. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +3 -3
  459. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +3 -3
  460. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +3 -3
  461. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +3 -3
  462. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +3 -3
  463. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +3 -3
  464. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +3 -3
  465. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +3 -3
  466. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +3 -3
  467. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +3 -3
  468. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +3 -3
  469. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +3 -3
  470. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +3 -3
  471. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +3 -3
  472. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +3 -3
  473. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +3 -3
  474. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +3 -3
  475. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +3 -3
  476. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +3 -3
  477. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +3 -3
  478. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +3 -3
  479. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +3 -3
  480. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +3 -3
  481. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +3 -3
  482. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +3 -3
  483. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +3 -3
  484. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +3 -3
  485. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +3 -3
  486. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +3 -3
  487. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +3 -3
  488. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +3 -3
  489. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +3 -3
  490. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +3 -3
  491. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +3 -3
  492. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +3 -3
  493. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +3 -3
  494. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +3 -3
  495. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +3 -3
  496. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +3 -3
  497. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +3 -3
  498. package/node_modules/@aws-sdk/client-ec2/package.json +17 -17
  499. package/node_modules/@aws-sdk/client-iam/dist-es/IAM.js +11 -11
  500. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +1 -1
  501. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +1 -1
  502. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
  503. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
  504. package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +176 -176
  505. package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +179 -179
  506. package/node_modules/@aws-sdk/client-iam/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  507. package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +1 -1
  508. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +1 -1
  509. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_1.d.ts +2 -2
  510. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/GetAccountAuthorizationDetailsPaginator.d.ts +1 -1
  511. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/GetGroupPaginator.d.ts +1 -1
  512. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListAccessKeysPaginator.d.ts +1 -1
  513. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListAccountAliasesPaginator.d.ts +1 -1
  514. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListAttachedGroupPoliciesPaginator.d.ts +1 -1
  515. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListAttachedRolePoliciesPaginator.d.ts +1 -1
  516. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListAttachedUserPoliciesPaginator.d.ts +1 -1
  517. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListEntitiesForPolicyPaginator.d.ts +1 -1
  518. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListGroupPoliciesPaginator.d.ts +1 -1
  519. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListGroupsForUserPaginator.d.ts +1 -1
  520. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListGroupsPaginator.d.ts +1 -1
  521. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListInstanceProfileTagsPaginator.d.ts +1 -1
  522. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListInstanceProfilesForRolePaginator.d.ts +1 -1
  523. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListInstanceProfilesPaginator.d.ts +1 -1
  524. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListMFADeviceTagsPaginator.d.ts +1 -1
  525. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListMFADevicesPaginator.d.ts +1 -1
  526. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListOpenIDConnectProviderTagsPaginator.d.ts +1 -1
  527. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListPoliciesPaginator.d.ts +1 -1
  528. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListPolicyTagsPaginator.d.ts +1 -1
  529. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListPolicyVersionsPaginator.d.ts +1 -1
  530. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListRolePoliciesPaginator.d.ts +1 -1
  531. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListRoleTagsPaginator.d.ts +1 -1
  532. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListRolesPaginator.d.ts +1 -1
  533. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListSAMLProviderTagsPaginator.d.ts +1 -1
  534. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListSSHPublicKeysPaginator.d.ts +1 -1
  535. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListServerCertificateTagsPaginator.d.ts +1 -1
  536. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListServerCertificatesPaginator.d.ts +1 -1
  537. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListSigningCertificatesPaginator.d.ts +1 -1
  538. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListUserPoliciesPaginator.d.ts +1 -1
  539. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListUserTagsPaginator.d.ts +1 -1
  540. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListUsersPaginator.d.ts +1 -1
  541. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/ListVirtualMFADevicesPaginator.d.ts +1 -1
  542. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/SimulateCustomPolicyPaginator.d.ts +1 -1
  543. package/node_modules/@aws-sdk/client-iam/dist-types/pagination/SimulatePrincipalPolicyPaginator.d.ts +1 -1
  544. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAMClient.d.ts +2 -3
  545. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  546. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +3 -3
  547. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +3 -3
  548. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +3 -3
  549. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +3 -3
  550. package/node_modules/@aws-sdk/client-iam/package.json +16 -16
  551. package/node_modules/@aws-sdk/client-lambda/dist-es/Lambda.js +8 -8
  552. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActive.js +1 -1
  553. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActiveV2.js +1 -1
  554. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +1 -1
  555. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdated.js +1 -1
  556. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
  557. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForPublishedVersionActive.js +1 -1
  558. package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +85 -85
  559. package/node_modules/@aws-sdk/client-lambda/dist-types/LambdaClient.d.ts +88 -88
  560. package/node_modules/@aws-sdk/client-lambda/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  561. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +1 -1
  562. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +1 -1
  563. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +1 -1
  564. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +1 -1
  565. package/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +1 -1
  566. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +1 -1
  567. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +2 -2
  568. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +1 -1
  569. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +1 -1
  570. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
  571. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +1 -1
  572. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +1 -1
  573. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +1 -1
  574. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +1 -1
  575. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +1 -1
  576. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +1 -1
  577. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +1 -1
  578. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +1 -1
  579. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsPaginator.d.ts +1 -1
  580. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayerVersionsPaginator.d.ts +1 -1
  581. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayersPaginator.d.ts +1 -1
  582. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +1 -1
  583. package/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +1 -1
  584. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +2 -3
  585. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  586. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +1 -1
  587. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +1 -1
  588. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +1 -1
  589. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +3 -3
  590. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +3 -3
  591. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +3 -3
  592. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +3 -3
  593. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +3 -3
  594. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +3 -3
  595. package/node_modules/@aws-sdk/client-lambda/package.json +16 -16
  596. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
  597. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +6 -6
  598. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -0
  599. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +1 -1
  600. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +1 -1
  601. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +1 -1
  602. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +1 -1
  603. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +107 -107
  604. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +114 -114
  605. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  606. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  607. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +4 -0
  608. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +39 -8
  609. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -8
  610. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +1 -1
  611. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +1 -1
  612. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -8
  613. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +39 -8
  614. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +1 -1
  615. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +1 -1
  616. package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +1 -1
  617. package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -1
  618. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +1 -1
  619. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +53 -2
  620. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +2 -2
  621. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +1 -1
  622. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +1 -1
  623. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +1 -1
  624. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +1 -1
  625. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +7 -8
  626. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  627. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +3 -3
  628. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +1 -1
  629. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +1 -1
  630. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +3 -3
  631. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +3 -3
  632. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +3 -3
  633. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +3 -3
  634. package/node_modules/@aws-sdk/client-s3/package.json +21 -21
  635. package/node_modules/@aws-sdk/client-sns/dist-es/SNS.js +5 -5
  636. package/node_modules/@aws-sdk/client-sns/dist-types/SNS.d.ts +42 -42
  637. package/node_modules/@aws-sdk/client-sns/dist-types/SNSClient.d.ts +45 -45
  638. package/node_modules/@aws-sdk/client-sns/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  639. package/node_modules/@aws-sdk/client-sns/dist-types/index.d.ts +1 -1
  640. package/node_modules/@aws-sdk/client-sns/dist-types/models/models_0.d.ts +1 -1
  641. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListEndpointsByPlatformApplicationPaginator.d.ts +1 -1
  642. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListOriginationNumbersPaginator.d.ts +1 -1
  643. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListPhoneNumbersOptedOutPaginator.d.ts +1 -1
  644. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListPlatformApplicationsPaginator.d.ts +1 -1
  645. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListSMSSandboxPhoneNumbersPaginator.d.ts +1 -1
  646. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListSubscriptionsByTopicPaginator.d.ts +1 -1
  647. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListSubscriptionsPaginator.d.ts +1 -1
  648. package/node_modules/@aws-sdk/client-sns/dist-types/pagination/ListTopicsPaginator.d.ts +1 -1
  649. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNSClient.d.ts +2 -3
  650. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  651. package/node_modules/@aws-sdk/client-sns/package.json +14 -14
  652. package/node_modules/@aws-sdk/client-sqs/dist-es/SQS.js +7 -7
  653. package/node_modules/@aws-sdk/client-sqs/dist-types/SQS.d.ts +23 -23
  654. package/node_modules/@aws-sdk/client-sqs/dist-types/SQSClient.d.ts +26 -26
  655. package/node_modules/@aws-sdk/client-sqs/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  656. package/node_modules/@aws-sdk/client-sqs/dist-types/index.d.ts +1 -1
  657. package/node_modules/@aws-sdk/client-sqs/dist-types/models/models_0.d.ts +1 -1
  658. package/node_modules/@aws-sdk/client-sqs/dist-types/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +1 -1
  659. package/node_modules/@aws-sdk/client-sqs/dist-types/pagination/ListQueuesPaginator.d.ts +1 -1
  660. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQSClient.d.ts +4 -5
  661. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  662. package/node_modules/@aws-sdk/client-sqs/package.json +16 -16
  663. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +3 -3
  664. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +2 -2
  665. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +146 -146
  666. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +149 -149
  667. package/node_modules/@aws-sdk/client-ssm/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  668. package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -1
  669. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +1 -1
  670. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +2 -2
  671. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +1 -1
  672. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +1 -1
  673. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +1 -1
  674. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +1 -1
  675. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +1 -1
  676. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +1 -1
  677. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +1 -1
  678. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +1 -1
  679. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +1 -1
  680. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +1 -1
  681. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +1 -1
  682. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +1 -1
  683. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +1 -1
  684. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePropertiesPaginator.d.ts +1 -1
  685. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +1 -1
  686. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +1 -1
  687. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +1 -1
  688. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +1 -1
  689. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +1 -1
  690. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +1 -1
  691. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +1 -1
  692. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +1 -1
  693. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +1 -1
  694. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +1 -1
  695. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +1 -1
  696. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +1 -1
  697. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +1 -1
  698. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +1 -1
  699. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +1 -1
  700. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +1 -1
  701. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +1 -1
  702. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +1 -1
  703. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +1 -1
  704. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +1 -1
  705. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +1 -1
  706. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +1 -1
  707. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +1 -1
  708. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +1 -1
  709. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +1 -1
  710. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +1 -1
  711. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +1 -1
  712. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +1 -1
  713. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +1 -1
  714. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListNodesPaginator.d.ts +1 -1
  715. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListNodesSummaryPaginator.d.ts +1 -1
  716. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +1 -1
  717. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +1 -1
  718. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +1 -1
  719. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +1 -1
  720. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +1 -1
  721. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +2 -3
  722. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  723. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +11 -11
  724. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +3 -3
  725. package/node_modules/@aws-sdk/client-ssm/package.json +15 -15
  726. package/node_modules/@aws-sdk/core/package.json +3 -3
  727. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  728. package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
  729. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  730. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  731. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  732. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  733. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  734. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  735. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +10 -10
  736. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsInputMiddleware.js +1 -1
  737. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +1 -1
  738. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
  739. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +3 -3
  740. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +5 -5
  741. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +1 -1
  742. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +5 -5
  743. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
  744. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +10 -10
  745. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +1 -1
  746. package/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -4
  747. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
  748. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +1 -1
  749. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
  750. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +1 -1
  751. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
  752. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +1 -1
  753. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
  754. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +1 -1
  755. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +2 -2
  756. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -1
  757. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentity.d.ts +2 -2
  758. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +3 -4
  759. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +1 -2
  760. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -1
  761. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +1 -1
  762. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +3 -4
  763. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +1 -2
  764. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -1
  765. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSO.d.ts +1 -1
  766. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +3 -4
  767. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +1 -2
  768. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -1
  769. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +1 -1
  770. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +3 -4
  771. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -2
  772. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -1
  773. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +2 -2
  774. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +3 -4
  775. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -2
  776. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -2
  777. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -1
  778. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +2 -2
  779. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  780. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +2 -5
  781. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  782. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +2 -2
  783. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  784. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +2 -2
  785. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  786. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +2 -5
  787. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  788. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  789. package/node_modules/@aws-sdk/nested-clients/package.json +13 -13
  790. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
  791. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  792. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  793. package/node_modules/@smithy/config-resolver/README.md +10 -3
  794. package/node_modules/@smithy/config-resolver/package.json +10 -11
  795. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +6 -0
  796. package/node_modules/@smithy/core/dist-cjs/index.js +1 -1
  797. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +21 -0
  798. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +21 -0
  799. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +46 -0
  800. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +6 -0
  801. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +24 -0
  802. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +19 -0
  803. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +27 -0
  804. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +5 -0
  805. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +10 -0
  806. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +44 -0
  807. package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +5 -0
  808. package/node_modules/@smithy/core/dist-cjs/setFeature.js +14 -0
  809. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +17 -0
  810. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +38 -0
  811. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +15 -0
  812. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +6 -0
  813. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +9 -0
  814. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +6 -0
  815. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +61 -0
  816. package/node_modules/@smithy/core/package.json +15 -16
  817. package/node_modules/@smithy/credential-provider-imds/README.md +12 -3
  818. package/node_modules/@smithy/credential-provider-imds/package.json +9 -10
  819. package/node_modules/@smithy/eventstream-codec/README.md +13 -0
  820. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +13 -0
  821. package/node_modules/@smithy/eventstream-codec/package.json +6 -7
  822. package/node_modules/@smithy/eventstream-serde-browser/README.md +10 -3
  823. package/node_modules/@smithy/eventstream-serde-browser/package.json +7 -8
  824. package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +10 -3
  825. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +7 -8
  826. package/node_modules/@smithy/eventstream-serde-node/README.md +10 -3
  827. package/node_modules/@smithy/eventstream-serde-node/package.json +7 -8
  828. package/node_modules/@smithy/eventstream-serde-universal/README.md +10 -3
  829. package/node_modules/@smithy/eventstream-serde-universal/package.json +9 -10
  830. package/node_modules/@smithy/fetch-http-handler/package.json +12 -13
  831. package/node_modules/@smithy/hash-blob-browser/README.md +10 -3
  832. package/node_modules/@smithy/hash-blob-browser/package.json +6 -7
  833. package/node_modules/@smithy/hash-node/README.md +10 -3
  834. package/node_modules/@smithy/hash-node/package.json +6 -7
  835. package/node_modules/@smithy/hash-stream-node/README.md +9 -4
  836. package/node_modules/@smithy/hash-stream-node/package.json +6 -7
  837. package/node_modules/@smithy/invalid-dependency/README.md +10 -3
  838. package/node_modules/@smithy/invalid-dependency/package.json +6 -7
  839. package/node_modules/@smithy/md5-js/README.md +10 -3
  840. package/node_modules/@smithy/md5-js/package.json +6 -7
  841. package/node_modules/@smithy/middleware-compression/package.json +9 -10
  842. package/node_modules/@smithy/middleware-content-length/README.md +13 -0
  843. package/node_modules/@smithy/middleware-content-length/package.json +7 -8
  844. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +2 -2
  845. package/node_modules/@smithy/middleware-endpoint/package.json +13 -14
  846. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +70 -29
  847. package/node_modules/@smithy/middleware-retry/dist-es/index.js +5 -4
  848. package/node_modules/@smithy/middleware-retry/dist-es/longPollMiddleware.js +15 -0
  849. package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +49 -0
  850. package/node_modules/@smithy/middleware-retry/dist-es/{StandardRetryStrategy.js → retry-pre-sra-deprecated/StandardRetryStrategy.js} +1 -1
  851. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +13 -20
  852. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +3 -1
  853. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +5 -4
  854. package/node_modules/@smithy/middleware-retry/dist-types/longPollMiddleware.d.ts +15 -0
  855. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +2 -0
  856. package/node_modules/@smithy/middleware-retry/dist-types/parseRetryAfterHeader.d.ts +10 -0
  857. package/node_modules/@smithy/middleware-retry/dist-types/{AdaptiveRetryStrategy.d.ts → retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts} +2 -1
  858. package/node_modules/@smithy/middleware-retry/dist-types/{defaultRetryQuota.d.ts → retry-pre-sra-deprecated/defaultRetryQuota.d.ts} +2 -0
  859. package/node_modules/@smithy/middleware-retry/dist-types/{delayDecider.d.ts → retry-pre-sra-deprecated/delayDecider.d.ts} +2 -1
  860. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -4
  861. package/node_modules/@smithy/middleware-retry/package.json +16 -16
  862. package/node_modules/@smithy/middleware-serde/package.json +10 -11
  863. package/node_modules/@smithy/middleware-stack/README.md +13 -0
  864. package/node_modules/@smithy/middleware-stack/package.json +7 -8
  865. package/node_modules/@smithy/node-config-provider/README.md +10 -3
  866. package/node_modules/@smithy/node-config-provider/package.json +8 -9
  867. package/node_modules/@smithy/node-http-handler/package.json +10 -11
  868. package/node_modules/@smithy/property-provider/README.md +10 -3
  869. package/node_modules/@smithy/property-provider/package.json +6 -7
  870. package/node_modules/@smithy/protocol-http/README.md +13 -0
  871. package/node_modules/@smithy/protocol-http/package.json +6 -7
  872. package/node_modules/@smithy/querystring-builder/README.md +10 -3
  873. package/node_modules/@smithy/querystring-builder/package.json +6 -7
  874. package/node_modules/@smithy/querystring-parser/README.md +10 -3
  875. package/node_modules/@smithy/querystring-parser/package.json +6 -7
  876. package/node_modules/@smithy/service-error-classification/README.md +13 -0
  877. package/node_modules/@smithy/service-error-classification/package.json +6 -7
  878. package/node_modules/@smithy/shared-ini-file-loader/package.json +7 -8
  879. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +13 -0
  880. package/node_modules/@smithy/signature-v4/package.json +9 -10
  881. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1 -1
  882. package/node_modules/@smithy/smithy-client/package.json +14 -15
  883. package/node_modules/@smithy/types/dist-types/middleware.d.ts +6 -0
  884. package/node_modules/@smithy/types/dist-types/retry.d.ts +4 -0
  885. package/node_modules/@smithy/types/package.json +7 -8
  886. package/node_modules/@smithy/url-parser/README.md +10 -3
  887. package/node_modules/@smithy/url-parser/package.json +7 -8
  888. package/node_modules/@smithy/util-defaults-mode-browser/package.json +8 -9
  889. package/node_modules/@smithy/util-defaults-mode-node/package.json +11 -12
  890. package/node_modules/@smithy/util-endpoints/README.md +10 -3
  891. package/node_modules/@smithy/util-endpoints/package.json +9 -10
  892. package/node_modules/@smithy/util-middleware/README.md +9 -4
  893. package/node_modules/@smithy/util-middleware/package.json +6 -7
  894. package/node_modules/@smithy/util-retry/dist-cjs/index.js +129 -80
  895. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +7 -4
  896. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +2 -2
  897. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +30 -29
  898. package/node_modules/@smithy/util-retry/dist-es/DefaultRetryBackoffStrategy.js +14 -0
  899. package/node_modules/@smithy/util-retry/dist-es/DefaultRetryToken.js +25 -0
  900. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +39 -26
  901. package/node_modules/@smithy/util-retry/dist-es/index.js +1 -0
  902. package/node_modules/@smithy/util-retry/dist-es/retries-2026-config.js +18 -0
  903. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +8 -8
  904. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +2 -2
  905. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +78 -8
  906. package/node_modules/@smithy/util-retry/dist-types/DefaultRetryBackoffStrategy.d.ts +12 -0
  907. package/node_modules/@smithy/util-retry/dist-types/DefaultRetryToken.d.ts +15 -0
  908. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +21 -4
  909. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +4 -4
  910. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +15 -14
  911. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +1 -0
  912. package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +11 -0
  913. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +1 -1
  914. package/node_modules/@smithy/util-retry/package.json +10 -11
  915. package/node_modules/@smithy/util-stream/package.json +12 -13
  916. package/node_modules/@smithy/util-waiter/package.json +7 -8
  917. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
  918. package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
  919. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
  920. package/node_modules/path-expression-matcher/package.json +1 -1
  921. package/node_modules/path-expression-matcher/src/Matcher.js +20 -6
  922. package/package.json +10 -10
  923. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
  924. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
  925. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +0 -16
  926. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -37
  927. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
  928. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
  929. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +0 -12
  930. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +0 -9
  931. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -17
  932. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -4
  933. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -8
  934. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -4
  935. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -34
  936. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +0 -11
  937. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +0 -10
  938. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +0 -15
  939. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +0 -13
  940. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +0 -14
  941. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +0 -19
  942. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +0 -13
  943. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +0 -13
  944. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +0 -14
  945. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +0 -12
  946. package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
  947. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +0 -8
  948. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -18
  949. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +0 -18
  950. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +0 -33
  951. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +0 -3
  952. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +0 -10
  953. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +0 -9
  954. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +0 -5
  955. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +0 -2
  956. package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
  957. package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +0 -7
  958. package/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +0 -5
  959. package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +0 -12
  960. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +0 -33
  961. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +0 -28
  962. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +0 -6
  963. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +0 -17
  964. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +0 -9
  965. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +0 -65
  966. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +0 -26
  967. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +0 -5
  968. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +0 -31
  969. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +0 -1
  970. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/toEndpointV1.d.ts +0 -6
  971. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +0 -60
  972. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +0 -1
  973. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +0 -31
  974. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +0 -89
  975. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +0 -16
  976. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +0 -16
  977. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +0 -10
  978. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +0 -7
  979. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +0 -13
  980. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +0 -51
  981. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +0 -4
  982. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +0 -13
  983. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +0 -21
  984. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +0 -23
  985. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +0 -14
  986. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +0 -9
  987. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +0 -71
  988. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +0 -6
  989. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +0 -14
  990. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +0 -14
  991. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +0 -11
  992. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +0 -9
  993. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +0 -6
  994. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +0 -37
  995. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +0 -23
  996. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +0 -24
  997. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +0 -146
  998. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +0 -23
  999. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +0 -16
  1000. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +0 -28
  1001. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +0 -23
  1002. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +0 -7
  1003. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +0 -23
  1004. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +0 -13
  1005. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +0 -6
  1006. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +0 -73
  1007. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +0 -2
  1008. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +0 -10
  1009. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +0 -45
  1010. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +0 -270
  1011. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +0 -6
  1012. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +0 -47
  1013. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +0 -11
  1014. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +0 -5
  1015. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +0 -33
  1016. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +0 -15
  1017. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -8
  1018. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +0 -8
  1019. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +0 -3
  1020. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +0 -8
  1021. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +0 -3
  1022. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +0 -30
  1023. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +0 -7
  1024. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +0 -13
  1025. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +0 -7
  1026. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +0 -13
  1027. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +0 -12
  1028. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +0 -21
  1029. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +0 -10
  1030. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +0 -28
  1031. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +0 -19
  1032. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +0 -40
  1033. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +0 -6
  1034. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +0 -8
  1035. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +0 -10
  1036. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +0 -7
  1037. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
  1038. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +0 -21
  1039. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +0 -16
  1040. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +0 -31
  1041. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +0 -12
  1042. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +0 -20
  1043. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +0 -26
  1044. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +0 -17
  1045. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +0 -18
  1046. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +0 -17
  1047. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +0 -17
  1048. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +0 -2
  1049. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +0 -8
  1050. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +0 -11
  1051. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +0 -12
  1052. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -47
  1053. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +0 -12
  1054. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +0 -3
  1055. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +0 -13
  1056. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/ts3.4/EventStreamSerdeConfig.d.ts +0 -27
  1057. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/ts3.4/index.d.ts +0 -4
  1058. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
  1059. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/index.d.ts +0 -8
  1060. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +0 -3
  1061. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +0 -12
  1062. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
  1063. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +0 -4
  1064. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +0 -18
  1065. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +0 -8
  1066. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +0 -3
  1067. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +0 -6
  1068. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +0 -42
  1069. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +0 -2
  1070. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +0 -1
  1071. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +0 -2
  1072. package/node_modules/@smithy/hash-blob-browser/dist-types/ts3.4/index.d.ts +0 -5
  1073. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +0 -13
  1074. package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +0 -11
  1075. package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/fileStreamHasher.d.ts +0 -6
  1076. package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/index.d.ts +0 -8
  1077. package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/readableStreamHasher.d.ts +0 -6
  1078. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +0 -8
  1079. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +0 -4
  1080. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +0 -5
  1081. package/node_modules/@smithy/md5-js/dist-types/ts3.4/constants.d.ts +0 -12
  1082. package/node_modules/@smithy/md5-js/dist-types/ts3.4/index.d.ts +0 -16
  1083. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +0 -6
  1084. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +0 -14
  1085. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  1086. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +0 -4
  1087. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +0 -28
  1088. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +0 -2
  1089. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +0 -8
  1090. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +0 -6
  1091. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +0 -10
  1092. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +0 -11
  1093. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +0 -18
  1094. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +0 -109
  1095. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +0 -32
  1096. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +0 -4
  1097. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +0 -26
  1098. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +0 -41
  1099. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -23
  1100. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -33
  1101. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +0 -66
  1102. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +0 -24
  1103. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +0 -5
  1104. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +0 -7
  1105. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  1106. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  1107. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +0 -13
  1108. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +0 -6
  1109. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +0 -18
  1110. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +0 -65
  1111. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +0 -2
  1112. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +0 -6
  1113. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +0 -3
  1114. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +0 -24
  1115. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +0 -6
  1116. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +0 -5
  1117. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +0 -1
  1118. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +0 -22
  1119. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +0 -31
  1120. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +0 -20
  1121. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +0 -22
  1122. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +0 -9
  1123. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +0 -9
  1124. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +0 -4
  1125. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +0 -10
  1126. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  1127. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  1128. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  1129. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -46
  1130. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
  1131. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
  1132. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -63
  1133. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -13
  1134. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  1135. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  1136. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +0 -6
  1137. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  1138. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  1139. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
  1140. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
  1141. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -13
  1142. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
  1143. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -12
  1144. package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +0 -31
  1145. package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +0 -39
  1146. package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +0 -31
  1147. package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +0 -13
  1148. package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +0 -5
  1149. package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +0 -24
  1150. package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +0 -40
  1151. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +0 -50
  1152. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +0 -44
  1153. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +0 -33
  1154. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1155. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +0 -35
  1156. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +0 -56
  1157. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +0 -29
  1158. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +0 -8
  1159. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +0 -1
  1160. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +0 -21
  1161. package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +0 -5
  1162. package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +0 -5
  1163. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +0 -30
  1164. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +0 -24
  1165. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +0 -4
  1166. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +0 -9
  1167. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +0 -8
  1168. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +0 -2
  1169. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +0 -2
  1170. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +0 -6
  1171. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +0 -15
  1172. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +0 -5
  1173. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +0 -52
  1174. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +0 -6
  1175. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +0 -10
  1176. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +0 -33
  1177. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +0 -17
  1178. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +0 -7
  1179. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +0 -2
  1180. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +0 -18
  1181. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +0 -21
  1182. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +0 -16
  1183. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +0 -24
  1184. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +0 -21
  1185. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +0 -69
  1186. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +0 -43
  1187. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +0 -30
  1188. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +0 -5
  1189. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +0 -5
  1190. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +0 -5
  1191. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +0 -4
  1192. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +0 -11
  1193. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +0 -10
  1194. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +0 -5
  1195. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +0 -24
  1196. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +0 -14
  1197. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +0 -2
  1198. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +0 -11
  1199. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +0 -87
  1200. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +0 -5
  1201. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +0 -119
  1202. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +0 -4
  1203. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +0 -18
  1204. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +0 -15
  1205. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +0 -28
  1206. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +0 -8
  1207. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +0 -42
  1208. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +0 -5
  1209. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +0 -26
  1210. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -38
  1211. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1212. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1213. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +0 -7
  1214. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +0 -7
  1215. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +0 -21
  1216. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +0 -5
  1217. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +0 -178
  1218. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +0 -5
  1219. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +0 -9
  1220. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +0 -15
  1221. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +0 -12
  1222. package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
  1223. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
  1224. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  1225. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  1226. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1227. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  1228. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  1229. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  1230. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  1231. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  1232. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  1233. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
  1234. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
  1235. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
  1236. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  1237. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
  1238. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
  1239. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  1240. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  1241. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
  1242. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  1243. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
  1244. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
  1245. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
  1246. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
  1247. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  1248. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
  1249. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
  1250. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
  1251. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  1252. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1253. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  1254. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1255. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  1256. package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
  1257. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -128
  1258. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -113
  1259. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  1260. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
  1261. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  1262. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  1263. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  1264. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -43
  1265. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  1266. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
  1267. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
  1268. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  1269. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  1270. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  1271. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +0 -149
  1272. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -251
  1273. package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
  1274. package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +0 -118
  1275. package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
  1276. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
  1277. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
  1278. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
  1279. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  1280. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  1281. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  1282. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  1283. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
  1284. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  1285. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
  1286. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  1287. package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
  1288. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
  1289. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  1290. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  1291. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  1292. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  1293. package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +0 -5
  1294. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +0 -12
  1295. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +0 -4
  1296. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1297. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +0 -16
  1298. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +0 -24
  1299. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +0 -6
  1300. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +0 -4
  1301. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1302. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +0 -34
  1303. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +0 -1
  1304. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +0 -2
  1305. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +0 -9
  1306. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +0 -2
  1307. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
  1308. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +0 -5
  1309. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +0 -7
  1310. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +0 -4
  1311. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +0 -9
  1312. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -4
  1313. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +0 -5
  1314. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +0 -7
  1315. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +0 -5
  1316. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +0 -5
  1317. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +0 -5
  1318. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +0 -7
  1319. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +0 -4
  1320. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -6
  1321. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -3
  1322. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +0 -2
  1323. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -5
  1324. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -2
  1325. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -4
  1326. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -3
  1327. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -7
  1328. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -25
  1329. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +0 -1
  1330. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +0 -4
  1331. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +0 -11
  1332. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +0 -8
  1333. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +0 -8
  1334. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +0 -3
  1335. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +0 -2
  1336. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +0 -7
  1337. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +0 -8
  1338. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +0 -2
  1339. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +0 -1
  1340. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +0 -2
  1341. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +0 -8
  1342. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +0 -1
  1343. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +0 -2
  1344. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +0 -2
  1345. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +0 -2
  1346. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
  1347. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +0 -8
  1348. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
  1349. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +0 -14
  1350. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +0 -11
  1351. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +0 -5
  1352. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +0 -9
  1353. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -33
  1354. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +0 -32
  1355. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +0 -49
  1356. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -26
  1357. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +0 -20
  1358. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +0 -59
  1359. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +0 -5
  1360. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +0 -9
  1361. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +0 -7
  1362. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +0 -19
  1363. package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +0 -13
  1364. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
  1365. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +0 -37
  1366. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +0 -61
  1367. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +0 -14
  1368. package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +0 -13
  1369. package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +0 -15
  1370. package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +0 -54
  1371. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +0 -5
  1372. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +0 -10
  1373. package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +0 -7
  1374. package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +0 -9
  1375. package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +0 -12
  1376. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +0 -7
  1377. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +0 -8
  1378. package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +0 -8
  1379. package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +0 -17
  1380. package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +0 -17
  1381. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/circularReplacer.d.ts +0 -6
  1382. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +0 -11
  1383. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +0 -2
  1384. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +0 -10
  1385. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +0 -8
  1386. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +0 -4
  1387. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +0 -8
  1388. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +0 -49
  1389. /package/node_modules/@smithy/middleware-retry/dist-es/{AdaptiveRetryStrategy.js → retry-pre-sra-deprecated/AdaptiveRetryStrategy.js} +0 -0
  1390. /package/node_modules/@smithy/middleware-retry/dist-es/{defaultRetryQuota.js → retry-pre-sra-deprecated/defaultRetryQuota.js} +0 -0
  1391. /package/node_modules/@smithy/middleware-retry/dist-es/{delayDecider.js → retry-pre-sra-deprecated/delayDecider.js} +0 -0
  1392. /package/node_modules/@smithy/middleware-retry/dist-es/{retryDecider.js → retry-pre-sra-deprecated/retryDecider.js} +0 -0
  1393. /package/node_modules/@smithy/middleware-retry/dist-es/{types.js → retry-pre-sra-deprecated/types.js} +0 -0
  1394. /package/node_modules/@smithy/middleware-retry/dist-types/{StandardRetryStrategy.d.ts → retry-pre-sra-deprecated/StandardRetryStrategy.d.ts} +0 -0
  1395. /package/node_modules/@smithy/middleware-retry/dist-types/{retryDecider.d.ts → retry-pre-sra-deprecated/retryDecider.d.ts} +0 -0
  1396. /package/node_modules/@smithy/middleware-retry/dist-types/{types.d.ts → retry-pre-sra-deprecated/types.d.ts} +0 -0
@@ -7,6 +7,17 @@ var uuid = require('@smithy/uuid');
7
7
  var utilMiddleware = require('@smithy/util-middleware');
8
8
  var smithyClient = require('@smithy/smithy-client');
9
9
  var isStreamingPayload = require('./isStreamingPayload/isStreamingPayload');
10
+ var serde = require('@smithy/core/serde');
11
+
12
+ const asSdkError = (error) => {
13
+ if (error instanceof Error)
14
+ return error;
15
+ if (error instanceof Object)
16
+ return Object.assign(new Error(), error);
17
+ if (typeof error === "string")
18
+ return new Error(error);
19
+ return new Error(`AWS SDK error wrapper for ${error}`);
20
+ };
10
21
 
11
22
  const getDefaultRetryQuota = (initialRetryTokens, options) => {
12
23
  const MAX_CAPACITY = initialRetryTokens;
@@ -44,16 +55,6 @@ const defaultRetryDecider = (error) => {
44
55
  return serviceErrorClassification.isRetryableByTrait(error) || serviceErrorClassification.isClockSkewError(error) || serviceErrorClassification.isThrottlingError(error) || serviceErrorClassification.isTransientError(error);
45
56
  };
46
57
 
47
- const asSdkError = (error) => {
48
- if (error instanceof Error)
49
- return error;
50
- if (error instanceof Object)
51
- return Object.assign(new Error(), error);
52
- if (typeof error === "string")
53
- return new Error(error);
54
- return new Error(`AWS SDK error wrapper for ${error}`);
55
- };
56
-
57
58
  class StandardRetryStrategy {
58
59
  maxAttemptsProvider;
59
60
  retryDecider;
@@ -229,12 +230,60 @@ const getOmitRetryHeadersPlugin = (options) => ({
229
230
  },
230
231
  });
231
232
 
233
+ function parseRetryAfterHeader(response, logger) {
234
+ if (!protocolHttp.HttpResponse.isInstance(response)) {
235
+ return;
236
+ }
237
+ for (const header of Object.keys(response.headers)) {
238
+ const h = header.toLowerCase();
239
+ if (h === "retry-after") {
240
+ const retryAfter = response.headers[header];
241
+ let retryAfterSeconds = NaN;
242
+ if (retryAfter.endsWith("GMT")) {
243
+ try {
244
+ const date = serde.parseRfc7231DateTime(retryAfter);
245
+ retryAfterSeconds = (date.getTime() - Date.now()) / 1000;
246
+ }
247
+ catch (e) {
248
+ logger?.trace?.("Failed to parse retry-after header");
249
+ logger?.trace?.(e);
250
+ }
251
+ }
252
+ else if (retryAfter.match(/ GMT, ((\d+)|(\d+\.\d+))$/)) {
253
+ retryAfterSeconds = Number(retryAfter.match(/ GMT, ([\d.]+)$/)?.[1]);
254
+ }
255
+ else if (retryAfter.match(/^((\d+)|(\d+\.\d+))$/)) {
256
+ retryAfterSeconds = Number(retryAfter);
257
+ }
258
+ else if (Date.parse(retryAfter) >= Date.now()) {
259
+ retryAfterSeconds = (Date.parse(retryAfter) - Date.now()) / 1000;
260
+ }
261
+ if (isNaN(retryAfterSeconds)) {
262
+ return;
263
+ }
264
+ return new Date(Date.now() + retryAfterSeconds * 1000);
265
+ }
266
+ else if (h === "x-amz-retry-after") {
267
+ const v = response.headers[header];
268
+ const backoffMilliseconds = Number(v);
269
+ if (isNaN(backoffMilliseconds)) {
270
+ logger?.trace?.(`Failed to parse x-amz-retry-after=${v}`);
271
+ return;
272
+ }
273
+ return new Date(Date.now() + backoffMilliseconds);
274
+ }
275
+ }
276
+ }
277
+ function getRetryAfterHint(response, logger) {
278
+ return parseRetryAfterHeader(response, logger);
279
+ }
280
+
232
281
  const retryMiddleware = (options) => (next, context) => async (args) => {
233
282
  let retryStrategy = await options.retryStrategy();
234
283
  const maxAttempts = await options.maxAttempts();
235
284
  if (isRetryStrategyV2(retryStrategy)) {
236
285
  retryStrategy = retryStrategy;
237
- let retryToken = await retryStrategy.acquireInitialRetryToken(context["partition_id"]);
286
+ let retryToken = await retryStrategy.acquireInitialRetryToken((context["partition_id"] ?? "") + (context.__retryLongPoll ? ":longpoll" : ""));
238
287
  let lastError = new Error();
239
288
  let attempts = 0;
240
289
  let totalRetryDelay = 0;
@@ -255,7 +304,7 @@ const retryMiddleware = (options) => (next, context) => async (args) => {
255
304
  return { response, output };
256
305
  }
257
306
  catch (e) {
258
- const retryErrorInfo = getRetryErrorInfo(e);
307
+ const retryErrorInfo = getRetryErrorInfo(e, options.logger);
259
308
  lastError = asSdkError(e);
260
309
  if (isRequest && isStreamingPayload.isStreamingPayload(request)) {
261
310
  (context.logger instanceof smithyClient.NoOpLogger ? console : context.logger)?.warn("An error was encountered in a non-retryable streaming request.");
@@ -265,6 +314,9 @@ const retryMiddleware = (options) => (next, context) => async (args) => {
265
314
  retryToken = await retryStrategy.refreshRetryTokenForRetry(retryToken, retryErrorInfo);
266
315
  }
267
316
  catch (refreshError) {
317
+ if (typeof refreshError.$backoff === "number") {
318
+ await cooldown(refreshError.$backoff);
319
+ }
268
320
  if (!lastError.$metadata) {
269
321
  lastError.$metadata = {};
270
322
  }
@@ -275,26 +327,28 @@ const retryMiddleware = (options) => (next, context) => async (args) => {
275
327
  attempts = retryToken.getRetryCount();
276
328
  const delay = retryToken.getRetryDelay();
277
329
  totalRetryDelay += delay;
278
- await new Promise((resolve) => setTimeout(resolve, delay));
330
+ await cooldown(delay);
279
331
  }
280
332
  }
281
333
  }
282
334
  else {
283
335
  retryStrategy = retryStrategy;
284
- if (retryStrategy?.mode)
336
+ if (retryStrategy?.mode) {
285
337
  context.userAgent = [...(context.userAgent || []), ["cfg/retry-mode", retryStrategy.mode]];
338
+ }
286
339
  return retryStrategy.retry(next, args);
287
340
  }
288
341
  };
342
+ const cooldown = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
289
343
  const isRetryStrategyV2 = (retryStrategy) => typeof retryStrategy.acquireInitialRetryToken !== "undefined" &&
290
344
  typeof retryStrategy.refreshRetryTokenForRetry !== "undefined" &&
291
345
  typeof retryStrategy.recordSuccess !== "undefined";
292
- const getRetryErrorInfo = (error) => {
346
+ const getRetryErrorInfo = (error, logger) => {
293
347
  const errorInfo = {
294
348
  error,
295
349
  errorType: getRetryErrorType(error),
296
350
  };
297
- const retryAfterHint = getRetryAfterHint(error.$response);
351
+ const retryAfterHint = parseRetryAfterHeader(error.$response, logger);
298
352
  if (retryAfterHint) {
299
353
  errorInfo.retryAfterHint = retryAfterHint;
300
354
  }
@@ -321,19 +375,6 @@ const getRetryPlugin = (options) => ({
321
375
  clientStack.add(retryMiddleware(options), retryMiddlewareOptions);
322
376
  },
323
377
  });
324
- const getRetryAfterHint = (response) => {
325
- if (!protocolHttp.HttpResponse.isInstance(response))
326
- return;
327
- const retryAfterHeaderName = Object.keys(response.headers).find((key) => key.toLowerCase() === "retry-after");
328
- if (!retryAfterHeaderName)
329
- return;
330
- const retryAfter = response.headers[retryAfterHeaderName];
331
- const retryAfterSeconds = Number(retryAfter);
332
- if (!Number.isNaN(retryAfterSeconds))
333
- return new Date(retryAfterSeconds * 1000);
334
- const retryAfterDate = new Date(retryAfter);
335
- return retryAfterDate;
336
- };
337
378
 
338
379
  exports.AdaptiveRetryStrategy = AdaptiveRetryStrategy;
339
380
  exports.CONFIG_MAX_ATTEMPTS = CONFIG_MAX_ATTEMPTS;
@@ -1,7 +1,8 @@
1
- export * from "./AdaptiveRetryStrategy";
2
- export * from "./StandardRetryStrategy";
1
+ export * from "./retry-pre-sra-deprecated/AdaptiveRetryStrategy";
2
+ export * from "./retry-pre-sra-deprecated/StandardRetryStrategy";
3
+ export * from "./retry-pre-sra-deprecated/delayDecider";
4
+ export * from "./retry-pre-sra-deprecated/retryDecider";
3
5
  export * from "./configurations";
4
- export * from "./delayDecider";
5
6
  export * from "./omitRetryHeadersMiddleware";
6
- export * from "./retryDecider";
7
7
  export * from "./retryMiddleware";
8
+ export { getRetryAfterHint } from "./parseRetryAfterHeader";
@@ -0,0 +1,15 @@
1
+ export const longPollMiddleware = () => (next, context) => async (args) => {
2
+ context.__retryLongPoll = true;
3
+ return next(args);
4
+ };
5
+ export const longPollMiddlewareOptions = {
6
+ name: "longPollMiddleware",
7
+ tags: ["RETRY"],
8
+ step: "initialize",
9
+ override: true,
10
+ };
11
+ export const getLongPollPlugin = (options) => ({
12
+ applyToStack: (clientStack) => {
13
+ clientStack.add(longPollMiddleware(), longPollMiddlewareOptions);
14
+ },
15
+ });
@@ -0,0 +1,49 @@
1
+ import { parseRfc7231DateTime } from "@smithy/core/serde";
2
+ import { HttpResponse } from "@smithy/protocol-http";
3
+ export function parseRetryAfterHeader(response, logger) {
4
+ if (!HttpResponse.isInstance(response)) {
5
+ return;
6
+ }
7
+ for (const header of Object.keys(response.headers)) {
8
+ const h = header.toLowerCase();
9
+ if (h === "retry-after") {
10
+ const retryAfter = response.headers[header];
11
+ let retryAfterSeconds = NaN;
12
+ if (retryAfter.endsWith("GMT")) {
13
+ try {
14
+ const date = parseRfc7231DateTime(retryAfter);
15
+ retryAfterSeconds = (date.getTime() - Date.now()) / 1000;
16
+ }
17
+ catch (e) {
18
+ logger?.trace?.("Failed to parse retry-after header");
19
+ logger?.trace?.(e);
20
+ }
21
+ }
22
+ else if (retryAfter.match(/ GMT, ((\d+)|(\d+\.\d+))$/)) {
23
+ retryAfterSeconds = Number(retryAfter.match(/ GMT, ([\d.]+)$/)?.[1]);
24
+ }
25
+ else if (retryAfter.match(/^((\d+)|(\d+\.\d+))$/)) {
26
+ retryAfterSeconds = Number(retryAfter);
27
+ }
28
+ else if (Date.parse(retryAfter) >= Date.now()) {
29
+ retryAfterSeconds = (Date.parse(retryAfter) - Date.now()) / 1000;
30
+ }
31
+ if (isNaN(retryAfterSeconds)) {
32
+ return;
33
+ }
34
+ return new Date(Date.now() + retryAfterSeconds * 1000);
35
+ }
36
+ else if (h === "x-amz-retry-after") {
37
+ const v = response.headers[header];
38
+ const backoffMilliseconds = Number(v);
39
+ if (isNaN(backoffMilliseconds)) {
40
+ logger?.trace?.(`Failed to parse x-amz-retry-after=${v}`);
41
+ return;
42
+ }
43
+ return new Date(Date.now() + backoffMilliseconds);
44
+ }
45
+ }
46
+ }
47
+ export function getRetryAfterHint(response, logger) {
48
+ return parseRetryAfterHeader(response, logger);
49
+ }
@@ -2,10 +2,10 @@ import { HttpRequest, HttpResponse } from "@smithy/protocol-http";
2
2
  import { isThrottlingError } from "@smithy/service-error-classification";
3
3
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_DELAY_BASE, INITIAL_RETRY_TOKENS, INVOCATION_ID_HEADER, REQUEST_HEADER, RETRY_MODES, THROTTLING_RETRY_DELAY_BASE, } from "@smithy/util-retry";
4
4
  import { v4 } from "@smithy/uuid";
5
+ import { asSdkError } from "../util";
5
6
  import { getDefaultRetryQuota } from "./defaultRetryQuota";
6
7
  import { defaultDelayDecider } from "./delayDecider";
7
8
  import { defaultRetryDecider } from "./retryDecider";
8
- import { asSdkError } from "./util";
9
9
  export class StandardRetryStrategy {
10
10
  maxAttemptsProvider;
11
11
  retryDecider;
@@ -1,16 +1,17 @@
1
- import { HttpRequest, HttpResponse } from "@smithy/protocol-http";
1
+ import { HttpRequest } from "@smithy/protocol-http";
2
2
  import { isServerError, isThrottlingError, isTransientError } from "@smithy/service-error-classification";
3
3
  import { NoOpLogger } from "@smithy/smithy-client";
4
4
  import { INVOCATION_ID_HEADER, REQUEST_HEADER } from "@smithy/util-retry";
5
5
  import { v4 } from "@smithy/uuid";
6
6
  import { isStreamingPayload } from "./isStreamingPayload/isStreamingPayload";
7
+ import { parseRetryAfterHeader } from "./parseRetryAfterHeader";
7
8
  import { asSdkError } from "./util";
8
9
  export const retryMiddleware = (options) => (next, context) => async (args) => {
9
10
  let retryStrategy = await options.retryStrategy();
10
11
  const maxAttempts = await options.maxAttempts();
11
12
  if (isRetryStrategyV2(retryStrategy)) {
12
13
  retryStrategy = retryStrategy;
13
- let retryToken = await retryStrategy.acquireInitialRetryToken(context["partition_id"]);
14
+ let retryToken = await retryStrategy.acquireInitialRetryToken((context["partition_id"] ?? "") + (context.__retryLongPoll ? ":longpoll" : ""));
14
15
  let lastError = new Error();
15
16
  let attempts = 0;
16
17
  let totalRetryDelay = 0;
@@ -31,7 +32,7 @@ export const retryMiddleware = (options) => (next, context) => async (args) => {
31
32
  return { response, output };
32
33
  }
33
34
  catch (e) {
34
- const retryErrorInfo = getRetryErrorInfo(e);
35
+ const retryErrorInfo = getRetryErrorInfo(e, options.logger);
35
36
  lastError = asSdkError(e);
36
37
  if (isRequest && isStreamingPayload(request)) {
37
38
  (context.logger instanceof NoOpLogger ? console : context.logger)?.warn("An error was encountered in a non-retryable streaming request.");
@@ -41,6 +42,9 @@ export const retryMiddleware = (options) => (next, context) => async (args) => {
41
42
  retryToken = await retryStrategy.refreshRetryTokenForRetry(retryToken, retryErrorInfo);
42
43
  }
43
44
  catch (refreshError) {
45
+ if (typeof refreshError.$backoff === "number") {
46
+ await cooldown(refreshError.$backoff);
47
+ }
44
48
  if (!lastError.$metadata) {
45
49
  lastError.$metadata = {};
46
50
  }
@@ -51,26 +55,28 @@ export const retryMiddleware = (options) => (next, context) => async (args) => {
51
55
  attempts = retryToken.getRetryCount();
52
56
  const delay = retryToken.getRetryDelay();
53
57
  totalRetryDelay += delay;
54
- await new Promise((resolve) => setTimeout(resolve, delay));
58
+ await cooldown(delay);
55
59
  }
56
60
  }
57
61
  }
58
62
  else {
59
63
  retryStrategy = retryStrategy;
60
- if (retryStrategy?.mode)
64
+ if (retryStrategy?.mode) {
61
65
  context.userAgent = [...(context.userAgent || []), ["cfg/retry-mode", retryStrategy.mode]];
66
+ }
62
67
  return retryStrategy.retry(next, args);
63
68
  }
64
69
  };
70
+ const cooldown = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
65
71
  const isRetryStrategyV2 = (retryStrategy) => typeof retryStrategy.acquireInitialRetryToken !== "undefined" &&
66
72
  typeof retryStrategy.refreshRetryTokenForRetry !== "undefined" &&
67
73
  typeof retryStrategy.recordSuccess !== "undefined";
68
- const getRetryErrorInfo = (error) => {
74
+ const getRetryErrorInfo = (error, logger) => {
69
75
  const errorInfo = {
70
76
  error,
71
77
  errorType: getRetryErrorType(error),
72
78
  };
73
- const retryAfterHint = getRetryAfterHint(error.$response);
79
+ const retryAfterHint = parseRetryAfterHeader(error.$response, logger);
74
80
  if (retryAfterHint) {
75
81
  errorInfo.retryAfterHint = retryAfterHint;
76
82
  }
@@ -97,16 +103,3 @@ export const getRetryPlugin = (options) => ({
97
103
  clientStack.add(retryMiddleware(options), retryMiddlewareOptions);
98
104
  },
99
105
  });
100
- export const getRetryAfterHint = (response) => {
101
- if (!HttpResponse.isInstance(response))
102
- return;
103
- const retryAfterHeaderName = Object.keys(response.headers).find((key) => key.toLowerCase() === "retry-after");
104
- if (!retryAfterHeaderName)
105
- return;
106
- const retryAfter = response.headers[retryAfterHeaderName];
107
- const retryAfterSeconds = Number(retryAfter);
108
- if (!Number.isNaN(retryAfterSeconds))
109
- return new Date(retryAfterSeconds * 1000);
110
- const retryAfterDate = new Date(retryAfter);
111
- return retryAfterDate;
112
- };
@@ -1,5 +1,5 @@
1
1
  import type { LoadedConfigSelectors } from "@smithy/node-config-provider";
2
- import type { Provider, RetryStrategy, RetryStrategyV2 } from "@smithy/types";
2
+ import type { Logger, Provider, RetryStrategy, RetryStrategyV2 } from "@smithy/types";
3
3
  /**
4
4
  * @internal
5
5
  */
@@ -34,6 +34,7 @@ export interface PreviouslyResolved {
34
34
  * @internal
35
35
  */
36
36
  retryMode: string | Provider<string>;
37
+ logger?: Logger;
37
38
  }
38
39
  /**
39
40
  * @internal
@@ -47,6 +48,7 @@ export interface RetryResolvedConfig {
47
48
  * Resolved value for input config {@link RetryInputConfig.retryStrategy}
48
49
  */
49
50
  retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>;
51
+ logger?: Logger;
50
52
  }
51
53
  /**
52
54
  * @internal
@@ -1,7 +1,8 @@
1
- export * from "./AdaptiveRetryStrategy";
2
- export * from "./StandardRetryStrategy";
1
+ export * from "./retry-pre-sra-deprecated/AdaptiveRetryStrategy";
2
+ export * from "./retry-pre-sra-deprecated/StandardRetryStrategy";
3
+ export * from "./retry-pre-sra-deprecated/delayDecider";
4
+ export * from "./retry-pre-sra-deprecated/retryDecider";
3
5
  export * from "./configurations";
4
- export * from "./delayDecider";
5
6
  export * from "./omitRetryHeadersMiddleware";
6
- export * from "./retryDecider";
7
7
  export * from "./retryMiddleware";
8
+ export { getRetryAfterHint } from "./parseRetryAfterHeader";
@@ -0,0 +1,15 @@
1
+ import type { HandlerExecutionContext, InitializeHandler, InitializeHandlerOptions, MetadataBearer, Pluggable } from "@smithy/types";
2
+ import type { RetryResolvedConfig } from "./configurations";
3
+ /**
4
+ * This middleware is attached to operations designated as long-polling.
5
+ * @internal
6
+ */
7
+ export declare const longPollMiddleware: () => <Output extends MetadataBearer = MetadataBearer>(next: InitializeHandler<any, Output>, context: HandlerExecutionContext) => InitializeHandler<any, Output>;
8
+ /**
9
+ * @internal
10
+ */
11
+ export declare const longPollMiddlewareOptions: InitializeHandlerOptions;
12
+ /**
13
+ * @internal
14
+ */
15
+ export declare const getLongPollPlugin: (options: RetryResolvedConfig) => Pluggable<any, any>;
@@ -1,5 +1,7 @@
1
1
  import type { FinalizeHandler, MetadataBearer, Pluggable, RelativeMiddlewareOptions } from "@smithy/types";
2
2
  /**
3
+ * This is still in use.
4
+ * See AddOmitRetryHeadersDependency.java.
3
5
  * @internal
4
6
  */
5
7
  export declare const omitRetryHeadersMiddleware: () => <Output extends MetadataBearer = MetadataBearer>(next: FinalizeHandler<any, Output>) => FinalizeHandler<any, Output>;
@@ -0,0 +1,10 @@
1
+ import type { Logger } from "@smithy/types";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare function parseRetryAfterHeader(response: unknown, logger?: Logger): Date | undefined;
6
+ /**
7
+ * Backwards-compatibility alias.
8
+ * @internal
9
+ */
10
+ export declare function getRetryAfterHint(response: unknown, logger?: Logger): Date | undefined;
@@ -3,8 +3,9 @@ import type { RateLimiter } from "@smithy/util-retry";
3
3
  import type { StandardRetryStrategyOptions } from "./StandardRetryStrategy";
4
4
  import { StandardRetryStrategy } from "./StandardRetryStrategy";
5
5
  /**
6
- * @public
7
6
  * Strategy options to be passed to AdaptiveRetryStrategy
7
+ * @public
8
+ * @deprecated replaced by \@smithy/util-retry (SRA).
8
9
  */
9
10
  export interface AdaptiveRetryStrategyOptions extends StandardRetryStrategyOptions {
10
11
  rateLimiter?: RateLimiter;
@@ -1,6 +1,7 @@
1
1
  import type { RetryQuota } from "./types";
2
2
  /**
3
3
  * @internal
4
+ * @deprecated replaced by \@smithy/util-retry (SRA).
4
5
  */
5
6
  export interface DefaultRetryQuotaOptions {
6
7
  /**
@@ -20,5 +21,6 @@ export interface DefaultRetryQuotaOptions {
20
21
  }
21
22
  /**
22
23
  * @internal
24
+ * @deprecated replaced by \@smithy/util-retry (SRA).
23
25
  */
24
26
  export declare const getDefaultRetryQuota: (initialRetryTokens: number, options?: DefaultRetryQuotaOptions) => RetryQuota;
@@ -1,5 +1,6 @@
1
1
  /**
2
- * @internal
3
2
  * Calculate a capped, fully-jittered exponential backoff time.
3
+ * @internal
4
+ * @deprecated replaced by \@smithy/util-retry (SRA).
4
5
  */
5
6
  export declare const defaultDelayDecider: (delayBase: number, attempts: number) => number;
@@ -12,7 +12,3 @@ export declare const retryMiddlewareOptions: FinalizeRequestHandlerOptions & Abs
12
12
  * @internal
13
13
  */
14
14
  export declare const getRetryPlugin: (options: RetryResolvedConfig) => Pluggable<any, any>;
15
- /**
16
- * @internal
17
- */
18
- export declare const getRetryAfterHint: (response: unknown) => Date | undefined;
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "name": "@smithy/middleware-retry",
3
- "version": "4.4.45",
3
+ "version": "4.5.0",
4
4
  "scripts": {
5
- "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
- "build:cjs": "node ../../scripts/inline middleware-retry",
7
- "build:es": "yarn g:tsc -p tsconfig.es.json",
5
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
6
+ "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline middleware-retry",
8
7
  "build:types": "yarn g:tsc -p tsconfig.types.json",
9
8
  "build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
10
- "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
11
9
  "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
12
- "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
13
- "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
14
10
  "extract:docs": "api-extractor run --local",
11
+ "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
12
+ "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
13
+ "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
15
14
  "test": "yarn g:vitest run",
16
15
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
17
- "test:watch": "yarn g:vitest watch",
18
- "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
16
+ "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts",
17
+ "test:watch": "yarn g:vitest watch"
19
18
  },
20
19
  "main": "./dist-cjs/index.js",
21
20
  "module": "./dist-es/index.js",
@@ -34,13 +33,14 @@
34
33
  "license": "Apache-2.0",
35
34
  "sideEffects": false,
36
35
  "dependencies": {
37
- "@smithy/node-config-provider": "^4.3.12",
38
- "@smithy/protocol-http": "^5.3.12",
39
- "@smithy/service-error-classification": "^4.2.12",
40
- "@smithy/smithy-client": "^4.12.8",
41
- "@smithy/types": "^4.13.1",
42
- "@smithy/util-middleware": "^4.2.12",
43
- "@smithy/util-retry": "^4.2.12",
36
+ "@smithy/core": "^3.23.14",
37
+ "@smithy/node-config-provider": "^4.3.13",
38
+ "@smithy/protocol-http": "^5.3.13",
39
+ "@smithy/service-error-classification": "^4.2.13",
40
+ "@smithy/smithy-client": "^4.12.9",
41
+ "@smithy/types": "^4.14.0",
42
+ "@smithy/util-middleware": "^4.2.13",
43
+ "@smithy/util-retry": "^4.3.0",
44
44
  "@smithy/uuid": "^1.1.2",
45
45
  "tslib": "^2.6.2"
46
46
  },
@@ -1,20 +1,19 @@
1
1
  {
2
2
  "name": "@smithy/middleware-serde",
3
- "version": "4.2.16",
3
+ "version": "4.2.17",
4
4
  "scripts": {
5
- "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
- "build:cjs": "node ../../scripts/inline middleware-serde",
7
- "build:es": "yarn g:tsc -p tsconfig.es.json",
5
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
6
+ "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline middleware-serde",
8
7
  "build:types": "yarn g:tsc -p tsconfig.types.json",
9
8
  "build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
10
- "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
11
9
  "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
12
- "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
13
10
  "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
11
+ "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
12
+ "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
14
13
  "test": "yarn g:vitest run",
15
14
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
16
- "test:watch": "yarn g:vitest watch",
17
- "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
15
+ "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts",
16
+ "test:watch": "yarn g:vitest watch"
18
17
  },
19
18
  "main": "./dist-cjs/index.js",
20
19
  "module": "./dist-es/index.js",
@@ -26,9 +25,9 @@
26
25
  "license": "Apache-2.0",
27
26
  "sideEffects": false,
28
27
  "dependencies": {
29
- "@smithy/core": "^3.23.13",
30
- "@smithy/protocol-http": "^5.3.12",
31
- "@smithy/types": "^4.13.1",
28
+ "@smithy/core": "^3.23.14",
29
+ "@smithy/protocol-http": "^5.3.13",
30
+ "@smithy/types": "^4.14.0",
32
31
  "tslib": "^2.6.2"
33
32
  },
34
33
  "engines": {
@@ -3,6 +3,19 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/middleware-stack/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-stack)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-stack.svg)](https://www.npmjs.com/package/@smithy/middleware-stack)
5
5
 
6
+ ### :warning: Internal API :warning:
7
+
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
11
+
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
18
+
6
19
  The package contains an implementation of middleware stack interface. Middleware
7
20
  stack is a structure storing middleware in specified order and resolve these
8
21
  middleware into a single handler.
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@smithy/middleware-stack",
3
- "version": "4.2.12",
3
+ "version": "4.2.13",
4
4
  "description": "Provides a means for composing multiple middleware functions into a single handler",
5
5
  "scripts": {
6
- "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
7
- "build:cjs": "node ../../scripts/inline middleware-stack",
8
- "build:es": "yarn g:tsc -p tsconfig.es.json",
6
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
7
+ "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline middleware-stack",
9
8
  "build:types": "yarn g:tsc -p tsconfig.types.json",
10
9
  "build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
11
- "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
12
10
  "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
13
- "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
14
- "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
15
11
  "extract:docs": "api-extractor run --local",
12
+ "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
13
+ "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
14
+ "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
16
15
  "test": "yarn g:vitest run",
17
16
  "test:watch": "yarn g:vitest watch"
18
17
  },
@@ -27,7 +26,7 @@
27
26
  "module": "./dist-es/index.js",
28
27
  "types": "./dist-types/index.d.ts",
29
28
  "dependencies": {
30
- "@smithy/types": "^4.13.1",
29
+ "@smithy/types": "^4.14.0",
31
30
  "tslib": "^2.6.2"
32
31
  },
33
32
  "devDependencies": {
@@ -3,8 +3,15 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/node-config-provider/latest.svg)](https://www.npmjs.com/package/@smithy/node-config-provider)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/node-config-provider.svg)](https://www.npmjs.com/package/@smithy/node-config-provider)
5
5
 
6
- > An internal package
6
+ ### :warning: Internal API :warning:
7
7
 
8
- ## Usage
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
9
11
 
10
- You probably shouldn't, at least directly.
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---