@cdklabs/cdk-ssm-documents 0.0.59 → 0.0.61

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 (7135) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -2
  118. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +5 -5
  119. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +318 -324
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +3 -3
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +14 -16
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +19 -24
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +9 -10
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormationClient.js +6 -9
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateOrganizationsAccessCommand.js +2 -2
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateTypeCommand.js +2 -2
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/BatchDescribeTypeConfigurationsCommand.js +2 -2
  130. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CancelUpdateStackCommand.js +2 -2
  131. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ContinueUpdateRollbackCommand.js +2 -2
  132. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateChangeSetCommand.js +2 -2
  133. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +2 -2
  134. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackCommand.js +2 -2
  135. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackInstancesCommand.js +2 -2
  136. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackRefactorCommand.js +2 -2
  137. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackSetCommand.js +2 -2
  138. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateOrganizationsAccessCommand.js +2 -2
  139. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateTypeCommand.js +2 -2
  140. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteChangeSetCommand.js +2 -2
  141. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +2 -2
  142. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackCommand.js +2 -2
  143. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackInstancesCommand.js +2 -2
  144. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackSetCommand.js +2 -2
  145. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeregisterTypeCommand.js +2 -2
  146. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeAccountLimitsCommand.js +2 -2
  147. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetCommand.js +2 -2
  148. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetHooksCommand.js +2 -2
  149. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeEventsCommand.js +2 -2
  150. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +2 -2
  151. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeOrganizationsAccessCommand.js +2 -2
  152. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribePublisherCommand.js +2 -2
  153. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +2 -2
  154. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackDriftDetectionStatusCommand.js +2 -2
  155. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackEventsCommand.js +2 -2
  156. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackInstanceCommand.js +2 -2
  157. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackRefactorCommand.js +2 -2
  158. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceCommand.js +2 -2
  159. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceDriftsCommand.js +2 -2
  160. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourcesCommand.js +2 -2
  161. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetCommand.js +2 -2
  162. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetOperationCommand.js +2 -2
  163. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStacksCommand.js +2 -2
  164. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeCommand.js +2 -2
  165. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeRegistrationCommand.js +2 -2
  166. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackDriftCommand.js +2 -2
  167. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackResourceDriftCommand.js +2 -2
  168. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackSetDriftCommand.js +2 -2
  169. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/EstimateTemplateCostCommand.js +2 -2
  170. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteChangeSetCommand.js +2 -2
  171. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteStackRefactorCommand.js +2 -2
  172. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +2 -2
  173. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetHookResultCommand.js +2 -2
  174. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetStackPolicyCommand.js +2 -2
  175. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateCommand.js +2 -2
  176. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateSummaryCommand.js +2 -2
  177. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ImportStacksToStackSetCommand.js +2 -2
  178. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListChangeSetsCommand.js +2 -2
  179. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListExportsCommand.js +2 -2
  180. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +2 -2
  181. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListHookResultsCommand.js +2 -2
  182. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListImportsCommand.js +2 -2
  183. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +2 -2
  184. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +2 -2
  185. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +2 -2
  186. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstanceResourceDriftsCommand.js +2 -2
  187. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstancesCommand.js +2 -2
  188. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorActionsCommand.js +2 -2
  189. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorsCommand.js +2 -2
  190. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackResourcesCommand.js +2 -2
  191. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +2 -2
  192. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationResultsCommand.js +2 -2
  193. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationsCommand.js +2 -2
  194. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetsCommand.js +2 -2
  195. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStacksCommand.js +2 -2
  196. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeRegistrationsCommand.js +2 -2
  197. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeVersionsCommand.js +2 -2
  198. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypesCommand.js +2 -2
  199. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/PublishTypeCommand.js +2 -2
  200. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RecordHandlerProgressCommand.js +2 -2
  201. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterPublisherCommand.js +2 -2
  202. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterTypeCommand.js +2 -2
  203. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RollbackStackCommand.js +2 -2
  204. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetStackPolicyCommand.js +2 -2
  205. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeConfigurationCommand.js +2 -2
  206. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeDefaultVersionCommand.js +2 -2
  207. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SignalResourceCommand.js +2 -2
  208. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +2 -2
  209. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StopStackSetOperationCommand.js +2 -2
  210. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/TestTypeCommand.js +2 -2
  211. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +2 -2
  212. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackCommand.js +2 -2
  213. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackInstancesCommand.js +2 -2
  214. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackSetCommand.js +2 -2
  215. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateTerminationProtectionCommand.js +2 -2
  216. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ValidateTemplateCommand.js +2 -2
  217. package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/bdd.js +1 -1
  218. package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/endpointResolver.js +2 -2
  219. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/CloudFormationServiceException.js +1 -1
  220. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +5 -7
  221. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +5 -10
  222. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +3 -4
  223. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeExtensions.js +3 -3
  224. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +1 -1
  225. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +1 -1
  226. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +1 -1
  227. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +1 -1
  228. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +1 -1
  229. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
  230. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
  231. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +1 -1
  232. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +1 -1
  233. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForTypeRegistrationComplete.js +1 -1
  234. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +1 -1
  235. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +6 -7
  236. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateOrganizationsAccessCommand.d.ts +6 -4
  237. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateTypeCommand.d.ts +6 -4
  238. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +6 -4
  239. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CancelUpdateStackCommand.d.ts +6 -4
  240. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +6 -4
  241. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateChangeSetCommand.d.ts +6 -4
  242. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +6 -4
  243. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackCommand.d.ts +6 -4
  244. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackInstancesCommand.d.ts +6 -4
  245. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackRefactorCommand.d.ts +6 -4
  246. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackSetCommand.d.ts +6 -4
  247. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateOrganizationsAccessCommand.d.ts +6 -4
  248. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateTypeCommand.d.ts +6 -4
  249. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteChangeSetCommand.d.ts +6 -4
  250. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +6 -4
  251. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackCommand.d.ts +6 -4
  252. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackInstancesCommand.d.ts +6 -4
  253. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackSetCommand.d.ts +6 -4
  254. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeregisterTypeCommand.d.ts +6 -4
  255. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeAccountLimitsCommand.d.ts +6 -4
  256. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetCommand.d.ts +6 -4
  257. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +6 -4
  258. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeEventsCommand.d.ts +6 -4
  259. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +6 -4
  260. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeOrganizationsAccessCommand.d.ts +6 -4
  261. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribePublisherCommand.d.ts +6 -4
  262. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +6 -4
  263. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +6 -4
  264. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackEventsCommand.d.ts +6 -4
  265. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackInstanceCommand.d.ts +6 -4
  266. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackRefactorCommand.d.ts +6 -4
  267. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceCommand.d.ts +6 -4
  268. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +6 -4
  269. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourcesCommand.d.ts +6 -4
  270. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetCommand.d.ts +6 -4
  271. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetOperationCommand.d.ts +6 -4
  272. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStacksCommand.d.ts +6 -4
  273. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeCommand.d.ts +6 -4
  274. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +6 -4
  275. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackDriftCommand.d.ts +6 -4
  276. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackResourceDriftCommand.d.ts +6 -4
  277. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackSetDriftCommand.d.ts +6 -4
  278. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/EstimateTemplateCostCommand.d.ts +6 -4
  279. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteChangeSetCommand.d.ts +6 -4
  280. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteStackRefactorCommand.d.ts +6 -4
  281. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +6 -4
  282. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetHookResultCommand.d.ts +6 -4
  283. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetStackPolicyCommand.d.ts +6 -4
  284. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateCommand.d.ts +6 -4
  285. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateSummaryCommand.d.ts +6 -4
  286. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ImportStacksToStackSetCommand.d.ts +6 -4
  287. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListChangeSetsCommand.d.ts +6 -4
  288. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListExportsCommand.d.ts +6 -4
  289. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +6 -4
  290. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListHookResultsCommand.d.ts +6 -4
  291. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListImportsCommand.d.ts +6 -4
  292. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +6 -4
  293. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +6 -4
  294. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +6 -4
  295. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +6 -4
  296. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstancesCommand.d.ts +6 -4
  297. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorActionsCommand.d.ts +6 -4
  298. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorsCommand.d.ts +6 -4
  299. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackResourcesCommand.d.ts +6 -4
  300. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +6 -4
  301. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +6 -4
  302. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationsCommand.d.ts +6 -4
  303. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetsCommand.d.ts +6 -4
  304. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStacksCommand.d.ts +6 -4
  305. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeRegistrationsCommand.d.ts +6 -4
  306. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeVersionsCommand.d.ts +6 -4
  307. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypesCommand.d.ts +6 -4
  308. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/PublishTypeCommand.d.ts +6 -4
  309. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RecordHandlerProgressCommand.d.ts +6 -4
  310. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterPublisherCommand.d.ts +6 -4
  311. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterTypeCommand.d.ts +6 -4
  312. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RollbackStackCommand.d.ts +6 -4
  313. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetStackPolicyCommand.d.ts +6 -4
  314. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeConfigurationCommand.d.ts +6 -4
  315. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +6 -4
  316. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SignalResourceCommand.d.ts +6 -4
  317. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +6 -4
  318. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +6 -4
  319. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +6 -4
  320. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +6 -4
  321. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +6 -4
  322. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -4
  323. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +6 -4
  324. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +6 -4
  325. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +6 -4
  326. package/node_modules/@aws-sdk/client-cloudformation/dist-types/endpoint/bdd.d.ts +1 -1
  327. package/node_modules/@aws-sdk/client-cloudformation/dist-types/extensionConfiguration.d.ts +1 -1
  328. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/CloudFormationServiceException.d.ts +1 -1
  329. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/errors.d.ts +1 -1
  330. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +3 -3
  331. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +3 -3
  332. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +3 -3
  333. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +1 -1
  334. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +9 -17
  335. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateOrganizationsAccessCommand.d.ts +6 -4
  336. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateTypeCommand.d.ts +6 -4
  337. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/BatchDescribeTypeConfigurationsCommand.d.ts +6 -4
  338. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CancelUpdateStackCommand.d.ts +6 -4
  339. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ContinueUpdateRollbackCommand.d.ts +6 -4
  340. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateChangeSetCommand.d.ts +6 -4
  341. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +6 -4
  342. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackCommand.d.ts +6 -4
  343. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackInstancesCommand.d.ts +6 -4
  344. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackRefactorCommand.d.ts +6 -4
  345. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackSetCommand.d.ts +6 -4
  346. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateOrganizationsAccessCommand.d.ts +6 -4
  347. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateTypeCommand.d.ts +6 -4
  348. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteChangeSetCommand.d.ts +6 -4
  349. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +6 -4
  350. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackCommand.d.ts +6 -4
  351. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackInstancesCommand.d.ts +6 -4
  352. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackSetCommand.d.ts +6 -4
  353. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeregisterTypeCommand.d.ts +6 -4
  354. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +6 -4
  355. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +6 -4
  356. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetHooksCommand.d.ts +6 -4
  357. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +6 -4
  358. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +6 -4
  359. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeOrganizationsAccessCommand.d.ts +6 -4
  360. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribePublisherCommand.d.ts +6 -4
  361. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +6 -4
  362. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackDriftDetectionStatusCommand.d.ts +6 -4
  363. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackEventsCommand.d.ts +6 -4
  364. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackInstanceCommand.d.ts +6 -4
  365. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackRefactorCommand.d.ts +6 -4
  366. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceCommand.d.ts +6 -4
  367. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceDriftsCommand.d.ts +6 -4
  368. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourcesCommand.d.ts +6 -4
  369. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetCommand.d.ts +6 -4
  370. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetOperationCommand.d.ts +6 -4
  371. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStacksCommand.d.ts +6 -4
  372. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeCommand.d.ts +6 -4
  373. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeRegistrationCommand.d.ts +6 -4
  374. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackDriftCommand.d.ts +6 -4
  375. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackResourceDriftCommand.d.ts +6 -4
  376. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackSetDriftCommand.d.ts +6 -4
  377. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/EstimateTemplateCostCommand.d.ts +6 -4
  378. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteChangeSetCommand.d.ts +6 -4
  379. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteStackRefactorCommand.d.ts +6 -4
  380. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +6 -4
  381. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetHookResultCommand.d.ts +6 -4
  382. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetStackPolicyCommand.d.ts +6 -4
  383. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +6 -4
  384. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateSummaryCommand.d.ts +6 -4
  385. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ImportStacksToStackSetCommand.d.ts +6 -4
  386. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +6 -4
  387. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListExportsCommand.d.ts +6 -4
  388. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +6 -4
  389. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListHookResultsCommand.d.ts +6 -4
  390. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListImportsCommand.d.ts +6 -4
  391. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +6 -4
  392. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +6 -4
  393. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +6 -4
  394. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstanceResourceDriftsCommand.d.ts +6 -4
  395. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstancesCommand.d.ts +6 -4
  396. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorActionsCommand.d.ts +6 -4
  397. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorsCommand.d.ts +6 -4
  398. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackResourcesCommand.d.ts +6 -4
  399. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +6 -4
  400. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationResultsCommand.d.ts +6 -4
  401. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationsCommand.d.ts +6 -4
  402. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetsCommand.d.ts +6 -4
  403. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStacksCommand.d.ts +6 -4
  404. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeRegistrationsCommand.d.ts +6 -4
  405. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeVersionsCommand.d.ts +6 -4
  406. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypesCommand.d.ts +6 -6
  407. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/PublishTypeCommand.d.ts +6 -4
  408. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RecordHandlerProgressCommand.d.ts +6 -4
  409. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterPublisherCommand.d.ts +6 -4
  410. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterTypeCommand.d.ts +6 -4
  411. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RollbackStackCommand.d.ts +6 -4
  412. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetStackPolicyCommand.d.ts +6 -4
  413. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeConfigurationCommand.d.ts +6 -4
  414. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +6 -4
  415. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +6 -4
  416. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +6 -4
  417. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +6 -4
  418. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +6 -6
  419. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +6 -4
  420. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +6 -4
  421. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +6 -4
  422. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +6 -4
  423. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +6 -4
  424. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +6 -4
  425. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  426. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  427. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/CloudFormationServiceException.d.ts +1 -1
  428. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/errors.d.ts +1 -1
  429. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  430. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  431. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  432. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForChangeSetCreateComplete.d.ts +1 -1
  433. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackCreateComplete.d.ts +1 -1
  434. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackDeleteComplete.d.ts +1 -1
  435. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackExists.d.ts +1 -1
  436. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackImportComplete.d.ts +1 -1
  437. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorCreateComplete.d.ts +1 -1
  438. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorExecuteComplete.d.ts +1 -1
  439. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRollbackComplete.d.ts +1 -1
  440. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackUpdateComplete.d.ts +1 -1
  441. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForTypeRegistrationComplete.d.ts +1 -1
  442. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +1 -1
  443. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +1 -1
  444. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +1 -1
  445. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +1 -1
  446. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +1 -1
  447. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +1 -1
  448. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +1 -1
  449. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +1 -1
  450. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +1 -1
  451. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +1 -1
  452. package/node_modules/@aws-sdk/client-cloudformation/package.json +6 -36
  453. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  454. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -2
  455. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +5 -5
  456. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +137 -143
  457. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +3 -3
  458. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +14 -16
  459. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +21 -26
  460. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +9 -10
  461. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +1 -1
  462. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatchClient.js +6 -9
  463. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  464. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmMuteRuleCommand.js +2 -2
  465. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmsCommand.js +2 -2
  466. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -2
  467. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteDashboardsCommand.js +2 -2
  468. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteInsightRulesCommand.js +2 -2
  469. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteMetricStreamCommand.js +2 -2
  470. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmContributorsCommand.js +2 -2
  471. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmHistoryCommand.js +2 -2
  472. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsCommand.js +2 -2
  473. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsForMetricCommand.js +2 -2
  474. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAnomalyDetectorsCommand.js +2 -2
  475. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeInsightRulesCommand.js +2 -2
  476. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableAlarmActionsCommand.js +2 -2
  477. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableInsightRulesCommand.js +2 -2
  478. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableAlarmActionsCommand.js +2 -2
  479. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableInsightRulesCommand.js +2 -2
  480. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetAlarmMuteRuleCommand.js +2 -2
  481. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDashboardCommand.js +2 -2
  482. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetInsightRuleReportCommand.js +2 -2
  483. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricDataCommand.js +2 -2
  484. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStatisticsCommand.js +2 -2
  485. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStreamCommand.js +2 -2
  486. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricWidgetImageCommand.js +2 -2
  487. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetOTelEnrichmentCommand.js +2 -2
  488. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListAlarmMuteRulesCommand.js +2 -2
  489. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListDashboardsCommand.js +2 -2
  490. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListManagedInsightRulesCommand.js +2 -2
  491. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricStreamsCommand.js +2 -2
  492. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricsCommand.js +2 -2
  493. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  494. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAlarmMuteRuleCommand.js +2 -2
  495. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAnomalyDetectorCommand.js +2 -2
  496. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutCompositeAlarmCommand.js +2 -2
  497. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutDashboardCommand.js +2 -2
  498. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutInsightRuleCommand.js +2 -2
  499. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutManagedInsightRulesCommand.js +2 -2
  500. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricAlarmCommand.js +2 -2
  501. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricDataCommand.js +2 -2
  502. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricStreamCommand.js +2 -2
  503. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/SetAlarmStateCommand.js +2 -2
  504. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartMetricStreamsCommand.js +2 -2
  505. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartOTelEnrichmentCommand.js +2 -2
  506. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopMetricStreamsCommand.js +2 -2
  507. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopOTelEnrichmentCommand.js +2 -2
  508. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/TagResourceCommand.js +2 -2
  509. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/UntagResourceCommand.js +2 -2
  510. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/bdd.js +1 -1
  511. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/endpointResolver.js +2 -2
  512. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/CloudWatchServiceException.js +1 -1
  513. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.browser.js +5 -7
  514. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +5 -10
  515. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +3 -4
  516. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeExtensions.js +3 -3
  517. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
  518. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +1 -1
  519. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
  520. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +1 -1
  521. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +6 -7
  522. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmMuteRuleCommand.d.ts +6 -4
  523. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmsCommand.d.ts +6 -4
  524. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +6 -4
  525. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +6 -4
  526. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteInsightRulesCommand.d.ts +6 -4
  527. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteMetricStreamCommand.d.ts +6 -4
  528. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmContributorsCommand.d.ts +6 -4
  529. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +6 -4
  530. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsCommand.d.ts +6 -4
  531. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +6 -4
  532. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +6 -4
  533. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeInsightRulesCommand.d.ts +6 -4
  534. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableAlarmActionsCommand.d.ts +6 -4
  535. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableInsightRulesCommand.d.ts +6 -4
  536. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableAlarmActionsCommand.d.ts +6 -4
  537. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableInsightRulesCommand.d.ts +6 -4
  538. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetAlarmMuteRuleCommand.d.ts +6 -4
  539. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDashboardCommand.d.ts +6 -4
  540. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetInsightRuleReportCommand.d.ts +6 -4
  541. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricDataCommand.d.ts +6 -4
  542. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStatisticsCommand.d.ts +6 -4
  543. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStreamCommand.d.ts +6 -4
  544. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricWidgetImageCommand.d.ts +6 -4
  545. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +6 -4
  546. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListAlarmMuteRulesCommand.d.ts +6 -4
  547. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListDashboardsCommand.d.ts +6 -4
  548. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListManagedInsightRulesCommand.d.ts +6 -4
  549. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricStreamsCommand.d.ts +6 -4
  550. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricsCommand.d.ts +6 -4
  551. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
  552. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAlarmMuteRuleCommand.d.ts +6 -4
  553. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +6 -4
  554. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutCompositeAlarmCommand.d.ts +6 -4
  555. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +6 -4
  556. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutInsightRuleCommand.d.ts +6 -4
  557. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutManagedInsightRulesCommand.d.ts +6 -4
  558. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricAlarmCommand.d.ts +6 -4
  559. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricDataCommand.d.ts +6 -4
  560. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricStreamCommand.d.ts +6 -4
  561. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/SetAlarmStateCommand.d.ts +6 -4
  562. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartMetricStreamsCommand.d.ts +6 -4
  563. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +6 -4
  564. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopMetricStreamsCommand.d.ts +6 -4
  565. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +6 -4
  566. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +6 -4
  567. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +6 -4
  568. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/endpoint/bdd.d.ts +1 -1
  569. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/extensionConfiguration.d.ts +1 -1
  570. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/CloudWatchServiceException.d.ts +1 -1
  571. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +1 -1
  572. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +3 -3
  573. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +3 -3
  574. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +3 -3
  575. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +1 -1
  576. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +13 -21
  577. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmMuteRuleCommand.d.ts +6 -4
  578. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmsCommand.d.ts +6 -4
  579. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +6 -4
  580. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteDashboardsCommand.d.ts +6 -4
  581. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteInsightRulesCommand.d.ts +6 -4
  582. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteMetricStreamCommand.d.ts +6 -4
  583. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmContributorsCommand.d.ts +6 -4
  584. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmHistoryCommand.d.ts +6 -4
  585. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsCommand.d.ts +6 -4
  586. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsForMetricCommand.d.ts +6 -4
  587. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAnomalyDetectorsCommand.d.ts +6 -4
  588. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeInsightRulesCommand.d.ts +6 -4
  589. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableAlarmActionsCommand.d.ts +6 -4
  590. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableInsightRulesCommand.d.ts +6 -4
  591. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableAlarmActionsCommand.d.ts +6 -4
  592. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableInsightRulesCommand.d.ts +6 -4
  593. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetAlarmMuteRuleCommand.d.ts +6 -4
  594. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +6 -4
  595. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetInsightRuleReportCommand.d.ts +6 -4
  596. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +6 -4
  597. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStatisticsCommand.d.ts +6 -4
  598. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStreamCommand.d.ts +6 -4
  599. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricWidgetImageCommand.d.ts +6 -4
  600. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetOTelEnrichmentCommand.d.ts +6 -4
  601. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListAlarmMuteRulesCommand.d.ts +6 -4
  602. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +6 -4
  603. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListManagedInsightRulesCommand.d.ts +6 -4
  604. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricStreamsCommand.d.ts +6 -4
  605. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +6 -4
  606. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
  607. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAlarmMuteRuleCommand.d.ts +6 -4
  608. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +6 -4
  609. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutCompositeAlarmCommand.d.ts +6 -4
  610. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutDashboardCommand.d.ts +6 -4
  611. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutInsightRuleCommand.d.ts +6 -4
  612. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutManagedInsightRulesCommand.d.ts +6 -4
  613. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricAlarmCommand.d.ts +6 -4
  614. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricDataCommand.d.ts +6 -4
  615. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricStreamCommand.d.ts +6 -4
  616. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/SetAlarmStateCommand.d.ts +6 -4
  617. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartMetricStreamsCommand.d.ts +6 -4
  618. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartOTelEnrichmentCommand.d.ts +6 -4
  619. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopMetricStreamsCommand.d.ts +6 -4
  620. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopOTelEnrichmentCommand.d.ts +6 -4
  621. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
  622. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
  623. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  624. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  625. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/CloudWatchServiceException.d.ts +1 -1
  626. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +1 -1
  627. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  628. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  629. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  630. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +1 -1
  631. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmMuteRuleExists.d.ts +1 -1
  632. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +1 -1
  633. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +1 -1
  634. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +1 -1
  635. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +1 -1
  636. package/node_modules/@aws-sdk/client-cloudwatch/package.json +8 -38
  637. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  638. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -2
  639. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +5 -5
  640. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +1907 -1913
  641. package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +3 -3
  642. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +14 -16
  643. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +19 -24
  644. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +9 -10
  645. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +18 -15
  646. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +1 -1
  647. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2Client.js +6 -9
  648. package/node_modules/@aws-sdk/client-ec2/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  649. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptAddressTransferCommand.js +2 -2
  650. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptCapacityReservationBillingOwnershipCommand.js +2 -2
  651. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptReservedInstancesExchangeQuoteCommand.js +2 -2
  652. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +2 -2
  653. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.js +2 -2
  654. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayPeeringAttachmentCommand.js +2 -2
  655. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayVpcAttachmentCommand.js +2 -2
  656. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcEndpointConnectionsCommand.js +2 -2
  657. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcPeeringConnectionCommand.js +2 -2
  658. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AdvertiseByoipCidrCommand.js +2 -2
  659. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateAddressCommand.js +2 -2
  660. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateHostsCommand.js +2 -2
  661. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateIpamPoolCidrCommand.js +2 -2
  662. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.js +2 -2
  663. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignIpv6AddressesCommand.js +2 -2
  664. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateIpAddressesCommand.js +2 -2
  665. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateNatGatewayAddressCommand.js +2 -2
  666. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateAddressCommand.js +2 -2
  667. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateCapacityReservationBillingOwnerCommand.js +2 -2
  668. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateClientVpnTargetNetworkCommand.js +2 -2
  669. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateDhcpOptionsCommand.js +2 -2
  670. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateEnclaveCertificateIamRoleCommand.js +2 -2
  671. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIamInstanceProfileCommand.js +2 -2
  672. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateInstanceEventWindowCommand.js +2 -2
  673. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamByoasnCommand.js +2 -2
  674. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamResourceDiscoveryCommand.js +2 -2
  675. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateNatGatewayAddressCommand.js +2 -2
  676. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteServerCommand.js +2 -2
  677. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteTableCommand.js +2 -2
  678. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSecurityGroupVpcCommand.js +2 -2
  679. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSubnetCidrBlockCommand.js +2 -2
  680. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayMulticastDomainCommand.js +2 -2
  681. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayPolicyTableCommand.js +2 -2
  682. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayRouteTableCommand.js +2 -2
  683. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTrunkInterfaceCommand.js +2 -2
  684. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateVpcCidrBlockCommand.js +2 -2
  685. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachClassicLinkVpcCommand.js +2 -2
  686. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachInternetGatewayCommand.js +2 -2
  687. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachNetworkInterfaceCommand.js +2 -2
  688. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -2
  689. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVolumeCommand.js +2 -2
  690. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVpnGatewayCommand.js +2 -2
  691. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeClientVpnIngressCommand.js +2 -2
  692. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupEgressCommand.js +2 -2
  693. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupIngressCommand.js +2 -2
  694. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/BundleInstanceCommand.js +2 -2
  695. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelBundleTaskCommand.js +2 -2
  696. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationCommand.js +2 -2
  697. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationFleetsCommand.js +2 -2
  698. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelConversionTaskCommand.js +2 -2
  699. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelDeclarativePoliciesReportCommand.js +2 -2
  700. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelExportTaskCommand.js +2 -2
  701. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImageLaunchPermissionCommand.js +2 -2
  702. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImportTaskCommand.js +2 -2
  703. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelReservedInstancesListingCommand.js +2 -2
  704. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotFleetRequestsCommand.js +2 -2
  705. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotInstanceRequestsCommand.js +2 -2
  706. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ConfirmProductInstanceCommand.js +2 -2
  707. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyFpgaImageCommand.js +2 -2
  708. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyImageCommand.js +2 -2
  709. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopySnapshotCommand.js +2 -2
  710. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyVolumesCommand.js +2 -2
  711. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityManagerDataExportCommand.js +2 -2
  712. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationBySplittingCommand.js +2 -2
  713. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCommand.js +2 -2
  714. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationFleetCommand.js +2 -2
  715. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCarrierGatewayCommand.js +2 -2
  716. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnEndpointCommand.js +2 -2
  717. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnRouteCommand.js +2 -2
  718. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipCidrCommand.js +2 -2
  719. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipPoolCommand.js +2 -2
  720. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCustomerGatewayCommand.js +2 -2
  721. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultSubnetCommand.js +2 -2
  722. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultVpcCommand.js +2 -2
  723. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDelegateMacVolumeOwnershipTaskCommand.js +2 -2
  724. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDhcpOptionsCommand.js +2 -2
  725. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateEgressOnlyInternetGatewayCommand.js +2 -2
  726. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFleetCommand.js +2 -2
  727. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFlowLogsCommand.js +2 -2
  728. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFpgaImageCommand.js +2 -2
  729. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageCommand.js +2 -2
  730. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageUsageReportCommand.js +2 -2
  731. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceConnectEndpointCommand.js +2 -2
  732. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceEventWindowCommand.js +2 -2
  733. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceExportTaskCommand.js +2 -2
  734. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInternetGatewayCommand.js +2 -2
  735. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInterruptibleCapacityReservationAllocationCommand.js +2 -2
  736. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamCommand.js +2 -2
  737. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamExternalResourceVerificationTokenCommand.js +2 -2
  738. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPolicyCommand.js +2 -2
  739. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPoolCommand.js +2 -2
  740. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverCommand.js +2 -2
  741. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverTargetCommand.js +2 -2
  742. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamResourceDiscoveryCommand.js +2 -2
  743. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamScopeCommand.js +2 -2
  744. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateKeyPairCommand.js +2 -2
  745. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateCommand.js +2 -2
  746. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateVersionCommand.js +2 -2
  747. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteCommand.js +2 -2
  748. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableCommand.js +2 -2
  749. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -2
  750. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.js +2 -2
  751. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceCommand.js +2 -2
  752. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.js +2 -2
  753. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.js +2 -2
  754. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateManagedPrefixListCommand.js +2 -2
  755. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNatGatewayCommand.js +2 -2
  756. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclCommand.js +2 -2
  757. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclEntryCommand.js +2 -2
  758. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsAccessScopeCommand.js +2 -2
  759. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsPathCommand.js +2 -2
  760. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfaceCommand.js +2 -2
  761. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfacePermissionCommand.js +2 -2
  762. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePlacementGroupCommand.js +2 -2
  763. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePublicIpv4PoolCommand.js +2 -2
  764. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReplaceRootVolumeTaskCommand.js +2 -2
  765. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReservedInstancesListingCommand.js +2 -2
  766. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRestoreImageTaskCommand.js +2 -2
  767. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteCommand.js +2 -2
  768. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerCommand.js +2 -2
  769. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerEndpointCommand.js +2 -2
  770. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerPeerCommand.js +2 -2
  771. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteTableCommand.js +2 -2
  772. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondaryNetworkCommand.js +2 -2
  773. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondarySubnetCommand.js +2 -2
  774. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecurityGroupCommand.js +2 -2
  775. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotCommand.js +2 -2
  776. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotsCommand.js +2 -2
  777. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSpotDatafeedSubscriptionCommand.js +2 -2
  778. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateStoreImageTaskCommand.js +2 -2
  779. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCidrReservationCommand.js +2 -2
  780. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCommand.js +2 -2
  781. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTagsCommand.js +2 -2
  782. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -2
  783. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -2
  784. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorSessionCommand.js +2 -2
  785. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorTargetCommand.js +2 -2
  786. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayCommand.js +2 -2
  787. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectCommand.js +2 -2
  788. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectPeerCommand.js +2 -2
  789. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyCommand.js +2 -2
  790. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyEntryCommand.js +2 -2
  791. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMulticastDomainCommand.js +2 -2
  792. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPeeringAttachmentCommand.js +2 -2
  793. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPolicyTableCommand.js +2 -2
  794. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPrefixListReferenceCommand.js +2 -2
  795. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteCommand.js +2 -2
  796. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableAnnouncementCommand.js +2 -2
  797. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableCommand.js +2 -2
  798. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayVpcAttachmentCommand.js +2 -2
  799. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessEndpointCommand.js +2 -2
  800. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessGroupCommand.js +2 -2
  801. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessInstanceCommand.js +2 -2
  802. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessTrustProviderCommand.js +2 -2
  803. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVolumeCommand.js +2 -2
  804. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcBlockPublicAccessExclusionCommand.js +2 -2
  805. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcCommand.js +2 -2
  806. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEncryptionControlCommand.js +2 -2
  807. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointCommand.js +2 -2
  808. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointConnectionNotificationCommand.js +2 -2
  809. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointServiceConfigurationCommand.js +2 -2
  810. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcPeeringConnectionCommand.js +2 -2
  811. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConcentratorCommand.js +2 -2
  812. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionCommand.js +2 -2
  813. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionRouteCommand.js +2 -2
  814. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnGatewayCommand.js +2 -2
  815. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCapacityManagerDataExportCommand.js +2 -2
  816. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCarrierGatewayCommand.js +2 -2
  817. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnEndpointCommand.js +2 -2
  818. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnRouteCommand.js +2 -2
  819. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipCidrCommand.js +2 -2
  820. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipPoolCommand.js +2 -2
  821. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCustomerGatewayCommand.js +2 -2
  822. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteDhcpOptionsCommand.js +2 -2
  823. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteEgressOnlyInternetGatewayCommand.js +2 -2
  824. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFleetsCommand.js +2 -2
  825. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFlowLogsCommand.js +2 -2
  826. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFpgaImageCommand.js +2 -2
  827. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteImageUsageReportCommand.js +2 -2
  828. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceConnectEndpointCommand.js +2 -2
  829. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceEventWindowCommand.js +2 -2
  830. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInternetGatewayCommand.js +2 -2
  831. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamCommand.js +2 -2
  832. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamExternalResourceVerificationTokenCommand.js +2 -2
  833. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPolicyCommand.js +2 -2
  834. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPoolCommand.js +2 -2
  835. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverCommand.js +2 -2
  836. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverTargetCommand.js +2 -2
  837. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamResourceDiscoveryCommand.js +2 -2
  838. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamScopeCommand.js +2 -2
  839. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteKeyPairCommand.js +2 -2
  840. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateCommand.js +2 -2
  841. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateVersionsCommand.js +2 -2
  842. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteCommand.js +2 -2
  843. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableCommand.js +2 -2
  844. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -2
  845. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.js +2 -2
  846. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceCommand.js +2 -2
  847. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.js +2 -2
  848. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteManagedPrefixListCommand.js +2 -2
  849. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNatGatewayCommand.js +2 -2
  850. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclCommand.js +2 -2
  851. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclEntryCommand.js +2 -2
  852. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.js +2 -2
  853. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeCommand.js +2 -2
  854. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAnalysisCommand.js +2 -2
  855. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsPathCommand.js +2 -2
  856. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfaceCommand.js +2 -2
  857. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfacePermissionCommand.js +2 -2
  858. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePlacementGroupCommand.js +2 -2
  859. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePublicIpv4PoolCommand.js +2 -2
  860. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteQueuedReservedInstancesCommand.js +2 -2
  861. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteCommand.js +2 -2
  862. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerCommand.js +2 -2
  863. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerEndpointCommand.js +2 -2
  864. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerPeerCommand.js +2 -2
  865. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteTableCommand.js +2 -2
  866. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondaryNetworkCommand.js +2 -2
  867. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondarySubnetCommand.js +2 -2
  868. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecurityGroupCommand.js +2 -2
  869. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSnapshotCommand.js +2 -2
  870. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSpotDatafeedSubscriptionCommand.js +2 -2
  871. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCidrReservationCommand.js +2 -2
  872. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCommand.js +2 -2
  873. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTagsCommand.js +2 -2
  874. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterCommand.js +2 -2
  875. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterRuleCommand.js +2 -2
  876. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorSessionCommand.js +2 -2
  877. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorTargetCommand.js +2 -2
  878. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +2 -2
  879. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayCommand.js +2 -2
  880. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectCommand.js +2 -2
  881. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectPeerCommand.js +2 -2
  882. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyCommand.js +2 -2
  883. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.js +2 -2
  884. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMulticastDomainCommand.js +2 -2
  885. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPeeringAttachmentCommand.js +2 -2
  886. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPolicyTableCommand.js +2 -2
  887. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPrefixListReferenceCommand.js +2 -2
  888. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteCommand.js +2 -2
  889. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.js +2 -2
  890. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableCommand.js +2 -2
  891. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayVpcAttachmentCommand.js +2 -2
  892. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessEndpointCommand.js +2 -2
  893. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessGroupCommand.js +2 -2
  894. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessInstanceCommand.js +2 -2
  895. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -2
  896. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVolumeCommand.js +2 -2
  897. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcBlockPublicAccessExclusionCommand.js +2 -2
  898. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcCommand.js +2 -2
  899. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEncryptionControlCommand.js +2 -2
  900. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointConnectionNotificationsCommand.js +2 -2
  901. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointServiceConfigurationsCommand.js +2 -2
  902. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointsCommand.js +2 -2
  903. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcPeeringConnectionCommand.js +2 -2
  904. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConcentratorCommand.js +2 -2
  905. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionCommand.js +2 -2
  906. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionRouteCommand.js +2 -2
  907. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnGatewayCommand.js +2 -2
  908. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionByoipCidrCommand.js +2 -2
  909. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamByoasnCommand.js +2 -2
  910. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamPoolCidrCommand.js +2 -2
  911. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionPublicIpv4PoolCidrCommand.js +2 -2
  912. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterImageCommand.js +2 -2
  913. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterInstanceEventNotificationAttributesCommand.js +2 -2
  914. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.js +2 -2
  915. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.js +2 -2
  916. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountAttributesCommand.js +2 -2
  917. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressTransfersCommand.js +2 -2
  918. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesAttributeCommand.js +2 -2
  919. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesCommand.js +2 -2
  920. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAggregateIdFormatCommand.js +2 -2
  921. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAvailabilityZonesCommand.js +2 -2
  922. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.js +2 -2
  923. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeBundleTasksCommand.js +2 -2
  924. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeByoipCidrsCommand.js +2 -2
  925. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionHistoryCommand.js +2 -2
  926. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionOfferingsCommand.js +2 -2
  927. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockOfferingsCommand.js +2 -2
  928. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockStatusCommand.js +2 -2
  929. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlocksCommand.js +2 -2
  930. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityManagerDataExportsCommand.js +2 -2
  931. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationBillingRequestsCommand.js +2 -2
  932. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationFleetsCommand.js +2 -2
  933. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +2 -2
  934. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationsCommand.js +2 -2
  935. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCarrierGatewaysCommand.js +2 -2
  936. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClassicLinkInstancesCommand.js +2 -2
  937. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnAuthorizationRulesCommand.js +2 -2
  938. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnConnectionsCommand.js +2 -2
  939. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnEndpointsCommand.js +2 -2
  940. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -2
  941. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +2 -2
  942. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCoipPoolsCommand.js +2 -2
  943. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeConversionTasksCommand.js +2 -2
  944. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCustomerGatewaysCommand.js +2 -2
  945. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDeclarativePoliciesReportsCommand.js +2 -2
  946. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDhcpOptionsCommand.js +2 -2
  947. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeEgressOnlyInternetGatewaysCommand.js +2 -2
  948. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeElasticGpusCommand.js +2 -2
  949. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportImageTasksCommand.js +2 -2
  950. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportTasksCommand.js +2 -2
  951. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastLaunchImagesCommand.js +2 -2
  952. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastSnapshotRestoresCommand.js +2 -2
  953. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetHistoryCommand.js +2 -2
  954. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetInstancesCommand.js +2 -2
  955. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetsCommand.js +2 -2
  956. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFlowLogsCommand.js +2 -2
  957. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImageAttributeCommand.js +2 -2
  958. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImagesCommand.js +2 -2
  959. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationOfferingsCommand.js +2 -2
  960. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationsCommand.js +2 -2
  961. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostsCommand.js +2 -2
  962. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIamInstanceProfileAssociationsCommand.js +2 -2
  963. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdFormatCommand.js +2 -2
  964. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdentityIdFormatCommand.js +2 -2
  965. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageAttributeCommand.js +2 -2
  966. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageReferencesCommand.js +2 -2
  967. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportEntriesCommand.js +2 -2
  968. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportsCommand.js +2 -2
  969. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImagesCommand.js +2 -2
  970. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportImageTasksCommand.js +2 -2
  971. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportSnapshotTasksCommand.js +2 -2
  972. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceAttributeCommand.js +2 -2
  973. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceConnectEndpointsCommand.js +2 -2
  974. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceCreditSpecificationsCommand.js +2 -2
  975. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventNotificationAttributesCommand.js +2 -2
  976. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventWindowsCommand.js +2 -2
  977. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceImageMetadataCommand.js +2 -2
  978. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaHistoryStatesCommand.js +2 -2
  979. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaStatesCommand.js +2 -2
  980. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceStatusCommand.js +2 -2
  981. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTopologyCommand.js +2 -2
  982. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypeOfferingsCommand.js +2 -2
  983. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypesCommand.js +2 -2
  984. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstancesCommand.js +2 -2
  985. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInternetGatewaysCommand.js +2 -2
  986. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamByoasnCommand.js +2 -2
  987. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamExternalResourceVerificationTokensCommand.js +2 -2
  988. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoliciesCommand.js +2 -2
  989. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolsCommand.js +2 -2
  990. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolverTargetsCommand.js +2 -2
  991. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolversCommand.js +2 -2
  992. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveriesCommand.js +2 -2
  993. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveryAssociationsCommand.js +2 -2
  994. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamScopesCommand.js +2 -2
  995. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamsCommand.js +2 -2
  996. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpv6PoolsCommand.js +2 -2
  997. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeKeyPairsCommand.js +2 -2
  998. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplateVersionsCommand.js +2 -2
  999. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplatesCommand.js +2 -2
  1000. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.js +2 -2
  1001. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.js +2 -2
  1002. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTablesCommand.js +2 -2
  1003. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -2
  1004. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +2 -2
  1005. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -2
  1006. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLockedSnapshotsCommand.js +2 -2
  1007. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacHostsCommand.js +2 -2
  1008. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacModificationTasksCommand.js +2 -2
  1009. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeManagedPrefixListsCommand.js +2 -2
  1010. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMovingAddressesCommand.js +2 -2
  1011. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNatGatewaysCommand.js +2 -2
  1012. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkAclsCommand.js +2 -2
  1013. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.js +2 -2
  1014. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopesCommand.js +2 -2
  1015. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAnalysesCommand.js +2 -2
  1016. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsPathsCommand.js +2 -2
  1017. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfaceAttributeCommand.js +2 -2
  1018. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacePermissionsCommand.js +2 -2
  1019. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacesCommand.js +2 -2
  1020. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeOutpostLagsCommand.js +2 -2
  1021. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePlacementGroupsCommand.js +2 -2
  1022. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrefixListsCommand.js +2 -2
  1023. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrincipalIdFormatCommand.js +2 -2
  1024. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePublicIpv4PoolsCommand.js +2 -2
  1025. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRegionsCommand.js +2 -2
  1026. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReplaceRootVolumeTasksCommand.js +2 -2
  1027. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesCommand.js +2 -2
  1028. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesListingsCommand.js +2 -2
  1029. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +2 -2
  1030. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesOfferingsCommand.js +2 -2
  1031. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerEndpointsCommand.js +2 -2
  1032. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerPeersCommand.js +2 -2
  1033. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServersCommand.js +2 -2
  1034. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteTablesCommand.js +2 -2
  1035. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstanceAvailabilityCommand.js +2 -2
  1036. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstancesCommand.js +2 -2
  1037. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryInterfacesCommand.js +2 -2
  1038. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryNetworksCommand.js +2 -2
  1039. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondarySubnetsCommand.js +2 -2
  1040. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupReferencesCommand.js +2 -2
  1041. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupRulesCommand.js +2 -2
  1042. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupVpcAssociationsCommand.js +2 -2
  1043. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupsCommand.js +2 -2
  1044. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeServiceLinkVirtualInterfacesCommand.js +2 -2
  1045. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotAttributeCommand.js +2 -2
  1046. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotTierStatusCommand.js +2 -2
  1047. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotsCommand.js +2 -2
  1048. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotDatafeedSubscriptionCommand.js +2 -2
  1049. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetInstancesCommand.js +2 -2
  1050. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestHistoryCommand.js +2 -2
  1051. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestsCommand.js +2 -2
  1052. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotInstanceRequestsCommand.js +2 -2
  1053. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotPriceHistoryCommand.js +2 -2
  1054. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStaleSecurityGroupsCommand.js +2 -2
  1055. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStoreImageTasksCommand.js +2 -2
  1056. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSubnetsCommand.js +2 -2
  1057. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTagsCommand.js +2 -2
  1058. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFilterRulesCommand.js +2 -2
  1059. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFiltersCommand.js +2 -2
  1060. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorSessionsCommand.js +2 -2
  1061. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorTargetsCommand.js +2 -2
  1062. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayAttachmentsCommand.js +2 -2
  1063. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectPeersCommand.js +2 -2
  1064. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectsCommand.js +2 -2
  1065. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMeteringPoliciesCommand.js +2 -2
  1066. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMulticastDomainsCommand.js +2 -2
  1067. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPeeringAttachmentsCommand.js +2 -2
  1068. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPolicyTablesCommand.js +2 -2
  1069. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.js +2 -2
  1070. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTablesCommand.js +2 -2
  1071. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayVpcAttachmentsCommand.js +2 -2
  1072. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewaysCommand.js +2 -2
  1073. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrunkInterfaceAssociationsCommand.js +2 -2
  1074. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessEndpointsCommand.js +2 -2
  1075. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessGroupsCommand.js +2 -2
  1076. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.js +2 -2
  1077. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstancesCommand.js +2 -2
  1078. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -2
  1079. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeAttributeCommand.js +2 -2
  1080. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeStatusCommand.js +2 -2
  1081. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesCommand.js +2 -2
  1082. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesModificationsCommand.js +2 -2
  1083. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcAttributeCommand.js +2 -2
  1084. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessExclusionsCommand.js +2 -2
  1085. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessOptionsCommand.js +2 -2
  1086. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkCommand.js +2 -2
  1087. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkDnsSupportCommand.js +2 -2
  1088. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEncryptionControlsCommand.js +2 -2
  1089. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointAssociationsCommand.js +2 -2
  1090. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionNotificationsCommand.js +2 -2
  1091. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionsCommand.js +2 -2
  1092. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServiceConfigurationsCommand.js +2 -2
  1093. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicePermissionsCommand.js +2 -2
  1094. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicesCommand.js +2 -2
  1095. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointsCommand.js +2 -2
  1096. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcPeeringConnectionsCommand.js +2 -2
  1097. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcsCommand.js +2 -2
  1098. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConcentratorsCommand.js +2 -2
  1099. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConnectionsCommand.js +2 -2
  1100. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnGatewaysCommand.js +2 -2
  1101. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachClassicLinkVpcCommand.js +2 -2
  1102. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachInternetGatewayCommand.js +2 -2
  1103. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachNetworkInterfaceCommand.js +2 -2
  1104. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -2
  1105. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVolumeCommand.js +2 -2
  1106. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVpnGatewayCommand.js +2 -2
  1107. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAddressTransferCommand.js +2 -2
  1108. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAllowedImagesSettingsCommand.js +2 -2
  1109. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -2
  1110. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableCapacityManagerCommand.js +2 -2
  1111. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableEbsEncryptionByDefaultCommand.js +2 -2
  1112. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastLaunchCommand.js +2 -2
  1113. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastSnapshotRestoresCommand.js +2 -2
  1114. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageBlockPublicAccessCommand.js +2 -2
  1115. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageCommand.js +2 -2
  1116. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeprecationCommand.js +2 -2
  1117. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeregistrationProtectionCommand.js +2 -2
  1118. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableInstanceSqlHaStandbyDetectionsCommand.js +2 -2
  1119. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamOrganizationAdminAccountCommand.js +2 -2
  1120. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamPolicyCommand.js +2 -2
  1121. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableRouteServerPropagationCommand.js +2 -2
  1122. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSerialConsoleAccessCommand.js +2 -2
  1123. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSnapshotBlockPublicAccessCommand.js +2 -2
  1124. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableTransitGatewayRouteTablePropagationCommand.js +2 -2
  1125. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVgwRoutePropagationCommand.js +2 -2
  1126. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkCommand.js +2 -2
  1127. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkDnsSupportCommand.js +2 -2
  1128. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateAddressCommand.js +2 -2
  1129. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateCapacityReservationBillingOwnerCommand.js +2 -2
  1130. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateClientVpnTargetNetworkCommand.js +2 -2
  1131. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateEnclaveCertificateIamRoleCommand.js +2 -2
  1132. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIamInstanceProfileCommand.js +2 -2
  1133. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateInstanceEventWindowCommand.js +2 -2
  1134. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamByoasnCommand.js +2 -2
  1135. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamResourceDiscoveryCommand.js +2 -2
  1136. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateNatGatewayAddressCommand.js +2 -2
  1137. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteServerCommand.js +2 -2
  1138. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteTableCommand.js +2 -2
  1139. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSecurityGroupVpcCommand.js +2 -2
  1140. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSubnetCidrBlockCommand.js +2 -2
  1141. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayMulticastDomainCommand.js +2 -2
  1142. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayPolicyTableCommand.js +2 -2
  1143. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayRouteTableCommand.js +2 -2
  1144. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTrunkInterfaceCommand.js +2 -2
  1145. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateVpcCidrBlockCommand.js +2 -2
  1146. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAddressTransferCommand.js +2 -2
  1147. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAllowedImagesSettingsCommand.js +2 -2
  1148. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -2
  1149. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableCapacityManagerCommand.js +2 -2
  1150. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableEbsEncryptionByDefaultCommand.js +2 -2
  1151. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastLaunchCommand.js +2 -2
  1152. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastSnapshotRestoresCommand.js +2 -2
  1153. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageBlockPublicAccessCommand.js +2 -2
  1154. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageCommand.js +2 -2
  1155. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeprecationCommand.js +2 -2
  1156. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeregistrationProtectionCommand.js +2 -2
  1157. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableInstanceSqlHaStandbyDetectionsCommand.js +2 -2
  1158. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamOrganizationAdminAccountCommand.js +2 -2
  1159. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamPolicyCommand.js +2 -2
  1160. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.js +2 -2
  1161. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableRouteServerPropagationCommand.js +2 -2
  1162. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSerialConsoleAccessCommand.js +2 -2
  1163. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSnapshotBlockPublicAccessCommand.js +2 -2
  1164. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableTransitGatewayRouteTablePropagationCommand.js +2 -2
  1165. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVgwRoutePropagationCommand.js +2 -2
  1166. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVolumeIOCommand.js +2 -2
  1167. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkCommand.js +2 -2
  1168. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkDnsSupportCommand.js +2 -2
  1169. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientCertificateRevocationListCommand.js +2 -2
  1170. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientConfigurationCommand.js +2 -2
  1171. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportImageCommand.js +2 -2
  1172. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportTransitGatewayRoutesCommand.js +2 -2
  1173. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.js +2 -2
  1174. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetActiveVpnTunnelStatusCommand.js +2 -2
  1175. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAllowedImagesSettingsCommand.js +2 -2
  1176. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedEnclaveCertificateIamRolesCommand.js +2 -2
  1177. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedIpv6PoolCidrsCommand.js +2 -2
  1178. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAwsNetworkPerformanceDataCommand.js +2 -2
  1179. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerAttributesCommand.js +2 -2
  1180. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDataCommand.js +2 -2
  1181. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDimensionsCommand.js +2 -2
  1182. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +2 -2
  1183. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityReservationUsageCommand.js +2 -2
  1184. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCoipPoolUsageCommand.js +2 -2
  1185. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleOutputCommand.js +2 -2
  1186. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleScreenshotCommand.js +2 -2
  1187. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDeclarativePoliciesReportSummaryCommand.js +2 -2
  1188. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDefaultCreditSpecificationCommand.js +2 -2
  1189. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsDefaultKmsKeyIdCommand.js +2 -2
  1190. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +2 -2
  1191. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEnabledIpamPolicyCommand.js +2 -2
  1192. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetFlowLogsIntegrationTemplateCommand.js +2 -2
  1193. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetGroupsForCapacityReservationCommand.js +2 -2
  1194. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetHostReservationPurchasePreviewCommand.js +2 -2
  1195. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageAncestryCommand.js +2 -2
  1196. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageBlockPublicAccessStateCommand.js +2 -2
  1197. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceMetadataDefaultsCommand.js +2 -2
  1198. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTpmEkPubCommand.js +2 -2
  1199. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -2
  1200. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceUefiDataCommand.js +2 -2
  1201. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamAddressHistoryCommand.js +2 -2
  1202. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredAccountsCommand.js +2 -2
  1203. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredPublicAddressesCommand.js +2 -2
  1204. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredResourceCidrsCommand.js +2 -2
  1205. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyAllocationRulesCommand.js +2 -2
  1206. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyOrganizationTargetsCommand.js +2 -2
  1207. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolAllocationsCommand.js +2 -2
  1208. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolCidrsCommand.js +2 -2
  1209. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverRulesCommand.js +2 -2
  1210. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionEntriesCommand.js +2 -2
  1211. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionsCommand.js +2 -2
  1212. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamResourceCidrsCommand.js +2 -2
  1213. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetLaunchTemplateDataCommand.js +2 -2
  1214. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListAssociationsCommand.js +2 -2
  1215. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListEntriesCommand.js +2 -2
  1216. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +2 -2
  1217. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.js +2 -2
  1218. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeContentCommand.js +2 -2
  1219. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetPasswordDataCommand.js +2 -2
  1220. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetReservedInstancesExchangeQuoteCommand.js +2 -2
  1221. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerAssociationsCommand.js +2 -2
  1222. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerPropagationsCommand.js +2 -2
  1223. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerRoutingDatabaseCommand.js +2 -2
  1224. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSecurityGroupsForVpcCommand.js +2 -2
  1225. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSerialConsoleAccessStatusCommand.js +2 -2
  1226. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSnapshotBlockPublicAccessStateCommand.js +2 -2
  1227. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSpotPlacementScoresCommand.js +2 -2
  1228. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSubnetCidrReservationsCommand.js +2 -2
  1229. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayAttachmentPropagationsCommand.js +2 -2
  1230. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMeteringPolicyEntriesCommand.js +2 -2
  1231. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMulticastDomainAssociationsCommand.js +2 -2
  1232. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableAssociationsCommand.js +2 -2
  1233. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableEntriesCommand.js +2 -2
  1234. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPrefixListReferencesCommand.js +2 -2
  1235. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTableAssociationsCommand.js +2 -2
  1236. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTablePropagationsCommand.js +2 -2
  1237. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointPolicyCommand.js +2 -2
  1238. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointTargetsCommand.js +2 -2
  1239. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessGroupPolicyCommand.js +2 -2
  1240. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.js +2 -2
  1241. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +2 -2
  1242. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceTypesCommand.js +2 -2
  1243. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +2 -2
  1244. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportClientVpnClientCertificateRevocationListCommand.js +2 -2
  1245. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportImageCommand.js +2 -2
  1246. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportInstanceCommand.js +2 -2
  1247. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportKeyPairCommand.js +2 -2
  1248. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportSnapshotCommand.js +2 -2
  1249. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportVolumeCommand.js +2 -2
  1250. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListImagesInRecycleBinCommand.js +2 -2
  1251. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListSnapshotsInRecycleBinCommand.js +2 -2
  1252. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListVolumesInRecycleBinCommand.js +2 -2
  1253. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/LockSnapshotCommand.js +2 -2
  1254. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAddressAttributeCommand.js +2 -2
  1255. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAvailabilityZoneGroupCommand.js +2 -2
  1256. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationCommand.js +2 -2
  1257. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationFleetCommand.js +2 -2
  1258. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyClientVpnEndpointCommand.js +2 -2
  1259. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyDefaultCreditSpecificationCommand.js +2 -2
  1260. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyEbsDefaultKmsKeyIdCommand.js +2 -2
  1261. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFleetCommand.js +2 -2
  1262. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFpgaImageAttributeCommand.js +2 -2
  1263. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyHostsCommand.js +2 -2
  1264. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdFormatCommand.js +2 -2
  1265. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdentityIdFormatCommand.js +2 -2
  1266. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyImageAttributeCommand.js +2 -2
  1267. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceAttributeCommand.js +2 -2
  1268. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCapacityReservationAttributesCommand.js +2 -2
  1269. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +2 -2
  1270. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCpuOptionsCommand.js +2 -2
  1271. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCreditSpecificationCommand.js +2 -2
  1272. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventStartTimeCommand.js +2 -2
  1273. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventWindowCommand.js +2 -2
  1274. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMaintenanceOptionsCommand.js +2 -2
  1275. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataDefaultsCommand.js +2 -2
  1276. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataOptionsCommand.js +2 -2
  1277. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceNetworkPerformanceOptionsCommand.js +2 -2
  1278. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstancePlacementCommand.js +2 -2
  1279. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamCommand.js +2 -2
  1280. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPolicyAllocationRulesCommand.js +2 -2
  1281. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolCommand.js +2 -2
  1282. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverCommand.js +2 -2
  1283. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverTargetCommand.js +2 -2
  1284. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceCidrCommand.js +2 -2
  1285. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceDiscoveryCommand.js +2 -2
  1286. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamScopeCommand.js +2 -2
  1287. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLaunchTemplateCommand.js +2 -2
  1288. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLocalGatewayRouteCommand.js +2 -2
  1289. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedPrefixListCommand.js +2 -2
  1290. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +2 -2
  1291. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyNetworkInterfaceAttributeCommand.js +2 -2
  1292. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPrivateDnsNameOptionsCommand.js +2 -2
  1293. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPublicIpDnsNameOptionsCommand.js +2 -2
  1294. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyReservedInstancesCommand.js +2 -2
  1295. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyRouteServerCommand.js +2 -2
  1296. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySecurityGroupRulesCommand.js +2 -2
  1297. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotAttributeCommand.js +2 -2
  1298. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotTierCommand.js +2 -2
  1299. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySpotFleetRequestCommand.js +2 -2
  1300. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySubnetAttributeCommand.js +2 -2
  1301. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.js +2 -2
  1302. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterRuleCommand.js +2 -2
  1303. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorSessionCommand.js +2 -2
  1304. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayCommand.js +2 -2
  1305. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayMeteringPolicyCommand.js +2 -2
  1306. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayPrefixListReferenceCommand.js +2 -2
  1307. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayVpcAttachmentCommand.js +2 -2
  1308. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointCommand.js +2 -2
  1309. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointPolicyCommand.js +2 -2
  1310. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupCommand.js +2 -2
  1311. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupPolicyCommand.js +2 -2
  1312. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceCommand.js +2 -2
  1313. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.js +2 -2
  1314. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessTrustProviderCommand.js +2 -2
  1315. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeAttributeCommand.js +2 -2
  1316. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeCommand.js +2 -2
  1317. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcAttributeCommand.js +2 -2
  1318. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessExclusionCommand.js +2 -2
  1319. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessOptionsCommand.js +2 -2
  1320. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEncryptionControlCommand.js +2 -2
  1321. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointCommand.js +2 -2
  1322. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointConnectionNotificationCommand.js +2 -2
  1323. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServiceConfigurationCommand.js +2 -2
  1324. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +2 -2
  1325. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePermissionsCommand.js +2 -2
  1326. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcPeeringConnectionOptionsCommand.js +2 -2
  1327. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcTenancyCommand.js +2 -2
  1328. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionCommand.js +2 -2
  1329. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionOptionsCommand.js +2 -2
  1330. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelCertificateCommand.js +2 -2
  1331. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelOptionsCommand.js +2 -2
  1332. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MonitorInstancesCommand.js +2 -2
  1333. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveAddressToVpcCommand.js +2 -2
  1334. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveByoipCidrToIpamCommand.js +2 -2
  1335. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveCapacityReservationInstancesCommand.js +2 -2
  1336. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionByoipCidrCommand.js +2 -2
  1337. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamByoasnCommand.js +2 -2
  1338. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamPoolCidrCommand.js +2 -2
  1339. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionPublicIpv4PoolCidrCommand.js +2 -2
  1340. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockCommand.js +2 -2
  1341. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockExtensionCommand.js +2 -2
  1342. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseHostReservationCommand.js +2 -2
  1343. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseReservedInstancesOfferingCommand.js +2 -2
  1344. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseScheduledInstancesCommand.js +2 -2
  1345. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RebootInstancesCommand.js +2 -2
  1346. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterImageCommand.js +2 -2
  1347. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterInstanceEventNotificationAttributesCommand.js +2 -2
  1348. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupMembersCommand.js +2 -2
  1349. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.js +2 -2
  1350. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectCapacityReservationBillingOwnershipCommand.js +2 -2
  1351. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +2 -2
  1352. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.js +2 -2
  1353. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayPeeringAttachmentCommand.js +2 -2
  1354. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayVpcAttachmentCommand.js +2 -2
  1355. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcEndpointConnectionsCommand.js +2 -2
  1356. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcPeeringConnectionCommand.js +2 -2
  1357. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseAddressCommand.js +2 -2
  1358. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseHostsCommand.js +2 -2
  1359. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseIpamPoolAllocationCommand.js +2 -2
  1360. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceIamInstanceProfileAssociationCommand.js +2 -2
  1361. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.js +2 -2
  1362. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclAssociationCommand.js +2 -2
  1363. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclEntryCommand.js +2 -2
  1364. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteCommand.js +2 -2
  1365. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteTableAssociationCommand.js +2 -2
  1366. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -2
  1367. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceVpnTunnelCommand.js +2 -2
  1368. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReportInstanceStatusCommand.js +2 -2
  1369. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotFleetCommand.js +2 -2
  1370. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotInstancesCommand.js +2 -2
  1371. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetAddressAttributeCommand.js +2 -2
  1372. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetEbsDefaultKmsKeyIdCommand.js +2 -2
  1373. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetFpgaImageAttributeCommand.js +2 -2
  1374. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetImageAttributeCommand.js +2 -2
  1375. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetInstanceAttributeCommand.js +2 -2
  1376. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +2 -2
  1377. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetSnapshotAttributeCommand.js +2 -2
  1378. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreAddressToClassicCommand.js +2 -2
  1379. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreImageFromRecycleBinCommand.js +2 -2
  1380. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +2 -2
  1381. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +2 -2
  1382. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotTierCommand.js +2 -2
  1383. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreVolumeFromRecycleBinCommand.js +2 -2
  1384. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeClientVpnIngressCommand.js +2 -2
  1385. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupEgressCommand.js +2 -2
  1386. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupIngressCommand.js +2 -2
  1387. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunInstancesCommand.js +2 -2
  1388. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunScheduledInstancesCommand.js +2 -2
  1389. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchLocalGatewayRoutesCommand.js +2 -2
  1390. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayMulticastGroupsCommand.js +2 -2
  1391. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayRoutesCommand.js +2 -2
  1392. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SendDiagnosticInterruptCommand.js +2 -2
  1393. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartDeclarativePoliciesReportCommand.js +2 -2
  1394. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartInstancesCommand.js +2 -2
  1395. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAccessScopeAnalysisCommand.js +2 -2
  1396. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAnalysisCommand.js +2 -2
  1397. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.js +2 -2
  1398. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StopInstancesCommand.js +2 -2
  1399. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateClientVpnConnectionsCommand.js +2 -2
  1400. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateInstancesCommand.js +2 -2
  1401. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignIpv6AddressesCommand.js +2 -2
  1402. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateIpAddressesCommand.js +2 -2
  1403. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateNatGatewayAddressCommand.js +2 -2
  1404. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnlockSnapshotCommand.js +2 -2
  1405. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnmonitorInstancesCommand.js +2 -2
  1406. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +2 -2
  1407. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerOrganizationsAccessCommand.js +2 -2
  1408. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateInterruptibleCapacityReservationAllocationCommand.js +2 -2
  1409. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.js +2 -2
  1410. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.js +2 -2
  1411. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/WithdrawByoipCidrCommand.js +2 -2
  1412. package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/bdd.js +1 -1
  1413. package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/endpointResolver.js +2 -2
  1414. package/node_modules/@aws-sdk/client-ec2/dist-es/models/EC2ServiceException.js +1 -1
  1415. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.browser.js +5 -7
  1416. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +5 -10
  1417. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +3 -4
  1418. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeExtensions.js +3 -3
  1419. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +18 -15
  1420. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForBundleTaskComplete.js +1 -1
  1421. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskCancelled.js +1 -1
  1422. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskCompleted.js +1 -1
  1423. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForConversionTaskDeleted.js +1 -1
  1424. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForCustomerGatewayAvailable.js +1 -1
  1425. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForExportTaskCancelled.js +1 -1
  1426. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForExportTaskCompleted.js +1 -1
  1427. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageAvailable.js +1 -1
  1428. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +1 -1
  1429. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageUsageReportAvailable.js +1 -1
  1430. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +1 -1
  1431. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +1 -1
  1432. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
  1433. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
  1434. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
  1435. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
  1436. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +1 -1
  1437. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +1 -1
  1438. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +1 -1
  1439. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
  1440. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
  1441. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
  1442. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkDeleteComplete.js +1 -1
  1443. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
  1444. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetDeleteComplete.js +1 -1
  1445. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
  1446. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupVpcAssociationAssociated.js +1 -1
  1447. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupVpcAssociationDisassociated.js +1 -1
  1448. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
  1449. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotImported.js +1 -1
  1450. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
  1451. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForStoreImageTaskComplete.js +1 -1
  1452. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
  1453. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSystemStatusOk.js +1 -1
  1454. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
  1455. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +1 -1
  1456. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
  1457. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
  1458. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +1 -1
  1459. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
  1460. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
  1461. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpnConnectionAvailable.js +1 -1
  1462. package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpnConnectionDeleted.js +1 -1
  1463. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +1 -2
  1464. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +6 -7
  1465. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +6 -4
  1466. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +6 -4
  1467. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +6 -4
  1468. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  1469. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  1470. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  1471. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  1472. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcEndpointConnectionsCommand.d.ts +6 -4
  1473. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcPeeringConnectionCommand.d.ts +6 -4
  1474. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +6 -4
  1475. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +6 -4
  1476. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +6 -4
  1477. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +6 -4
  1478. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +6 -4
  1479. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignIpv6AddressesCommand.d.ts +6 -4
  1480. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateIpAddressesCommand.d.ts +6 -4
  1481. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateNatGatewayAddressCommand.d.ts +6 -4
  1482. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateAddressCommand.d.ts +6 -4
  1483. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +6 -4
  1484. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +6 -4
  1485. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateDhcpOptionsCommand.d.ts +6 -4
  1486. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +6 -4
  1487. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIamInstanceProfileCommand.d.ts +6 -4
  1488. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateInstanceEventWindowCommand.d.ts +6 -4
  1489. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamByoasnCommand.d.ts +6 -4
  1490. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +6 -4
  1491. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +6 -4
  1492. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteServerCommand.d.ts +6 -4
  1493. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteTableCommand.d.ts +6 -4
  1494. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSecurityGroupVpcCommand.d.ts +6 -4
  1495. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSubnetCidrBlockCommand.d.ts +6 -4
  1496. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  1497. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +6 -4
  1498. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +6 -4
  1499. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTrunkInterfaceCommand.d.ts +6 -4
  1500. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateVpcCidrBlockCommand.d.ts +6 -4
  1501. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachClassicLinkVpcCommand.d.ts +6 -4
  1502. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachInternetGatewayCommand.d.ts +6 -4
  1503. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachNetworkInterfaceCommand.d.ts +6 -4
  1504. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +6 -4
  1505. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVolumeCommand.d.ts +6 -4
  1506. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVpnGatewayCommand.d.ts +6 -4
  1507. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeClientVpnIngressCommand.d.ts +6 -4
  1508. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +6 -4
  1509. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +6 -4
  1510. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +6 -4
  1511. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelBundleTaskCommand.d.ts +6 -4
  1512. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +6 -4
  1513. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationFleetsCommand.d.ts +6 -4
  1514. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelConversionTaskCommand.d.ts +6 -4
  1515. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelDeclarativePoliciesReportCommand.d.ts +6 -4
  1516. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelExportTaskCommand.d.ts +6 -4
  1517. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +6 -4
  1518. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImportTaskCommand.d.ts +6 -4
  1519. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelReservedInstancesListingCommand.d.ts +6 -4
  1520. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotFleetRequestsCommand.d.ts +6 -4
  1521. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotInstanceRequestsCommand.d.ts +6 -4
  1522. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ConfirmProductInstanceCommand.d.ts +6 -4
  1523. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyFpgaImageCommand.d.ts +6 -4
  1524. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +6 -4
  1525. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +6 -4
  1526. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +6 -4
  1527. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +6 -4
  1528. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +6 -4
  1529. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +6 -4
  1530. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +6 -4
  1531. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +6 -4
  1532. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +6 -4
  1533. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +6 -4
  1534. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipCidrCommand.d.ts +6 -4
  1535. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +6 -4
  1536. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +6 -4
  1537. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +6 -4
  1538. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +6 -4
  1539. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +6 -4
  1540. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +6 -4
  1541. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +6 -4
  1542. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +6 -4
  1543. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +6 -4
  1544. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +6 -4
  1545. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +6 -4
  1546. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +6 -4
  1547. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +6 -4
  1548. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +6 -4
  1549. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +6 -4
  1550. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +6 -4
  1551. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +6 -4
  1552. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +6 -4
  1553. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +6 -4
  1554. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +6 -4
  1555. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +6 -4
  1556. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +6 -4
  1557. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +6 -4
  1558. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +6 -4
  1559. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +6 -4
  1560. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +6 -4
  1561. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +6 -4
  1562. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +6 -4
  1563. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteCommand.d.ts +6 -4
  1564. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +6 -4
  1565. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +6 -4
  1566. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +6 -4
  1567. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +6 -4
  1568. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +6 -4
  1569. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +6 -4
  1570. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +6 -4
  1571. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +6 -4
  1572. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +6 -4
  1573. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclEntryCommand.d.ts +6 -4
  1574. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +6 -4
  1575. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +6 -4
  1576. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +6 -4
  1577. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +6 -4
  1578. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +6 -4
  1579. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +6 -4
  1580. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +6 -4
  1581. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReservedInstancesListingCommand.d.ts +6 -4
  1582. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +6 -4
  1583. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteCommand.d.ts +6 -4
  1584. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +6 -4
  1585. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +6 -4
  1586. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +6 -4
  1587. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +6 -4
  1588. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +6 -4
  1589. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +6 -4
  1590. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +6 -4
  1591. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +6 -4
  1592. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +6 -4
  1593. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +6 -4
  1594. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateStoreImageTaskCommand.d.ts +6 -4
  1595. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +6 -4
  1596. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +6 -4
  1597. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTagsCommand.d.ts +6 -4
  1598. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +6 -4
  1599. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +6 -4
  1600. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +6 -4
  1601. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +6 -4
  1602. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +6 -4
  1603. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +6 -4
  1604. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +6 -4
  1605. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  1606. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +6 -4
  1607. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  1608. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  1609. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +6 -4
  1610. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  1611. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +6 -4
  1612. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +6 -4
  1613. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +6 -4
  1614. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  1615. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +6 -4
  1616. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +6 -4
  1617. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +6 -4
  1618. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +6 -4
  1619. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +6 -4
  1620. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  1621. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +6 -4
  1622. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +6 -4
  1623. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +6 -4
  1624. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +6 -4
  1625. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +6 -4
  1626. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +6 -4
  1627. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +6 -4
  1628. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +6 -4
  1629. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionRouteCommand.d.ts +6 -4
  1630. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +6 -4
  1631. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCapacityManagerDataExportCommand.d.ts +6 -4
  1632. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCarrierGatewayCommand.d.ts +6 -4
  1633. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +6 -4
  1634. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnRouteCommand.d.ts +6 -4
  1635. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipCidrCommand.d.ts +6 -4
  1636. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipPoolCommand.d.ts +6 -4
  1637. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCustomerGatewayCommand.d.ts +6 -4
  1638. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteDhcpOptionsCommand.d.ts +6 -4
  1639. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +6 -4
  1640. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFleetsCommand.d.ts +6 -4
  1641. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFlowLogsCommand.d.ts +6 -4
  1642. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFpgaImageCommand.d.ts +6 -4
  1643. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteImageUsageReportCommand.d.ts +6 -4
  1644. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +6 -4
  1645. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceEventWindowCommand.d.ts +6 -4
  1646. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInternetGatewayCommand.d.ts +6 -4
  1647. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamCommand.d.ts +6 -4
  1648. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +6 -4
  1649. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPolicyCommand.d.ts +6 -4
  1650. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPoolCommand.d.ts +6 -4
  1651. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverCommand.d.ts +6 -4
  1652. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +6 -4
  1653. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamResourceDiscoveryCommand.d.ts +6 -4
  1654. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamScopeCommand.d.ts +6 -4
  1655. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteKeyPairCommand.d.ts +6 -4
  1656. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +6 -4
  1657. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateVersionsCommand.d.ts +6 -4
  1658. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteCommand.d.ts +6 -4
  1659. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableCommand.d.ts +6 -4
  1660. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +6 -4
  1661. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +6 -4
  1662. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +6 -4
  1663. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +6 -4
  1664. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteManagedPrefixListCommand.d.ts +6 -4
  1665. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNatGatewayCommand.d.ts +6 -4
  1666. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclCommand.d.ts +6 -4
  1667. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclEntryCommand.d.ts +6 -4
  1668. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +6 -4
  1669. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +6 -4
  1670. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +6 -4
  1671. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsPathCommand.d.ts +6 -4
  1672. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfaceCommand.d.ts +6 -4
  1673. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfacePermissionCommand.d.ts +6 -4
  1674. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePlacementGroupCommand.d.ts +6 -4
  1675. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +6 -4
  1676. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +6 -4
  1677. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteCommand.d.ts +6 -4
  1678. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerCommand.d.ts +6 -4
  1679. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerEndpointCommand.d.ts +6 -4
  1680. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerPeerCommand.d.ts +6 -4
  1681. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +6 -4
  1682. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +6 -4
  1683. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondarySubnetCommand.d.ts +6 -4
  1684. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +6 -4
  1685. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +6 -4
  1686. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +6 -4
  1687. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +6 -4
  1688. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +6 -4
  1689. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +6 -4
  1690. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +6 -4
  1691. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +6 -4
  1692. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +6 -4
  1693. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorTargetCommand.d.ts +6 -4
  1694. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  1695. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayCommand.d.ts +6 -4
  1696. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectCommand.d.ts +6 -4
  1697. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +6 -4
  1698. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  1699. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +6 -4
  1700. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +6 -4
  1701. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  1702. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +6 -4
  1703. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  1704. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +6 -4
  1705. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +6 -4
  1706. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableCommand.d.ts +6 -4
  1707. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  1708. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +6 -4
  1709. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +6 -4
  1710. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +6 -4
  1711. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +6 -4
  1712. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVolumeCommand.d.ts +6 -4
  1713. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  1714. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcCommand.d.ts +6 -4
  1715. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEncryptionControlCommand.d.ts +6 -4
  1716. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +6 -4
  1717. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +6 -4
  1718. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointsCommand.d.ts +6 -4
  1719. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +6 -4
  1720. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConcentratorCommand.d.ts +6 -4
  1721. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionCommand.d.ts +6 -4
  1722. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionRouteCommand.d.ts +6 -4
  1723. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnGatewayCommand.d.ts +6 -4
  1724. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +6 -4
  1725. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamByoasnCommand.d.ts +6 -4
  1726. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamPoolCidrCommand.d.ts +6 -4
  1727. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +6 -4
  1728. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterImageCommand.d.ts +6 -4
  1729. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +6 -4
  1730. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +6 -4
  1731. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +6 -4
  1732. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountAttributesCommand.d.ts +6 -4
  1733. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressTransfersCommand.d.ts +6 -4
  1734. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +6 -4
  1735. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesCommand.d.ts +6 -4
  1736. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +6 -4
  1737. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +6 -4
  1738. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +6 -4
  1739. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeBundleTasksCommand.d.ts +6 -4
  1740. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeByoipCidrsCommand.d.ts +6 -4
  1741. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +6 -4
  1742. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +6 -4
  1743. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockOfferingsCommand.d.ts +6 -4
  1744. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockStatusCommand.d.ts +6 -4
  1745. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlocksCommand.d.ts +6 -4
  1746. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityManagerDataExportsCommand.d.ts +6 -4
  1747. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +6 -4
  1748. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +6 -4
  1749. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +6 -4
  1750. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +6 -4
  1751. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +6 -4
  1752. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClassicLinkInstancesCommand.d.ts +6 -4
  1753. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +6 -4
  1754. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnConnectionsCommand.d.ts +6 -4
  1755. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +6 -4
  1756. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +6 -4
  1757. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +6 -4
  1758. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCoipPoolsCommand.d.ts +6 -4
  1759. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeConversionTasksCommand.d.ts +6 -4
  1760. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCustomerGatewaysCommand.d.ts +6 -4
  1761. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +6 -4
  1762. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDhcpOptionsCommand.d.ts +6 -4
  1763. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +6 -4
  1764. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeElasticGpusCommand.d.ts +6 -4
  1765. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportImageTasksCommand.d.ts +6 -4
  1766. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportTasksCommand.d.ts +6 -4
  1767. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +6 -4
  1768. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastSnapshotRestoresCommand.d.ts +6 -4
  1769. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetHistoryCommand.d.ts +6 -4
  1770. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetInstancesCommand.d.ts +6 -4
  1771. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +6 -4
  1772. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +6 -4
  1773. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImageAttributeCommand.d.ts +6 -4
  1774. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImagesCommand.d.ts +6 -4
  1775. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationOfferingsCommand.d.ts +6 -4
  1776. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationsCommand.d.ts +6 -4
  1777. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostsCommand.d.ts +6 -4
  1778. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +6 -4
  1779. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdFormatCommand.d.ts +6 -4
  1780. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdentityIdFormatCommand.d.ts +6 -4
  1781. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageAttributeCommand.d.ts +6 -4
  1782. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageReferencesCommand.d.ts +6 -4
  1783. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportEntriesCommand.d.ts +6 -4
  1784. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportsCommand.d.ts +6 -4
  1785. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +6 -4
  1786. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportImageTasksCommand.d.ts +6 -4
  1787. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +6 -4
  1788. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +6 -4
  1789. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +6 -4
  1790. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +6 -4
  1791. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +6 -4
  1792. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +6 -4
  1793. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +6 -4
  1794. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +6 -4
  1795. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaStatesCommand.d.ts +6 -4
  1796. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +6 -4
  1797. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +6 -4
  1798. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +6 -4
  1799. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +11 -5
  1800. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +6 -4
  1801. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInternetGatewaysCommand.d.ts +6 -4
  1802. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamByoasnCommand.d.ts +6 -4
  1803. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +6 -4
  1804. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoliciesCommand.d.ts +6 -4
  1805. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolsCommand.d.ts +6 -4
  1806. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +6 -4
  1807. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolversCommand.d.ts +6 -4
  1808. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +6 -4
  1809. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +6 -4
  1810. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamScopesCommand.d.ts +6 -4
  1811. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamsCommand.d.ts +6 -4
  1812. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpv6PoolsCommand.d.ts +6 -4
  1813. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeKeyPairsCommand.d.ts +6 -4
  1814. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +6 -4
  1815. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +6 -4
  1816. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +6 -4
  1817. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +6 -4
  1818. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +6 -4
  1819. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +6 -4
  1820. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +6 -4
  1821. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +6 -4
  1822. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLockedSnapshotsCommand.d.ts +6 -4
  1823. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacHostsCommand.d.ts +6 -4
  1824. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacModificationTasksCommand.d.ts +6 -4
  1825. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeManagedPrefixListsCommand.d.ts +6 -4
  1826. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMovingAddressesCommand.d.ts +6 -4
  1827. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNatGatewaysCommand.d.ts +6 -4
  1828. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkAclsCommand.d.ts +6 -4
  1829. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +6 -4
  1830. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +6 -4
  1831. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +6 -4
  1832. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsPathsCommand.d.ts +6 -4
  1833. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +6 -4
  1834. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +6 -4
  1835. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +6 -4
  1836. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeOutpostLagsCommand.d.ts +6 -4
  1837. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +6 -4
  1838. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrefixListsCommand.d.ts +6 -4
  1839. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrincipalIdFormatCommand.d.ts +6 -4
  1840. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +6 -4
  1841. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRegionsCommand.d.ts +6 -4
  1842. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +6 -4
  1843. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +6 -4
  1844. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +6 -4
  1845. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +6 -4
  1846. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +6 -4
  1847. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerEndpointsCommand.d.ts +6 -4
  1848. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerPeersCommand.d.ts +6 -4
  1849. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServersCommand.d.ts +6 -4
  1850. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteTablesCommand.d.ts +6 -4
  1851. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +6 -4
  1852. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +6 -4
  1853. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryInterfacesCommand.d.ts +6 -4
  1854. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryNetworksCommand.d.ts +6 -4
  1855. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondarySubnetsCommand.d.ts +6 -4
  1856. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupReferencesCommand.d.ts +6 -4
  1857. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupRulesCommand.d.ts +6 -4
  1858. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +6 -4
  1859. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupsCommand.d.ts +6 -4
  1860. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +6 -4
  1861. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotAttributeCommand.d.ts +6 -4
  1862. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotTierStatusCommand.d.ts +6 -4
  1863. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotsCommand.d.ts +6 -4
  1864. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +6 -4
  1865. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetInstancesCommand.d.ts +6 -4
  1866. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +6 -4
  1867. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +6 -4
  1868. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +6 -4
  1869. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +6 -4
  1870. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +6 -4
  1871. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +6 -4
  1872. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +6 -4
  1873. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +6 -4
  1874. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +6 -4
  1875. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +6 -4
  1876. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +6 -4
  1877. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +6 -4
  1878. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +6 -4
  1879. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +6 -4
  1880. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectsCommand.d.ts +6 -4
  1881. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +6 -4
  1882. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +6 -4
  1883. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +6 -4
  1884. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +6 -4
  1885. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +6 -4
  1886. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +6 -4
  1887. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +6 -4
  1888. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +6 -4
  1889. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +6 -4
  1890. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +6 -4
  1891. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +6 -4
  1892. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +6 -4
  1893. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +6 -4
  1894. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +6 -4
  1895. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeAttributeCommand.d.ts +6 -4
  1896. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +6 -4
  1897. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +6 -4
  1898. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +6 -9
  1899. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcAttributeCommand.d.ts +6 -4
  1900. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +6 -4
  1901. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +6 -4
  1902. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkCommand.d.ts +6 -4
  1903. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  1904. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEncryptionControlsCommand.d.ts +6 -4
  1905. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointAssociationsCommand.d.ts +6 -4
  1906. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +6 -4
  1907. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +6 -4
  1908. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +6 -4
  1909. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +6 -4
  1910. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +6 -4
  1911. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +6 -4
  1912. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +6 -4
  1913. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcsCommand.d.ts +6 -4
  1914. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConcentratorsCommand.d.ts +6 -4
  1915. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConnectionsCommand.d.ts +6 -4
  1916. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnGatewaysCommand.d.ts +6 -4
  1917. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachClassicLinkVpcCommand.d.ts +6 -4
  1918. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachInternetGatewayCommand.d.ts +6 -4
  1919. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachNetworkInterfaceCommand.d.ts +6 -4
  1920. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +6 -4
  1921. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVolumeCommand.d.ts +6 -4
  1922. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVpnGatewayCommand.d.ts +6 -4
  1923. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAddressTransferCommand.d.ts +6 -4
  1924. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAllowedImagesSettingsCommand.d.ts +6 -4
  1925. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +6 -4
  1926. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableCapacityManagerCommand.d.ts +6 -4
  1927. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableEbsEncryptionByDefaultCommand.d.ts +6 -4
  1928. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastLaunchCommand.d.ts +6 -4
  1929. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastSnapshotRestoresCommand.d.ts +6 -4
  1930. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +6 -4
  1931. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageCommand.d.ts +6 -4
  1932. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeprecationCommand.d.ts +6 -4
  1933. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeregistrationProtectionCommand.d.ts +6 -4
  1934. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +6 -4
  1935. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +6 -4
  1936. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamPolicyCommand.d.ts +6 -4
  1937. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableRouteServerPropagationCommand.d.ts +6 -4
  1938. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSerialConsoleAccessCommand.d.ts +6 -4
  1939. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +6 -4
  1940. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +6 -4
  1941. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVgwRoutePropagationCommand.d.ts +6 -4
  1942. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkCommand.d.ts +6 -4
  1943. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  1944. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateAddressCommand.d.ts +6 -4
  1945. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +6 -4
  1946. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +6 -4
  1947. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +6 -4
  1948. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIamInstanceProfileCommand.d.ts +6 -4
  1949. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateInstanceEventWindowCommand.d.ts +6 -4
  1950. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamByoasnCommand.d.ts +6 -4
  1951. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +6 -4
  1952. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateNatGatewayAddressCommand.d.ts +6 -4
  1953. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteServerCommand.d.ts +6 -4
  1954. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteTableCommand.d.ts +6 -4
  1955. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSecurityGroupVpcCommand.d.ts +6 -4
  1956. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSubnetCidrBlockCommand.d.ts +6 -4
  1957. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  1958. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +6 -4
  1959. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +6 -4
  1960. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTrunkInterfaceCommand.d.ts +6 -4
  1961. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateVpcCidrBlockCommand.d.ts +6 -4
  1962. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAddressTransferCommand.d.ts +6 -4
  1963. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAllowedImagesSettingsCommand.d.ts +6 -4
  1964. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +6 -4
  1965. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableCapacityManagerCommand.d.ts +6 -4
  1966. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableEbsEncryptionByDefaultCommand.d.ts +6 -4
  1967. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastLaunchCommand.d.ts +6 -4
  1968. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastSnapshotRestoresCommand.d.ts +6 -4
  1969. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +6 -4
  1970. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageCommand.d.ts +6 -4
  1971. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeprecationCommand.d.ts +6 -4
  1972. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +6 -4
  1973. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +6 -4
  1974. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +6 -4
  1975. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamPolicyCommand.d.ts +6 -4
  1976. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +6 -4
  1977. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableRouteServerPropagationCommand.d.ts +6 -4
  1978. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSerialConsoleAccessCommand.d.ts +6 -4
  1979. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +6 -4
  1980. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +6 -4
  1981. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVgwRoutePropagationCommand.d.ts +6 -4
  1982. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVolumeIOCommand.d.ts +6 -4
  1983. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkCommand.d.ts +6 -4
  1984. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  1985. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +6 -4
  1986. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientConfigurationCommand.d.ts +6 -4
  1987. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +6 -4
  1988. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportTransitGatewayRoutesCommand.d.ts +6 -4
  1989. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +6 -4
  1990. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetActiveVpnTunnelStatusCommand.d.ts +6 -4
  1991. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts +6 -4
  1992. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +6 -4
  1993. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +6 -4
  1994. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAwsNetworkPerformanceDataCommand.d.ts +6 -4
  1995. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +6 -4
  1996. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +6 -4
  1997. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +6 -4
  1998. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +6 -4
  1999. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +6 -4
  2000. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +6 -4
  2001. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +6 -4
  2002. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +6 -4
  2003. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +6 -4
  2004. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +6 -4
  2005. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2006. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +6 -4
  2007. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEnabledIpamPolicyCommand.d.ts +6 -4
  2008. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +6 -4
  2009. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +6 -4
  2010. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetHostReservationPurchasePreviewCommand.d.ts +6 -4
  2011. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageAncestryCommand.d.ts +6 -4
  2012. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +6 -4
  2013. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceMetadataDefaultsCommand.d.ts +6 -4
  2014. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +6 -4
  2015. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +6 -4
  2016. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceUefiDataCommand.d.ts +6 -4
  2017. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +6 -4
  2018. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +6 -4
  2019. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +6 -4
  2020. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +6 -4
  2021. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyAllocationRulesCommand.d.ts +6 -4
  2022. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +6 -4
  2023. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +6 -4
  2024. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +6 -4
  2025. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverRulesCommand.d.ts +6 -4
  2026. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +6 -4
  2027. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +6 -4
  2028. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +6 -4
  2029. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +6 -4
  2030. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListAssociationsCommand.d.ts +6 -4
  2031. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListEntriesCommand.d.ts +6 -4
  2032. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +6 -4
  2033. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +6 -4
  2034. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +6 -4
  2035. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetPasswordDataCommand.d.ts +6 -4
  2036. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +6 -4
  2037. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerAssociationsCommand.d.ts +6 -4
  2038. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerPropagationsCommand.d.ts +6 -4
  2039. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerRoutingDatabaseCommand.d.ts +6 -4
  2040. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSecurityGroupsForVpcCommand.d.ts +6 -4
  2041. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSerialConsoleAccessStatusCommand.d.ts +6 -4
  2042. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +6 -4
  2043. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +6 -4
  2044. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +6 -4
  2045. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +6 -4
  2046. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +6 -4
  2047. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  2048. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +6 -4
  2049. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +6 -4
  2050. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +6 -4
  2051. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +6 -4
  2052. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +6 -4
  2053. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +6 -4
  2054. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +6 -4
  2055. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +6 -4
  2056. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +6 -4
  2057. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +6 -4
  2058. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceTypesCommand.d.ts +6 -4
  2059. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +6 -4
  2060. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +6 -4
  2061. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +6 -4
  2062. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +6 -4
  2063. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +6 -4
  2064. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +6 -4
  2065. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportVolumeCommand.d.ts +6 -4
  2066. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +6 -4
  2067. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListSnapshotsInRecycleBinCommand.d.ts +6 -4
  2068. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +6 -4
  2069. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/LockSnapshotCommand.d.ts +6 -4
  2070. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAddressAttributeCommand.d.ts +6 -4
  2071. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAvailabilityZoneGroupCommand.d.ts +6 -4
  2072. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationCommand.d.ts +6 -4
  2073. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationFleetCommand.d.ts +6 -4
  2074. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +6 -4
  2075. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyDefaultCreditSpecificationCommand.d.ts +6 -4
  2076. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2077. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +6 -4
  2078. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFpgaImageAttributeCommand.d.ts +6 -4
  2079. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyHostsCommand.d.ts +6 -4
  2080. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdFormatCommand.d.ts +6 -4
  2081. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdentityIdFormatCommand.d.ts +6 -4
  2082. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyImageAttributeCommand.d.ts +6 -4
  2083. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +6 -4
  2084. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +6 -4
  2085. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +6 -4
  2086. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +6 -4
  2087. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCreditSpecificationCommand.d.ts +6 -4
  2088. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventStartTimeCommand.d.ts +6 -4
  2089. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventWindowCommand.d.ts +6 -4
  2090. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +6 -4
  2091. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +6 -4
  2092. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataOptionsCommand.d.ts +6 -4
  2093. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +6 -4
  2094. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstancePlacementCommand.d.ts +6 -4
  2095. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamCommand.d.ts +6 -4
  2096. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +6 -4
  2097. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolCommand.d.ts +6 -4
  2098. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverCommand.d.ts +6 -4
  2099. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +6 -4
  2100. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceCidrCommand.d.ts +6 -4
  2101. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceDiscoveryCommand.d.ts +6 -4
  2102. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +6 -4
  2103. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +6 -4
  2104. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +6 -4
  2105. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +6 -4
  2106. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +7 -5
  2107. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +6 -4
  2108. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +6 -4
  2109. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +6 -4
  2110. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +6 -4
  2111. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +6 -4
  2112. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +6 -4
  2113. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +6 -4
  2114. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +6 -4
  2115. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +6 -4
  2116. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +6 -4
  2117. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +6 -4
  2118. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +6 -4
  2119. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +6 -4
  2120. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayCommand.d.ts +6 -4
  2121. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  2122. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  2123. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2124. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +6 -4
  2125. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +6 -4
  2126. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +6 -4
  2127. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +6 -4
  2128. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +6 -4
  2129. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +6 -4
  2130. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2131. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeAttributeCommand.d.ts +6 -4
  2132. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +6 -9
  2133. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcAttributeCommand.d.ts +6 -4
  2134. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  2135. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +6 -4
  2136. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEncryptionControlCommand.d.ts +6 -4
  2137. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointCommand.d.ts +6 -4
  2138. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +6 -4
  2139. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +6 -4
  2140. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +6 -4
  2141. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +6 -4
  2142. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +6 -4
  2143. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcTenancyCommand.d.ts +6 -4
  2144. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionCommand.d.ts +6 -4
  2145. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +7 -4
  2146. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelCertificateCommand.d.ts +6 -4
  2147. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +6 -4
  2148. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MonitorInstancesCommand.d.ts +6 -4
  2149. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveAddressToVpcCommand.d.ts +6 -4
  2150. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveByoipCidrToIpamCommand.d.ts +6 -4
  2151. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +6 -4
  2152. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +6 -4
  2153. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamByoasnCommand.d.ts +6 -4
  2154. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +6 -4
  2155. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +6 -4
  2156. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +6 -4
  2157. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockExtensionCommand.d.ts +6 -4
  2158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +6 -4
  2159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +6 -4
  2160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +6 -4
  2161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RebootInstancesCommand.d.ts +6 -4
  2162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +6 -4
  2163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +6 -4
  2164. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +6 -4
  2165. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +6 -4
  2166. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +6 -4
  2167. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  2168. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  2169. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  2170. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2171. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcEndpointConnectionsCommand.d.ts +6 -4
  2172. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcPeeringConnectionCommand.d.ts +6 -4
  2173. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseAddressCommand.d.ts +6 -4
  2174. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseHostsCommand.d.ts +6 -4
  2175. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseIpamPoolAllocationCommand.d.ts +6 -4
  2176. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +6 -4
  2177. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +7 -5
  2178. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclAssociationCommand.d.ts +6 -4
  2179. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclEntryCommand.d.ts +6 -4
  2180. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteCommand.d.ts +6 -4
  2181. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteTableAssociationCommand.d.ts +6 -4
  2182. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +6 -4
  2183. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +6 -4
  2184. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReportInstanceStatusCommand.d.ts +6 -4
  2185. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +6 -4
  2186. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +6 -4
  2187. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetAddressAttributeCommand.d.ts +6 -4
  2188. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +6 -4
  2190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetImageAttributeCommand.d.ts +6 -4
  2191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetInstanceAttributeCommand.d.ts +6 -4
  2192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +6 -4
  2193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +6 -4
  2194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreAddressToClassicCommand.d.ts +6 -4
  2195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +6 -4
  2196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +6 -4
  2197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +6 -4
  2198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotTierCommand.d.ts +6 -4
  2199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreVolumeFromRecycleBinCommand.d.ts +6 -4
  2200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +6 -4
  2201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +6 -4
  2202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +6 -4
  2203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +6 -4
  2204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunScheduledInstancesCommand.d.ts +6 -4
  2205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchLocalGatewayRoutesCommand.d.ts +6 -4
  2206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +6 -4
  2207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +6 -4
  2208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SendDiagnosticInterruptCommand.d.ts +6 -4
  2209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +6 -4
  2210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartInstancesCommand.d.ts +6 -4
  2211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +6 -4
  2212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +6 -4
  2213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +6 -4
  2214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StopInstancesCommand.d.ts +6 -4
  2215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateClientVpnConnectionsCommand.d.ts +6 -4
  2216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateInstancesCommand.d.ts +6 -4
  2217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignIpv6AddressesCommand.d.ts +6 -4
  2218. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateIpAddressesCommand.d.ts +6 -4
  2219. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +6 -4
  2220. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnlockSnapshotCommand.d.ts +6 -4
  2221. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnmonitorInstancesCommand.d.ts +6 -4
  2222. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +6 -4
  2223. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +6 -4
  2224. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +6 -4
  2225. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +6 -4
  2226. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +6 -4
  2227. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/WithdrawByoipCidrCommand.d.ts +6 -4
  2228. package/node_modules/@aws-sdk/client-ec2/dist-types/endpoint/bdd.d.ts +1 -1
  2229. package/node_modules/@aws-sdk/client-ec2/dist-types/extensionConfiguration.d.ts +1 -1
  2230. package/node_modules/@aws-sdk/client-ec2/dist-types/models/EC2ServiceException.d.ts +1 -1
  2231. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +11 -0
  2232. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +0 -6
  2233. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +1 -1
  2234. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +6 -1
  2235. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +3 -3
  2236. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +3 -3
  2237. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +3 -3
  2238. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +1 -2
  2239. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +9 -17
  2240. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptAddressTransferCommand.d.ts +6 -4
  2241. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +6 -4
  2242. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +6 -4
  2243. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  2244. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  2245. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  2246. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2247. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcEndpointConnectionsCommand.d.ts +6 -4
  2248. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcPeeringConnectionCommand.d.ts +6 -4
  2249. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AdvertiseByoipCidrCommand.d.ts +6 -4
  2250. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateAddressCommand.d.ts +6 -4
  2251. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateHostsCommand.d.ts +6 -4
  2252. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateIpamPoolCidrCommand.d.ts +6 -4
  2253. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +6 -4
  2254. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignIpv6AddressesCommand.d.ts +6 -4
  2255. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateIpAddressesCommand.d.ts +6 -4
  2256. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateNatGatewayAddressCommand.d.ts +6 -4
  2257. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateAddressCommand.d.ts +6 -4
  2258. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +6 -4
  2259. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateClientVpnTargetNetworkCommand.d.ts +6 -4
  2260. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateDhcpOptionsCommand.d.ts +6 -4
  2261. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +6 -4
  2262. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIamInstanceProfileCommand.d.ts +6 -4
  2263. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateInstanceEventWindowCommand.d.ts +6 -4
  2264. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamByoasnCommand.d.ts +6 -4
  2265. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamResourceDiscoveryCommand.d.ts +6 -4
  2266. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateNatGatewayAddressCommand.d.ts +6 -4
  2267. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteServerCommand.d.ts +6 -4
  2268. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteTableCommand.d.ts +6 -4
  2269. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSecurityGroupVpcCommand.d.ts +6 -4
  2270. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSubnetCidrBlockCommand.d.ts +6 -4
  2271. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  2272. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +6 -4
  2273. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayRouteTableCommand.d.ts +6 -4
  2274. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTrunkInterfaceCommand.d.ts +6 -4
  2275. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateVpcCidrBlockCommand.d.ts +6 -4
  2276. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachClassicLinkVpcCommand.d.ts +6 -4
  2277. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachInternetGatewayCommand.d.ts +6 -4
  2278. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachNetworkInterfaceCommand.d.ts +6 -4
  2279. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2280. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVolumeCommand.d.ts +6 -4
  2281. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVpnGatewayCommand.d.ts +6 -4
  2282. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeClientVpnIngressCommand.d.ts +6 -4
  2283. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupEgressCommand.d.ts +6 -4
  2284. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupIngressCommand.d.ts +6 -4
  2285. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/BundleInstanceCommand.d.ts +6 -4
  2286. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelBundleTaskCommand.d.ts +6 -4
  2287. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationCommand.d.ts +6 -4
  2288. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationFleetsCommand.d.ts +6 -4
  2289. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelConversionTaskCommand.d.ts +6 -4
  2290. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelDeclarativePoliciesReportCommand.d.ts +6 -4
  2291. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +6 -4
  2292. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImageLaunchPermissionCommand.d.ts +6 -4
  2293. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +6 -4
  2294. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelReservedInstancesListingCommand.d.ts +6 -4
  2295. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotFleetRequestsCommand.d.ts +6 -4
  2296. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotInstanceRequestsCommand.d.ts +6 -4
  2297. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ConfirmProductInstanceCommand.d.ts +6 -4
  2298. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyFpgaImageCommand.d.ts +6 -4
  2299. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyImageCommand.d.ts +6 -8
  2300. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopySnapshotCommand.d.ts +6 -4
  2301. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyVolumesCommand.d.ts +6 -4
  2302. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityManagerDataExportCommand.d.ts +6 -4
  2303. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationBySplittingCommand.d.ts +6 -4
  2304. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCommand.d.ts +6 -4
  2305. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationFleetCommand.d.ts +6 -4
  2306. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +6 -4
  2307. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnEndpointCommand.d.ts +6 -4
  2308. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnRouteCommand.d.ts +6 -4
  2309. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipCidrCommand.d.ts +6 -4
  2310. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipPoolCommand.d.ts +6 -4
  2311. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCustomerGatewayCommand.d.ts +6 -4
  2312. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +6 -4
  2313. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +6 -4
  2314. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +6 -4
  2315. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +6 -4
  2316. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +6 -4
  2317. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +6 -4
  2318. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFlowLogsCommand.d.ts +6 -4
  2319. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFpgaImageCommand.d.ts +6 -4
  2320. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageCommand.d.ts +6 -4
  2321. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageUsageReportCommand.d.ts +6 -4
  2322. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceConnectEndpointCommand.d.ts +6 -4
  2323. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceEventWindowCommand.d.ts +6 -4
  2324. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceExportTaskCommand.d.ts +6 -4
  2325. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInternetGatewayCommand.d.ts +6 -4
  2326. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +6 -4
  2327. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamCommand.d.ts +6 -4
  2328. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +6 -4
  2329. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPolicyCommand.d.ts +6 -4
  2330. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPoolCommand.d.ts +6 -4
  2331. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverCommand.d.ts +6 -4
  2332. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +6 -4
  2333. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamResourceDiscoveryCommand.d.ts +6 -4
  2334. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamScopeCommand.d.ts +6 -4
  2335. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateKeyPairCommand.d.ts +6 -4
  2336. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateCommand.d.ts +6 -4
  2337. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateVersionCommand.d.ts +6 -4
  2338. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteCommand.d.ts +6 -4
  2339. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableCommand.d.ts +6 -4
  2340. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +6 -4
  2341. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +6 -4
  2342. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +6 -4
  2343. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +6 -4
  2344. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +6 -4
  2345. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateManagedPrefixListCommand.d.ts +6 -4
  2346. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNatGatewayCommand.d.ts +6 -4
  2347. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclCommand.d.ts +6 -4
  2348. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclEntryCommand.d.ts +6 -4
  2349. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +6 -4
  2350. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsPathCommand.d.ts +6 -4
  2351. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfaceCommand.d.ts +6 -4
  2352. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +6 -4
  2353. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +6 -4
  2354. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePublicIpv4PoolCommand.d.ts +6 -4
  2355. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReplaceRootVolumeTaskCommand.d.ts +6 -4
  2356. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReservedInstancesListingCommand.d.ts +6 -4
  2357. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRestoreImageTaskCommand.d.ts +6 -4
  2358. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +6 -4
  2359. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerCommand.d.ts +6 -4
  2360. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerEndpointCommand.d.ts +6 -4
  2361. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +6 -4
  2362. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +6 -4
  2363. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +6 -4
  2364. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +6 -4
  2365. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +6 -4
  2366. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +6 -4
  2367. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotsCommand.d.ts +6 -4
  2368. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +6 -4
  2369. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateStoreImageTaskCommand.d.ts +6 -4
  2370. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCidrReservationCommand.d.ts +6 -4
  2371. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCommand.d.ts +6 -4
  2372. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +6 -4
  2373. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +6 -4
  2374. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +6 -4
  2375. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorSessionCommand.d.ts +6 -4
  2376. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorTargetCommand.d.ts +6 -4
  2377. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayCommand.d.ts +6 -4
  2378. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectCommand.d.ts +6 -4
  2379. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +6 -4
  2380. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  2381. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +6 -4
  2382. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  2383. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  2384. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPolicyTableCommand.d.ts +6 -4
  2385. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  2386. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteCommand.d.ts +6 -4
  2387. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +6 -4
  2388. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableCommand.d.ts +6 -4
  2389. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2390. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +6 -4
  2391. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +6 -4
  2392. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessInstanceCommand.d.ts +6 -4
  2393. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2394. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +6 -4
  2395. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  2396. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcCommand.d.ts +6 -6
  2397. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEncryptionControlCommand.d.ts +6 -4
  2398. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +6 -4
  2399. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +6 -4
  2400. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +6 -4
  2401. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +6 -4
  2402. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConcentratorCommand.d.ts +6 -4
  2403. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionCommand.d.ts +6 -4
  2404. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionRouteCommand.d.ts +6 -4
  2405. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnGatewayCommand.d.ts +6 -4
  2406. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCapacityManagerDataExportCommand.d.ts +6 -4
  2407. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCarrierGatewayCommand.d.ts +6 -4
  2408. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnEndpointCommand.d.ts +6 -4
  2409. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnRouteCommand.d.ts +6 -4
  2410. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipCidrCommand.d.ts +6 -4
  2411. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipPoolCommand.d.ts +6 -4
  2412. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCustomerGatewayCommand.d.ts +6 -4
  2413. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteDhcpOptionsCommand.d.ts +6 -4
  2414. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +6 -4
  2415. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFleetsCommand.d.ts +6 -4
  2416. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +6 -4
  2417. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +6 -4
  2418. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteImageUsageReportCommand.d.ts +6 -4
  2419. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceConnectEndpointCommand.d.ts +6 -4
  2420. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceEventWindowCommand.d.ts +6 -4
  2421. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInternetGatewayCommand.d.ts +6 -4
  2422. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamCommand.d.ts +6 -4
  2423. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +6 -4
  2424. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPolicyCommand.d.ts +6 -4
  2425. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPoolCommand.d.ts +6 -4
  2426. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverCommand.d.ts +6 -4
  2427. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +6 -4
  2428. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamResourceDiscoveryCommand.d.ts +6 -4
  2429. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamScopeCommand.d.ts +6 -4
  2430. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteKeyPairCommand.d.ts +6 -4
  2431. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateCommand.d.ts +6 -4
  2432. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateVersionsCommand.d.ts +6 -4
  2433. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteCommand.d.ts +6 -4
  2434. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableCommand.d.ts +6 -4
  2435. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +6 -4
  2436. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +6 -4
  2437. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +6 -4
  2438. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +6 -4
  2439. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteManagedPrefixListCommand.d.ts +6 -4
  2440. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +6 -4
  2441. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclCommand.d.ts +6 -4
  2442. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclEntryCommand.d.ts +6 -4
  2443. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +6 -4
  2444. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +6 -4
  2445. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +6 -4
  2446. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsPathCommand.d.ts +6 -4
  2447. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfaceCommand.d.ts +6 -4
  2448. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfacePermissionCommand.d.ts +6 -4
  2449. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePlacementGroupCommand.d.ts +6 -4
  2450. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +6 -4
  2451. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +6 -4
  2452. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +6 -4
  2453. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerCommand.d.ts +6 -4
  2454. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerEndpointCommand.d.ts +6 -4
  2455. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerPeerCommand.d.ts +6 -4
  2456. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +6 -4
  2457. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +6 -4
  2458. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondarySubnetCommand.d.ts +6 -4
  2459. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +6 -4
  2460. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +6 -4
  2461. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +6 -4
  2462. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +6 -4
  2463. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +6 -4
  2464. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +6 -4
  2465. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +6 -4
  2466. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +6 -4
  2467. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +6 -4
  2468. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorTargetCommand.d.ts +6 -4
  2469. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  2470. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayCommand.d.ts +6 -4
  2471. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectCommand.d.ts +6 -4
  2472. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +6 -4
  2473. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  2474. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +6 -4
  2475. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +6 -4
  2476. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  2477. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +6 -4
  2478. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  2479. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteCommand.d.ts +6 -4
  2480. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +6 -4
  2481. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableCommand.d.ts +6 -4
  2482. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2483. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessEndpointCommand.d.ts +6 -4
  2484. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessGroupCommand.d.ts +6 -4
  2485. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessInstanceCommand.d.ts +6 -4
  2486. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2487. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +6 -4
  2488. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  2489. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcCommand.d.ts +6 -8
  2490. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEncryptionControlCommand.d.ts +6 -4
  2491. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +6 -4
  2492. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +6 -4
  2493. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointsCommand.d.ts +6 -4
  2494. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +6 -4
  2495. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConcentratorCommand.d.ts +6 -4
  2496. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionCommand.d.ts +6 -4
  2497. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionRouteCommand.d.ts +6 -4
  2498. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnGatewayCommand.d.ts +6 -4
  2499. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionByoipCidrCommand.d.ts +6 -4
  2500. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamByoasnCommand.d.ts +6 -4
  2501. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamPoolCidrCommand.d.ts +6 -4
  2502. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +6 -4
  2503. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +6 -4
  2504. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +6 -4
  2505. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +6 -4
  2506. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +6 -4
  2507. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +6 -4
  2508. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressTransfersCommand.d.ts +6 -4
  2509. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +6 -4
  2510. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +6 -4
  2511. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +6 -4
  2512. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAvailabilityZonesCommand.d.ts +6 -4
  2513. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +6 -4
  2514. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeBundleTasksCommand.d.ts +6 -4
  2515. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeByoipCidrsCommand.d.ts +6 -4
  2516. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +6 -4
  2517. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +6 -4
  2518. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockOfferingsCommand.d.ts +6 -4
  2519. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockStatusCommand.d.ts +6 -4
  2520. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlocksCommand.d.ts +6 -4
  2521. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityManagerDataExportsCommand.d.ts +6 -4
  2522. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +6 -4
  2523. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +6 -4
  2524. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +6 -4
  2525. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +6 -4
  2526. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +6 -4
  2527. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClassicLinkInstancesCommand.d.ts +6 -4
  2528. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +6 -4
  2529. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnConnectionsCommand.d.ts +6 -4
  2530. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnEndpointsCommand.d.ts +6 -4
  2531. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +6 -4
  2532. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +6 -4
  2533. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCoipPoolsCommand.d.ts +6 -4
  2534. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeConversionTasksCommand.d.ts +6 -4
  2535. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCustomerGatewaysCommand.d.ts +6 -4
  2536. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +6 -4
  2537. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDhcpOptionsCommand.d.ts +6 -4
  2538. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +6 -4
  2539. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeElasticGpusCommand.d.ts +6 -4
  2540. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportImageTasksCommand.d.ts +6 -4
  2541. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +6 -4
  2542. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +6 -4
  2543. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastSnapshotRestoresCommand.d.ts +6 -4
  2544. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetHistoryCommand.d.ts +6 -4
  2545. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetInstancesCommand.d.ts +6 -4
  2546. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +6 -4
  2547. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +6 -4
  2548. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImageAttributeCommand.d.ts +6 -4
  2549. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImagesCommand.d.ts +6 -4
  2550. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationOfferingsCommand.d.ts +6 -4
  2551. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationsCommand.d.ts +6 -4
  2552. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostsCommand.d.ts +6 -4
  2553. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +6 -4
  2554. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdFormatCommand.d.ts +6 -4
  2555. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdentityIdFormatCommand.d.ts +6 -4
  2556. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageAttributeCommand.d.ts +6 -4
  2557. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageReferencesCommand.d.ts +6 -4
  2558. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportEntriesCommand.d.ts +6 -4
  2559. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportsCommand.d.ts +6 -4
  2560. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +6 -4
  2561. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportImageTasksCommand.d.ts +6 -4
  2562. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +6 -4
  2563. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +6 -4
  2564. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +6 -4
  2565. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +6 -4
  2566. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +6 -4
  2567. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +6 -4
  2568. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +6 -4
  2569. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +6 -4
  2570. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaStatesCommand.d.ts +6 -4
  2571. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceStatusCommand.d.ts +6 -4
  2572. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +6 -4
  2573. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +6 -4
  2574. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypesCommand.d.ts +6 -4
  2575. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +6 -4
  2576. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInternetGatewaysCommand.d.ts +6 -4
  2577. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamByoasnCommand.d.ts +6 -4
  2578. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +6 -4
  2579. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoliciesCommand.d.ts +6 -4
  2580. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +6 -4
  2581. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +6 -4
  2582. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolversCommand.d.ts +6 -4
  2583. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +6 -4
  2584. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +6 -4
  2585. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamScopesCommand.d.ts +6 -4
  2586. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamsCommand.d.ts +6 -4
  2587. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpv6PoolsCommand.d.ts +6 -4
  2588. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +6 -4
  2589. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplateVersionsCommand.d.ts +6 -4
  2590. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +6 -4
  2591. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +6 -4
  2592. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +6 -4
  2593. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +6 -4
  2594. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +6 -4
  2595. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +6 -4
  2596. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +6 -4
  2597. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLockedSnapshotsCommand.d.ts +6 -4
  2598. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +6 -4
  2599. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacModificationTasksCommand.d.ts +6 -4
  2600. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeManagedPrefixListsCommand.d.ts +6 -4
  2601. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMovingAddressesCommand.d.ts +6 -4
  2602. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNatGatewaysCommand.d.ts +6 -4
  2603. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkAclsCommand.d.ts +6 -4
  2604. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +6 -4
  2605. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +6 -4
  2606. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +6 -4
  2607. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsPathsCommand.d.ts +6 -4
  2608. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +6 -4
  2609. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +6 -4
  2610. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacesCommand.d.ts +6 -4
  2611. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeOutpostLagsCommand.d.ts +6 -4
  2612. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePlacementGroupsCommand.d.ts +6 -4
  2613. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrefixListsCommand.d.ts +6 -4
  2614. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrincipalIdFormatCommand.d.ts +6 -4
  2615. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +6 -4
  2616. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +6 -4
  2617. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +6 -4
  2618. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +6 -4
  2619. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +6 -4
  2620. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +6 -4
  2621. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesOfferingsCommand.d.ts +6 -4
  2622. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerEndpointsCommand.d.ts +6 -4
  2623. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerPeersCommand.d.ts +6 -4
  2624. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServersCommand.d.ts +6 -4
  2625. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteTablesCommand.d.ts +6 -4
  2626. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +6 -4
  2627. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +6 -4
  2628. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryInterfacesCommand.d.ts +6 -4
  2629. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryNetworksCommand.d.ts +6 -4
  2630. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondarySubnetsCommand.d.ts +6 -4
  2631. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupReferencesCommand.d.ts +6 -4
  2632. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupRulesCommand.d.ts +6 -4
  2633. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +6 -4
  2634. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupsCommand.d.ts +6 -4
  2635. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +6 -4
  2636. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotAttributeCommand.d.ts +6 -4
  2637. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotTierStatusCommand.d.ts +6 -4
  2638. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +6 -4
  2639. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +6 -4
  2640. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetInstancesCommand.d.ts +6 -4
  2641. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +6 -4
  2642. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestsCommand.d.ts +6 -4
  2643. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +6 -4
  2644. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +6 -4
  2645. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +6 -4
  2646. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +6 -4
  2647. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +6 -4
  2648. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +6 -4
  2649. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +6 -4
  2650. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +6 -4
  2651. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +6 -4
  2652. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +6 -4
  2653. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +6 -4
  2654. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +6 -4
  2655. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectsCommand.d.ts +6 -4
  2656. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +6 -4
  2657. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +6 -4
  2658. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +6 -4
  2659. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +6 -4
  2660. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +6 -4
  2661. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +6 -4
  2662. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +6 -4
  2663. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +6 -4
  2664. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +6 -4
  2665. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +6 -4
  2666. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +6 -4
  2667. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +6 -4
  2668. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstancesCommand.d.ts +6 -4
  2669. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +6 -4
  2670. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +6 -4
  2671. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +6 -4
  2672. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +6 -4
  2673. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +6 -4
  2674. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcAttributeCommand.d.ts +6 -4
  2675. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +6 -4
  2676. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +6 -4
  2677. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkCommand.d.ts +6 -4
  2678. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  2679. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEncryptionControlsCommand.d.ts +6 -4
  2680. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointAssociationsCommand.d.ts +6 -4
  2681. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +6 -4
  2682. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +6 -4
  2683. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +6 -4
  2684. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +6 -4
  2685. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicesCommand.d.ts +6 -4
  2686. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +6 -4
  2687. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +6 -4
  2688. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +6 -4
  2689. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConcentratorsCommand.d.ts +6 -4
  2690. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConnectionsCommand.d.ts +6 -4
  2691. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +6 -4
  2692. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachClassicLinkVpcCommand.d.ts +6 -4
  2693. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachInternetGatewayCommand.d.ts +6 -4
  2694. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachNetworkInterfaceCommand.d.ts +6 -4
  2695. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2696. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVolumeCommand.d.ts +6 -4
  2697. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVpnGatewayCommand.d.ts +6 -4
  2698. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAddressTransferCommand.d.ts +6 -4
  2699. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAllowedImagesSettingsCommand.d.ts +6 -4
  2700. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +6 -4
  2701. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableCapacityManagerCommand.d.ts +6 -4
  2702. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableEbsEncryptionByDefaultCommand.d.ts +6 -4
  2703. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +6 -4
  2704. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastSnapshotRestoresCommand.d.ts +6 -4
  2705. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageBlockPublicAccessCommand.d.ts +6 -4
  2706. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageCommand.d.ts +6 -4
  2707. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeprecationCommand.d.ts +6 -4
  2708. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeregistrationProtectionCommand.d.ts +6 -4
  2709. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +6 -4
  2710. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +6 -4
  2711. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamPolicyCommand.d.ts +6 -4
  2712. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableRouteServerPropagationCommand.d.ts +6 -4
  2713. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSerialConsoleAccessCommand.d.ts +6 -4
  2714. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +6 -4
  2715. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +6 -4
  2716. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVgwRoutePropagationCommand.d.ts +6 -4
  2717. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkCommand.d.ts +6 -4
  2718. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  2719. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateAddressCommand.d.ts +6 -4
  2720. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +6 -4
  2721. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +6 -4
  2722. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +6 -4
  2723. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIamInstanceProfileCommand.d.ts +6 -4
  2724. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateInstanceEventWindowCommand.d.ts +6 -4
  2725. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamByoasnCommand.d.ts +6 -4
  2726. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +6 -4
  2727. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateNatGatewayAddressCommand.d.ts +6 -4
  2728. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteServerCommand.d.ts +6 -4
  2729. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteTableCommand.d.ts +6 -4
  2730. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSecurityGroupVpcCommand.d.ts +6 -4
  2731. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSubnetCidrBlockCommand.d.ts +6 -4
  2732. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +6 -4
  2733. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +6 -4
  2734. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +6 -4
  2735. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTrunkInterfaceCommand.d.ts +6 -4
  2736. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateVpcCidrBlockCommand.d.ts +6 -4
  2737. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAddressTransferCommand.d.ts +6 -4
  2738. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAllowedImagesSettingsCommand.d.ts +6 -4
  2739. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +6 -4
  2740. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableCapacityManagerCommand.d.ts +6 -4
  2741. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableEbsEncryptionByDefaultCommand.d.ts +6 -4
  2742. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +6 -4
  2743. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastSnapshotRestoresCommand.d.ts +6 -4
  2744. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageBlockPublicAccessCommand.d.ts +6 -4
  2745. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageCommand.d.ts +6 -4
  2746. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeprecationCommand.d.ts +6 -4
  2747. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeregistrationProtectionCommand.d.ts +6 -4
  2748. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +6 -4
  2749. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +6 -4
  2750. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamPolicyCommand.d.ts +6 -4
  2751. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +6 -4
  2752. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableRouteServerPropagationCommand.d.ts +6 -4
  2753. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSerialConsoleAccessCommand.d.ts +6 -4
  2754. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +6 -4
  2755. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +6 -4
  2756. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVgwRoutePropagationCommand.d.ts +6 -4
  2757. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVolumeIOCommand.d.ts +6 -4
  2758. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkCommand.d.ts +6 -4
  2759. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +6 -4
  2760. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +6 -4
  2761. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientConfigurationCommand.d.ts +6 -4
  2762. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportImageCommand.d.ts +6 -4
  2763. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportTransitGatewayRoutesCommand.d.ts +6 -4
  2764. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +6 -4
  2765. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetActiveVpnTunnelStatusCommand.d.ts +6 -4
  2766. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAllowedImagesSettingsCommand.d.ts +6 -4
  2767. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +6 -4
  2768. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +6 -4
  2769. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAwsNetworkPerformanceDataCommand.d.ts +6 -4
  2770. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +6 -4
  2771. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +6 -4
  2772. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +6 -4
  2773. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +6 -4
  2774. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +6 -4
  2775. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +6 -4
  2776. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +6 -4
  2777. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +6 -4
  2778. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +6 -4
  2779. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +6 -4
  2780. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2781. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +6 -4
  2782. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEnabledIpamPolicyCommand.d.ts +6 -4
  2783. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +6 -4
  2784. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +6 -4
  2785. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +6 -4
  2786. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageAncestryCommand.d.ts +6 -4
  2787. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageBlockPublicAccessStateCommand.d.ts +6 -4
  2788. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceMetadataDefaultsCommand.d.ts +6 -4
  2789. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +6 -4
  2790. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +6 -4
  2791. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +6 -4
  2792. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +6 -4
  2793. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +6 -4
  2794. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +6 -4
  2795. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +6 -4
  2796. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyAllocationRulesCommand.d.ts +6 -4
  2797. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +6 -4
  2798. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +6 -4
  2799. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +6 -4
  2800. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverRulesCommand.d.ts +6 -4
  2801. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +6 -4
  2802. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +6 -4
  2803. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +6 -4
  2804. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +6 -4
  2805. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListAssociationsCommand.d.ts +6 -4
  2806. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +6 -4
  2807. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +6 -4
  2808. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +6 -4
  2809. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +6 -4
  2810. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetPasswordDataCommand.d.ts +6 -4
  2811. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +6 -4
  2812. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerAssociationsCommand.d.ts +6 -4
  2813. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerPropagationsCommand.d.ts +6 -4
  2814. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerRoutingDatabaseCommand.d.ts +6 -4
  2815. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSecurityGroupsForVpcCommand.d.ts +6 -4
  2816. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +6 -4
  2817. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +6 -4
  2818. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +6 -4
  2819. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +6 -4
  2820. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +6 -4
  2821. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +6 -4
  2822. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  2823. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +6 -4
  2824. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +6 -4
  2825. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +6 -4
  2826. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +6 -4
  2827. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +6 -4
  2828. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +6 -4
  2829. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +6 -4
  2830. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +6 -4
  2831. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +6 -4
  2832. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +6 -4
  2833. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +6 -4
  2834. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +6 -4
  2835. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +6 -4
  2836. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportImageCommand.d.ts +6 -4
  2837. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportInstanceCommand.d.ts +6 -4
  2838. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +6 -4
  2839. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +6 -4
  2840. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportVolumeCommand.d.ts +6 -4
  2841. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +6 -4
  2842. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListSnapshotsInRecycleBinCommand.d.ts +6 -4
  2843. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListVolumesInRecycleBinCommand.d.ts +6 -4
  2844. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/LockSnapshotCommand.d.ts +6 -4
  2845. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAddressAttributeCommand.d.ts +6 -4
  2846. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAvailabilityZoneGroupCommand.d.ts +6 -4
  2847. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +6 -4
  2848. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationFleetCommand.d.ts +6 -4
  2849. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyClientVpnEndpointCommand.d.ts +6 -4
  2850. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyDefaultCreditSpecificationCommand.d.ts +6 -4
  2851. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2852. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFleetCommand.d.ts +6 -4
  2853. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFpgaImageAttributeCommand.d.ts +6 -4
  2854. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyHostsCommand.d.ts +6 -4
  2855. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdFormatCommand.d.ts +6 -4
  2856. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdentityIdFormatCommand.d.ts +6 -4
  2857. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyImageAttributeCommand.d.ts +6 -4
  2858. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceAttributeCommand.d.ts +6 -4
  2859. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +6 -4
  2860. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +6 -4
  2861. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCpuOptionsCommand.d.ts +6 -4
  2862. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCreditSpecificationCommand.d.ts +6 -4
  2863. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventStartTimeCommand.d.ts +6 -4
  2864. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventWindowCommand.d.ts +6 -4
  2865. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +6 -4
  2866. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +6 -4
  2867. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataOptionsCommand.d.ts +6 -4
  2868. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +6 -4
  2869. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstancePlacementCommand.d.ts +6 -4
  2870. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamCommand.d.ts +6 -4
  2871. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +6 -4
  2872. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolCommand.d.ts +6 -4
  2873. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverCommand.d.ts +6 -4
  2874. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +6 -4
  2875. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceCidrCommand.d.ts +6 -4
  2876. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceDiscoveryCommand.d.ts +6 -4
  2877. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +6 -4
  2878. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +6 -4
  2879. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +6 -4
  2880. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +6 -4
  2881. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +7 -5
  2882. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +6 -4
  2883. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +6 -4
  2884. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +6 -4
  2885. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +6 -4
  2886. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +6 -4
  2887. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +6 -4
  2888. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +6 -4
  2889. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +6 -4
  2890. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +6 -4
  2891. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +6 -4
  2892. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +6 -4
  2893. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +6 -4
  2894. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +6 -4
  2895. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +6 -4
  2896. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +6 -4
  2897. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +6 -4
  2898. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2899. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointCommand.d.ts +6 -4
  2900. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +6 -4
  2901. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupCommand.d.ts +6 -4
  2902. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +6 -4
  2903. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceCommand.d.ts +6 -4
  2904. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +6 -4
  2905. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +6 -4
  2906. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeAttributeCommand.d.ts +6 -4
  2907. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeCommand.d.ts +6 -4
  2908. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcAttributeCommand.d.ts +6 -4
  2909. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +6 -4
  2910. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +6 -4
  2911. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEncryptionControlCommand.d.ts +6 -4
  2912. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointCommand.d.ts +6 -4
  2913. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +6 -4
  2914. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +6 -4
  2915. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +6 -4
  2916. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +6 -4
  2917. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +6 -4
  2918. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcTenancyCommand.d.ts +6 -4
  2919. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +6 -4
  2920. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +6 -4
  2921. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelCertificateCommand.d.ts +6 -4
  2922. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelOptionsCommand.d.ts +6 -4
  2923. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +6 -4
  2924. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveAddressToVpcCommand.d.ts +6 -4
  2925. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveByoipCidrToIpamCommand.d.ts +6 -4
  2926. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveCapacityReservationInstancesCommand.d.ts +6 -4
  2927. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionByoipCidrCommand.d.ts +6 -4
  2928. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamByoasnCommand.d.ts +6 -4
  2929. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +6 -4
  2930. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +6 -4
  2931. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockCommand.d.ts +6 -4
  2932. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockExtensionCommand.d.ts +6 -4
  2933. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseHostReservationCommand.d.ts +6 -4
  2934. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseReservedInstancesOfferingCommand.d.ts +6 -4
  2935. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseScheduledInstancesCommand.d.ts +6 -4
  2936. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RebootInstancesCommand.d.ts +6 -4
  2937. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +6 -4
  2938. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +6 -4
  2939. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +6 -4
  2940. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +6 -4
  2941. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +6 -4
  2942. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +6 -4
  2943. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +6 -4
  2944. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +6 -4
  2945. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +6 -4
  2946. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcEndpointConnectionsCommand.d.ts +6 -4
  2947. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +6 -4
  2948. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +6 -4
  2949. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseHostsCommand.d.ts +6 -4
  2950. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseIpamPoolAllocationCommand.d.ts +6 -4
  2951. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +6 -4
  2952. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +6 -4
  2953. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclAssociationCommand.d.ts +6 -4
  2954. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclEntryCommand.d.ts +6 -4
  2955. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteCommand.d.ts +6 -4
  2956. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteTableAssociationCommand.d.ts +6 -4
  2957. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +6 -4
  2958. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +6 -4
  2959. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +6 -4
  2960. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +6 -4
  2961. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +6 -4
  2962. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +6 -4
  2963. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +6 -4
  2964. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +6 -4
  2965. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +6 -4
  2966. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +6 -4
  2967. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +6 -4
  2968. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +6 -4
  2969. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +6 -4
  2970. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +6 -4
  2971. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +6 -4
  2972. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +6 -4
  2973. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +6 -4
  2974. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreVolumeFromRecycleBinCommand.d.ts +6 -4
  2975. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +6 -4
  2976. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +6 -4
  2977. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +6 -4
  2978. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +6 -4
  2979. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunScheduledInstancesCommand.d.ts +6 -4
  2980. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchLocalGatewayRoutesCommand.d.ts +6 -4
  2981. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +6 -4
  2982. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayRoutesCommand.d.ts +6 -4
  2983. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +6 -4
  2984. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartDeclarativePoliciesReportCommand.d.ts +6 -4
  2985. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +6 -4
  2986. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +6 -4
  2987. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +6 -4
  2988. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +6 -4
  2989. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StopInstancesCommand.d.ts +6 -4
  2990. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateClientVpnConnectionsCommand.d.ts +6 -4
  2991. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateInstancesCommand.d.ts +6 -4
  2992. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignIpv6AddressesCommand.d.ts +6 -4
  2993. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateIpAddressesCommand.d.ts +6 -4
  2994. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +6 -4
  2995. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnlockSnapshotCommand.d.ts +6 -4
  2996. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnmonitorInstancesCommand.d.ts +6 -4
  2997. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +6 -4
  2998. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +6 -4
  2999. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +6 -4
  3000. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +6 -4
  3001. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +6 -4
  3002. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/WithdrawByoipCidrCommand.d.ts +6 -4
  3003. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  3004. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  3005. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/EC2ServiceException.d.ts +1 -1
  3006. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +2 -0
  3007. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +0 -1
  3008. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +1 -1
  3009. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +2 -0
  3010. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  3011. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  3012. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  3013. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +1 -1
  3014. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +1 -1
  3015. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +1 -1
  3016. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +1 -1
  3017. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +1 -1
  3018. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +1 -1
  3019. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +1 -1
  3020. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +1 -1
  3021. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageExists.d.ts +1 -1
  3022. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageUsageReportAvailable.d.ts +1 -1
  3023. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +1 -1
  3024. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +1 -1
  3025. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +1 -1
  3026. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +1 -1
  3027. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +1 -1
  3028. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +1 -1
  3029. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +1 -1
  3030. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +1 -1
  3031. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayDeleted.d.ts +1 -1
  3032. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +1 -1
  3033. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +1 -1
  3034. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkCreateComplete.d.ts +1 -1
  3035. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +1 -1
  3036. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetCreateComplete.d.ts +1 -1
  3037. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetDeleteComplete.d.ts +1 -1
  3038. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +1 -1
  3039. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +1 -1
  3040. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +1 -1
  3041. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +1 -1
  3042. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +1 -1
  3043. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +1 -1
  3044. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForStoreImageTaskComplete.d.ts +1 -1
  3045. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +1 -1
  3046. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +1 -1
  3047. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +1 -1
  3048. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +1 -1
  3049. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +1 -1
  3050. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +1 -1
  3051. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +1 -1
  3052. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +1 -1
  3053. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +1 -1
  3054. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +1 -1
  3055. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +1 -1
  3056. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +1 -1
  3057. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +1 -1
  3058. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +1 -1
  3059. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +1 -1
  3060. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +1 -1
  3061. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +1 -1
  3062. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +1 -1
  3063. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +1 -1
  3064. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +1 -1
  3065. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +1 -1
  3066. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +1 -1
  3067. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +1 -1
  3068. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +1 -1
  3069. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +1 -1
  3070. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +1 -1
  3071. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +1 -1
  3072. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +1 -1
  3073. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +1 -1
  3074. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +1 -1
  3075. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +1 -1
  3076. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +1 -1
  3077. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +1 -1
  3078. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +1 -1
  3079. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +1 -1
  3080. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +1 -1
  3081. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +1 -1
  3082. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +1 -1
  3083. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +1 -1
  3084. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +1 -1
  3085. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +1 -1
  3086. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +1 -1
  3087. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +1 -1
  3088. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +1 -1
  3089. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +1 -1
  3090. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +1 -1
  3091. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +1 -1
  3092. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +1 -1
  3093. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +1 -1
  3094. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +1 -1
  3095. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +1 -1
  3096. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +1 -1
  3097. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +1 -1
  3098. package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +1 -1
  3099. package/node_modules/@aws-sdk/client-ec2/package.json +8 -38
  3100. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  3101. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -2
  3102. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +5 -5
  3103. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +407 -413
  3104. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +3 -3
  3105. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +14 -16
  3106. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +19 -24
  3107. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +9 -10
  3108. package/node_modules/@aws-sdk/client-iam/dist-es/IAM.js +1 -1
  3109. package/node_modules/@aws-sdk/client-iam/dist-es/IAMClient.js +6 -9
  3110. package/node_modules/@aws-sdk/client-iam/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  3111. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AcceptDelegationRequestCommand.js +2 -2
  3112. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddClientIDToOpenIDConnectProviderCommand.js +2 -2
  3113. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddRoleToInstanceProfileCommand.js +2 -2
  3114. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddUserToGroupCommand.js +2 -2
  3115. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AssociateDelegationRequestCommand.js +2 -2
  3116. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachGroupPolicyCommand.js +2 -2
  3117. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachRolePolicyCommand.js +2 -2
  3118. package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachUserPolicyCommand.js +2 -2
  3119. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ChangePasswordCommand.js +2 -2
  3120. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccessKeyCommand.js +2 -2
  3121. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccountAliasCommand.js +2 -2
  3122. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateDelegationRequestCommand.js +2 -2
  3123. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateGroupCommand.js +2 -2
  3124. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateInstanceProfileCommand.js +2 -2
  3125. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateLoginProfileCommand.js +2 -2
  3126. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateOpenIDConnectProviderCommand.js +2 -2
  3127. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyCommand.js +2 -2
  3128. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyVersionCommand.js +2 -2
  3129. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateRoleCommand.js +2 -2
  3130. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateSAMLProviderCommand.js +2 -2
  3131. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceLinkedRoleCommand.js +2 -2
  3132. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceSpecificCredentialCommand.js +2 -2
  3133. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateUserCommand.js +2 -2
  3134. package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateVirtualMFADeviceCommand.js +2 -2
  3135. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeactivateMFADeviceCommand.js +2 -2
  3136. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccessKeyCommand.js +2 -2
  3137. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountAliasCommand.js +2 -2
  3138. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountPasswordPolicyCommand.js +2 -2
  3139. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupCommand.js +2 -2
  3140. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupPolicyCommand.js +2 -2
  3141. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteInstanceProfileCommand.js +2 -2
  3142. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteLoginProfileCommand.js +2 -2
  3143. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteOpenIDConnectProviderCommand.js +2 -2
  3144. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyCommand.js +2 -2
  3145. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyVersionCommand.js +2 -2
  3146. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRoleCommand.js +2 -2
  3147. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePermissionsBoundaryCommand.js +2 -2
  3148. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePolicyCommand.js +2 -2
  3149. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSAMLProviderCommand.js +2 -2
  3150. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSSHPublicKeyCommand.js +2 -2
  3151. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServerCertificateCommand.js +2 -2
  3152. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceLinkedRoleCommand.js +2 -2
  3153. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceSpecificCredentialCommand.js +2 -2
  3154. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSigningCertificateCommand.js +2 -2
  3155. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserCommand.js +2 -2
  3156. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPermissionsBoundaryCommand.js +2 -2
  3157. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPolicyCommand.js +2 -2
  3158. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteVirtualMFADeviceCommand.js +2 -2
  3159. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachGroupPolicyCommand.js +2 -2
  3160. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachRolePolicyCommand.js +2 -2
  3161. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachUserPolicyCommand.js +2 -2
  3162. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +2 -2
  3163. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +2 -2
  3164. package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOutboundWebIdentityFederationCommand.js +2 -2
  3165. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableMFADeviceCommand.js +2 -2
  3166. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +2 -2
  3167. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +2 -2
  3168. package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOutboundWebIdentityFederationCommand.js +2 -2
  3169. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateCredentialReportCommand.js +2 -2
  3170. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateOrganizationsAccessReportCommand.js +2 -2
  3171. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateServiceLastAccessedDetailsCommand.js +2 -2
  3172. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccessKeyLastUsedCommand.js +2 -2
  3173. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountAuthorizationDetailsCommand.js +2 -2
  3174. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountPasswordPolicyCommand.js +2 -2
  3175. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountSummaryCommand.js +2 -2
  3176. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForCustomPolicyCommand.js +2 -2
  3177. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForPrincipalPolicyCommand.js +2 -2
  3178. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetCredentialReportCommand.js +2 -2
  3179. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetDelegationRequestCommand.js +2 -2
  3180. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupCommand.js +2 -2
  3181. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupPolicyCommand.js +2 -2
  3182. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetHumanReadableSummaryCommand.js +2 -2
  3183. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetInstanceProfileCommand.js +2 -2
  3184. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetLoginProfileCommand.js +2 -2
  3185. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetMFADeviceCommand.js +2 -2
  3186. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOpenIDConnectProviderCommand.js +2 -2
  3187. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOrganizationsAccessReportCommand.js +2 -2
  3188. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOutboundWebIdentityFederationInfoCommand.js +2 -2
  3189. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyCommand.js +2 -2
  3190. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyVersionCommand.js +2 -2
  3191. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRoleCommand.js +2 -2
  3192. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRolePolicyCommand.js +2 -2
  3193. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSAMLProviderCommand.js +2 -2
  3194. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSSHPublicKeyCommand.js +2 -2
  3195. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServerCertificateCommand.js +2 -2
  3196. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsCommand.js +2 -2
  3197. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.js +2 -2
  3198. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLinkedRoleDeletionStatusCommand.js +2 -2
  3199. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserCommand.js +2 -2
  3200. package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserPolicyCommand.js +2 -2
  3201. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccessKeysCommand.js +2 -2
  3202. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccountAliasesCommand.js +2 -2
  3203. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedGroupPoliciesCommand.js +2 -2
  3204. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedRolePoliciesCommand.js +2 -2
  3205. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedUserPoliciesCommand.js +2 -2
  3206. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListDelegationRequestsCommand.js +2 -2
  3207. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListEntitiesForPolicyCommand.js +2 -2
  3208. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupPoliciesCommand.js +2 -2
  3209. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsCommand.js +2 -2
  3210. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsForUserCommand.js +2 -2
  3211. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfileTagsCommand.js +2 -2
  3212. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesCommand.js +2 -2
  3213. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesForRoleCommand.js +2 -2
  3214. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADeviceTagsCommand.js +2 -2
  3215. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADevicesCommand.js +2 -2
  3216. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProviderTagsCommand.js +2 -2
  3217. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProvidersCommand.js +2 -2
  3218. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOrganizationsFeaturesCommand.js +2 -2
  3219. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesCommand.js +2 -2
  3220. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesGrantingServiceAccessCommand.js +2 -2
  3221. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyTagsCommand.js +2 -2
  3222. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyVersionsCommand.js +2 -2
  3223. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolePoliciesCommand.js +2 -2
  3224. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRoleTagsCommand.js +2 -2
  3225. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolesCommand.js +2 -2
  3226. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProviderTagsCommand.js +2 -2
  3227. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProvidersCommand.js +2 -2
  3228. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSSHPublicKeysCommand.js +2 -2
  3229. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificateTagsCommand.js +2 -2
  3230. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificatesCommand.js +2 -2
  3231. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServiceSpecificCredentialsCommand.js +2 -2
  3232. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSigningCertificatesCommand.js +2 -2
  3233. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserPoliciesCommand.js +2 -2
  3234. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserTagsCommand.js +2 -2
  3235. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUsersCommand.js +2 -2
  3236. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListVirtualMFADevicesCommand.js +2 -2
  3237. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutGroupPolicyCommand.js +2 -2
  3238. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePermissionsBoundaryCommand.js +2 -2
  3239. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePolicyCommand.js +2 -2
  3240. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPermissionsBoundaryCommand.js +2 -2
  3241. package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPolicyCommand.js +2 -2
  3242. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RejectDelegationRequestCommand.js +2 -2
  3243. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveClientIDFromOpenIDConnectProviderCommand.js +2 -2
  3244. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveRoleFromInstanceProfileCommand.js +2 -2
  3245. package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveUserFromGroupCommand.js +2 -2
  3246. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResetServiceSpecificCredentialCommand.js +2 -2
  3247. package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResyncMFADeviceCommand.js +2 -2
  3248. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SendDelegationTokenCommand.js +2 -2
  3249. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetDefaultPolicyVersionCommand.js +2 -2
  3250. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetSecurityTokenServicePreferencesCommand.js +2 -2
  3251. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulateCustomPolicyCommand.js +2 -2
  3252. package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulatePrincipalPolicyCommand.js +2 -2
  3253. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagInstanceProfileCommand.js +2 -2
  3254. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagMFADeviceCommand.js +2 -2
  3255. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagOpenIDConnectProviderCommand.js +2 -2
  3256. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagPolicyCommand.js +2 -2
  3257. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagRoleCommand.js +2 -2
  3258. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagSAMLProviderCommand.js +2 -2
  3259. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagServerCertificateCommand.js +2 -2
  3260. package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagUserCommand.js +2 -2
  3261. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagInstanceProfileCommand.js +2 -2
  3262. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagMFADeviceCommand.js +2 -2
  3263. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagOpenIDConnectProviderCommand.js +2 -2
  3264. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagPolicyCommand.js +2 -2
  3265. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagRoleCommand.js +2 -2
  3266. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagSAMLProviderCommand.js +2 -2
  3267. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagServerCertificateCommand.js +2 -2
  3268. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagUserCommand.js +2 -2
  3269. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccessKeyCommand.js +2 -2
  3270. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccountPasswordPolicyCommand.js +2 -2
  3271. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAssumeRolePolicyCommand.js +2 -2
  3272. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateDelegationRequestCommand.js +2 -2
  3273. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateGroupCommand.js +2 -2
  3274. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateLoginProfileCommand.js +2 -2
  3275. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateOpenIDConnectProviderThumbprintCommand.js +2 -2
  3276. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleCommand.js +2 -2
  3277. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleDescriptionCommand.js +2 -2
  3278. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSAMLProviderCommand.js +2 -2
  3279. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSSHPublicKeyCommand.js +2 -2
  3280. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServerCertificateCommand.js +2 -2
  3281. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServiceSpecificCredentialCommand.js +2 -2
  3282. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSigningCertificateCommand.js +2 -2
  3283. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateUserCommand.js +2 -2
  3284. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSSHPublicKeyCommand.js +2 -2
  3285. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadServerCertificateCommand.js +2 -2
  3286. package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSigningCertificateCommand.js +2 -2
  3287. package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/bdd.js +1 -1
  3288. package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/endpointResolver.js +2 -2
  3289. package/node_modules/@aws-sdk/client-iam/dist-es/models/IAMServiceException.js +1 -1
  3290. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.browser.js +5 -7
  3291. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +5 -10
  3292. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +3 -4
  3293. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeExtensions.js +3 -3
  3294. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +1 -1
  3295. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +1 -1
  3296. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
  3297. package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
  3298. package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +1 -1
  3299. package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +6 -7
  3300. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AcceptDelegationRequestCommand.d.ts +6 -4
  3301. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +6 -4
  3302. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddRoleToInstanceProfileCommand.d.ts +6 -4
  3303. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddUserToGroupCommand.d.ts +6 -4
  3304. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AssociateDelegationRequestCommand.d.ts +6 -4
  3305. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachGroupPolicyCommand.d.ts +6 -4
  3306. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachRolePolicyCommand.d.ts +6 -4
  3307. package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachUserPolicyCommand.d.ts +6 -4
  3308. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ChangePasswordCommand.d.ts +6 -4
  3309. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccessKeyCommand.d.ts +6 -4
  3310. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccountAliasCommand.d.ts +6 -4
  3311. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateDelegationRequestCommand.d.ts +6 -4
  3312. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateGroupCommand.d.ts +6 -4
  3313. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateInstanceProfileCommand.d.ts +6 -4
  3314. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateLoginProfileCommand.d.ts +6 -4
  3315. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateOpenIDConnectProviderCommand.d.ts +6 -4
  3316. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyCommand.d.ts +6 -4
  3317. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyVersionCommand.d.ts +6 -4
  3318. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateRoleCommand.d.ts +6 -4
  3319. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateSAMLProviderCommand.d.ts +6 -4
  3320. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceLinkedRoleCommand.d.ts +6 -4
  3321. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +6 -4
  3322. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateUserCommand.d.ts +6 -4
  3323. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateVirtualMFADeviceCommand.d.ts +6 -4
  3324. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeactivateMFADeviceCommand.d.ts +6 -4
  3325. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccessKeyCommand.d.ts +6 -4
  3326. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountAliasCommand.d.ts +6 -4
  3327. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountPasswordPolicyCommand.d.ts +6 -4
  3328. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupCommand.d.ts +6 -4
  3329. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupPolicyCommand.d.ts +6 -4
  3330. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteInstanceProfileCommand.d.ts +6 -4
  3331. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteLoginProfileCommand.d.ts +6 -4
  3332. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteOpenIDConnectProviderCommand.d.ts +6 -4
  3333. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyCommand.d.ts +6 -4
  3334. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyVersionCommand.d.ts +6 -4
  3335. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRoleCommand.d.ts +6 -4
  3336. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePermissionsBoundaryCommand.d.ts +6 -4
  3337. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePolicyCommand.d.ts +6 -4
  3338. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSAMLProviderCommand.d.ts +6 -4
  3339. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSSHPublicKeyCommand.d.ts +6 -4
  3340. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServerCertificateCommand.d.ts +6 -4
  3341. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceLinkedRoleCommand.d.ts +6 -4
  3342. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceSpecificCredentialCommand.d.ts +6 -4
  3343. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSigningCertificateCommand.d.ts +6 -4
  3344. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserCommand.d.ts +6 -4
  3345. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPermissionsBoundaryCommand.d.ts +6 -4
  3346. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPolicyCommand.d.ts +6 -4
  3347. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteVirtualMFADeviceCommand.d.ts +6 -4
  3348. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachGroupPolicyCommand.d.ts +6 -4
  3349. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachRolePolicyCommand.d.ts +6 -4
  3350. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachUserPolicyCommand.d.ts +6 -4
  3351. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +6 -4
  3352. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +6 -4
  3353. package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOutboundWebIdentityFederationCommand.d.ts +6 -4
  3354. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableMFADeviceCommand.d.ts +6 -4
  3355. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +6 -4
  3356. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +6 -4
  3357. package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOutboundWebIdentityFederationCommand.d.ts +6 -4
  3358. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateCredentialReportCommand.d.ts +6 -4
  3359. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateOrganizationsAccessReportCommand.d.ts +6 -4
  3360. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +6 -4
  3361. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccessKeyLastUsedCommand.d.ts +6 -4
  3362. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountAuthorizationDetailsCommand.d.ts +6 -4
  3363. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountPasswordPolicyCommand.d.ts +6 -4
  3364. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountSummaryCommand.d.ts +6 -4
  3365. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForCustomPolicyCommand.d.ts +6 -4
  3366. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +6 -4
  3367. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetCredentialReportCommand.d.ts +6 -4
  3368. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetDelegationRequestCommand.d.ts +6 -4
  3369. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupCommand.d.ts +6 -4
  3370. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupPolicyCommand.d.ts +6 -4
  3371. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetHumanReadableSummaryCommand.d.ts +6 -4
  3372. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetInstanceProfileCommand.d.ts +6 -4
  3373. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetLoginProfileCommand.d.ts +6 -4
  3374. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetMFADeviceCommand.d.ts +6 -4
  3375. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOpenIDConnectProviderCommand.d.ts +6 -4
  3376. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOrganizationsAccessReportCommand.d.ts +6 -4
  3377. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +6 -4
  3378. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyCommand.d.ts +6 -4
  3379. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyVersionCommand.d.ts +6 -4
  3380. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRoleCommand.d.ts +6 -4
  3381. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRolePolicyCommand.d.ts +6 -4
  3382. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSAMLProviderCommand.d.ts +6 -4
  3383. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSSHPublicKeyCommand.d.ts +6 -4
  3384. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServerCertificateCommand.d.ts +6 -4
  3385. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsCommand.d.ts +6 -4
  3386. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +6 -4
  3387. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +6 -4
  3388. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserCommand.d.ts +6 -4
  3389. package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserPolicyCommand.d.ts +6 -4
  3390. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccessKeysCommand.d.ts +6 -4
  3391. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccountAliasesCommand.d.ts +6 -4
  3392. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedGroupPoliciesCommand.d.ts +6 -4
  3393. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedRolePoliciesCommand.d.ts +6 -4
  3394. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedUserPoliciesCommand.d.ts +6 -4
  3395. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListDelegationRequestsCommand.d.ts +6 -4
  3396. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListEntitiesForPolicyCommand.d.ts +6 -4
  3397. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupPoliciesCommand.d.ts +6 -4
  3398. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsCommand.d.ts +6 -4
  3399. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsForUserCommand.d.ts +6 -4
  3400. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfileTagsCommand.d.ts +6 -4
  3401. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesCommand.d.ts +6 -4
  3402. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesForRoleCommand.d.ts +6 -4
  3403. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADeviceTagsCommand.d.ts +6 -4
  3404. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADevicesCommand.d.ts +6 -4
  3405. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProviderTagsCommand.d.ts +6 -4
  3406. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProvidersCommand.d.ts +6 -4
  3407. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +6 -4
  3408. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesCommand.d.ts +6 -4
  3409. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +6 -4
  3410. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyTagsCommand.d.ts +6 -4
  3411. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyVersionsCommand.d.ts +6 -4
  3412. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolePoliciesCommand.d.ts +6 -4
  3413. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRoleTagsCommand.d.ts +6 -4
  3414. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolesCommand.d.ts +6 -4
  3415. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProviderTagsCommand.d.ts +6 -4
  3416. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProvidersCommand.d.ts +6 -4
  3417. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSSHPublicKeysCommand.d.ts +6 -4
  3418. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificateTagsCommand.d.ts +6 -4
  3419. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificatesCommand.d.ts +6 -4
  3420. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +6 -4
  3421. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSigningCertificatesCommand.d.ts +6 -4
  3422. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserPoliciesCommand.d.ts +6 -4
  3423. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserTagsCommand.d.ts +6 -4
  3424. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUsersCommand.d.ts +6 -4
  3425. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListVirtualMFADevicesCommand.d.ts +6 -4
  3426. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutGroupPolicyCommand.d.ts +6 -4
  3427. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePermissionsBoundaryCommand.d.ts +6 -4
  3428. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePolicyCommand.d.ts +6 -4
  3429. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPermissionsBoundaryCommand.d.ts +6 -4
  3430. package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPolicyCommand.d.ts +6 -4
  3431. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RejectDelegationRequestCommand.d.ts +6 -4
  3432. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +6 -4
  3433. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveRoleFromInstanceProfileCommand.d.ts +6 -4
  3434. package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveUserFromGroupCommand.d.ts +6 -4
  3435. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResetServiceSpecificCredentialCommand.d.ts +6 -4
  3436. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResyncMFADeviceCommand.d.ts +6 -4
  3437. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SendDelegationTokenCommand.d.ts +6 -4
  3438. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetDefaultPolicyVersionCommand.d.ts +6 -4
  3439. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetSecurityTokenServicePreferencesCommand.d.ts +6 -4
  3440. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulateCustomPolicyCommand.d.ts +6 -4
  3441. package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +6 -4
  3442. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagInstanceProfileCommand.d.ts +6 -4
  3443. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagMFADeviceCommand.d.ts +6 -4
  3444. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +6 -4
  3445. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagPolicyCommand.d.ts +6 -4
  3446. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagRoleCommand.d.ts +6 -4
  3447. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagSAMLProviderCommand.d.ts +6 -4
  3448. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagServerCertificateCommand.d.ts +6 -4
  3449. package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagUserCommand.d.ts +6 -4
  3450. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagInstanceProfileCommand.d.ts +6 -4
  3451. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagMFADeviceCommand.d.ts +6 -4
  3452. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagOpenIDConnectProviderCommand.d.ts +6 -4
  3453. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagPolicyCommand.d.ts +6 -4
  3454. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagRoleCommand.d.ts +6 -4
  3455. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagSAMLProviderCommand.d.ts +6 -4
  3456. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagServerCertificateCommand.d.ts +6 -4
  3457. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagUserCommand.d.ts +6 -4
  3458. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccessKeyCommand.d.ts +6 -4
  3459. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccountPasswordPolicyCommand.d.ts +6 -4
  3460. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAssumeRolePolicyCommand.d.ts +6 -4
  3461. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateDelegationRequestCommand.d.ts +6 -4
  3462. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateGroupCommand.d.ts +6 -4
  3463. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateLoginProfileCommand.d.ts +6 -4
  3464. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +6 -4
  3465. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleCommand.d.ts +6 -4
  3466. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleDescriptionCommand.d.ts +6 -4
  3467. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSAMLProviderCommand.d.ts +6 -4
  3468. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSSHPublicKeyCommand.d.ts +6 -4
  3469. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServerCertificateCommand.d.ts +6 -4
  3470. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServiceSpecificCredentialCommand.d.ts +6 -4
  3471. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSigningCertificateCommand.d.ts +6 -4
  3472. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateUserCommand.d.ts +6 -4
  3473. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSSHPublicKeyCommand.d.ts +6 -4
  3474. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadServerCertificateCommand.d.ts +6 -4
  3475. package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSigningCertificateCommand.d.ts +6 -4
  3476. package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/bdd.d.ts +1 -1
  3477. package/node_modules/@aws-sdk/client-iam/dist-types/extensionConfiguration.d.ts +1 -1
  3478. package/node_modules/@aws-sdk/client-iam/dist-types/models/IAMServiceException.d.ts +1 -1
  3479. package/node_modules/@aws-sdk/client-iam/dist-types/models/errors.d.ts +1 -1
  3480. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +3 -3
  3481. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +3 -3
  3482. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +3 -3
  3483. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +1 -1
  3484. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAMClient.d.ts +9 -17
  3485. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AcceptDelegationRequestCommand.d.ts +6 -4
  3486. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +6 -4
  3487. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddRoleToInstanceProfileCommand.d.ts +6 -4
  3488. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddUserToGroupCommand.d.ts +6 -4
  3489. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AssociateDelegationRequestCommand.d.ts +6 -4
  3490. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachGroupPolicyCommand.d.ts +6 -4
  3491. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachRolePolicyCommand.d.ts +6 -4
  3492. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachUserPolicyCommand.d.ts +6 -4
  3493. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +6 -4
  3494. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccessKeyCommand.d.ts +6 -4
  3495. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccountAliasCommand.d.ts +6 -4
  3496. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateDelegationRequestCommand.d.ts +6 -4
  3497. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +6 -4
  3498. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateInstanceProfileCommand.d.ts +6 -4
  3499. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +6 -4
  3500. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateOpenIDConnectProviderCommand.d.ts +6 -4
  3501. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +6 -4
  3502. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyVersionCommand.d.ts +6 -4
  3503. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateRoleCommand.d.ts +6 -4
  3504. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateSAMLProviderCommand.d.ts +6 -4
  3505. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceLinkedRoleCommand.d.ts +6 -4
  3506. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceSpecificCredentialCommand.d.ts +6 -4
  3507. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateUserCommand.d.ts +6 -4
  3508. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateVirtualMFADeviceCommand.d.ts +6 -4
  3509. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeactivateMFADeviceCommand.d.ts +6 -4
  3510. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccessKeyCommand.d.ts +6 -4
  3511. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +6 -4
  3512. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountPasswordPolicyCommand.d.ts +6 -4
  3513. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +6 -4
  3514. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupPolicyCommand.d.ts +6 -4
  3515. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteInstanceProfileCommand.d.ts +6 -4
  3516. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +6 -4
  3517. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteOpenIDConnectProviderCommand.d.ts +6 -4
  3518. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +6 -4
  3519. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyVersionCommand.d.ts +6 -4
  3520. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRoleCommand.d.ts +6 -4
  3521. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePermissionsBoundaryCommand.d.ts +6 -4
  3522. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePolicyCommand.d.ts +6 -4
  3523. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSAMLProviderCommand.d.ts +6 -4
  3524. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSSHPublicKeyCommand.d.ts +6 -4
  3525. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServerCertificateCommand.d.ts +6 -4
  3526. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceLinkedRoleCommand.d.ts +6 -4
  3527. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceSpecificCredentialCommand.d.ts +6 -4
  3528. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSigningCertificateCommand.d.ts +6 -4
  3529. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +6 -4
  3530. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPermissionsBoundaryCommand.d.ts +6 -4
  3531. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPolicyCommand.d.ts +6 -4
  3532. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteVirtualMFADeviceCommand.d.ts +6 -4
  3533. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachGroupPolicyCommand.d.ts +6 -4
  3534. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachRolePolicyCommand.d.ts +6 -4
  3535. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachUserPolicyCommand.d.ts +6 -4
  3536. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +6 -4
  3537. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +6 -4
  3538. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOutboundWebIdentityFederationCommand.d.ts +6 -4
  3539. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableMFADeviceCommand.d.ts +6 -4
  3540. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +6 -4
  3541. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +6 -4
  3542. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOutboundWebIdentityFederationCommand.d.ts +6 -4
  3543. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateCredentialReportCommand.d.ts +6 -4
  3544. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateOrganizationsAccessReportCommand.d.ts +6 -4
  3545. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +6 -4
  3546. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccessKeyLastUsedCommand.d.ts +6 -4
  3547. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountAuthorizationDetailsCommand.d.ts +6 -4
  3548. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountPasswordPolicyCommand.d.ts +6 -4
  3549. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountSummaryCommand.d.ts +6 -4
  3550. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForCustomPolicyCommand.d.ts +6 -4
  3551. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +6 -4
  3552. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetCredentialReportCommand.d.ts +6 -4
  3553. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetDelegationRequestCommand.d.ts +6 -4
  3554. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupCommand.d.ts +6 -8
  3555. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupPolicyCommand.d.ts +6 -4
  3556. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetHumanReadableSummaryCommand.d.ts +6 -4
  3557. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetInstanceProfileCommand.d.ts +6 -4
  3558. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +6 -4
  3559. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetMFADeviceCommand.d.ts +6 -4
  3560. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOpenIDConnectProviderCommand.d.ts +6 -4
  3561. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOrganizationsAccessReportCommand.d.ts +6 -4
  3562. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +6 -4
  3563. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +6 -8
  3564. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyVersionCommand.d.ts +6 -4
  3565. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRoleCommand.d.ts +6 -4
  3566. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRolePolicyCommand.d.ts +6 -4
  3567. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSAMLProviderCommand.d.ts +6 -4
  3568. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSSHPublicKeyCommand.d.ts +6 -4
  3569. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServerCertificateCommand.d.ts +6 -4
  3570. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsCommand.d.ts +6 -4
  3571. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +6 -4
  3572. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +6 -4
  3573. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserCommand.d.ts +6 -4
  3574. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserPolicyCommand.d.ts +6 -4
  3575. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccessKeysCommand.d.ts +6 -4
  3576. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccountAliasesCommand.d.ts +6 -4
  3577. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedGroupPoliciesCommand.d.ts +6 -4
  3578. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedRolePoliciesCommand.d.ts +6 -4
  3579. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedUserPoliciesCommand.d.ts +6 -4
  3580. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListDelegationRequestsCommand.d.ts +6 -4
  3581. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListEntitiesForPolicyCommand.d.ts +6 -4
  3582. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupPoliciesCommand.d.ts +6 -4
  3583. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +6 -4
  3584. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsForUserCommand.d.ts +6 -4
  3585. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfileTagsCommand.d.ts +6 -4
  3586. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesCommand.d.ts +6 -4
  3587. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesForRoleCommand.d.ts +6 -4
  3588. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADeviceTagsCommand.d.ts +6 -4
  3589. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADevicesCommand.d.ts +6 -4
  3590. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProviderTagsCommand.d.ts +6 -4
  3591. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProvidersCommand.d.ts +6 -4
  3592. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +6 -4
  3593. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +6 -4
  3594. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +6 -4
  3595. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyTagsCommand.d.ts +6 -4
  3596. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyVersionsCommand.d.ts +6 -4
  3597. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolePoliciesCommand.d.ts +6 -4
  3598. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRoleTagsCommand.d.ts +6 -4
  3599. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolesCommand.d.ts +6 -6
  3600. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProviderTagsCommand.d.ts +6 -4
  3601. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProvidersCommand.d.ts +6 -4
  3602. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSSHPublicKeysCommand.d.ts +6 -4
  3603. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificateTagsCommand.d.ts +6 -4
  3604. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificatesCommand.d.ts +6 -4
  3605. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServiceSpecificCredentialsCommand.d.ts +6 -4
  3606. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSigningCertificatesCommand.d.ts +6 -4
  3607. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserPoliciesCommand.d.ts +6 -4
  3608. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserTagsCommand.d.ts +6 -4
  3609. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUsersCommand.d.ts +6 -6
  3610. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListVirtualMFADevicesCommand.d.ts +6 -4
  3611. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutGroupPolicyCommand.d.ts +6 -4
  3612. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePermissionsBoundaryCommand.d.ts +6 -4
  3613. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePolicyCommand.d.ts +6 -4
  3614. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPermissionsBoundaryCommand.d.ts +6 -4
  3615. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPolicyCommand.d.ts +6 -4
  3616. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RejectDelegationRequestCommand.d.ts +6 -4
  3617. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +6 -4
  3618. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveRoleFromInstanceProfileCommand.d.ts +6 -4
  3619. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveUserFromGroupCommand.d.ts +6 -4
  3620. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResetServiceSpecificCredentialCommand.d.ts +6 -4
  3621. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResyncMFADeviceCommand.d.ts +6 -4
  3622. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SendDelegationTokenCommand.d.ts +6 -4
  3623. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetDefaultPolicyVersionCommand.d.ts +6 -4
  3624. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetSecurityTokenServicePreferencesCommand.d.ts +6 -4
  3625. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +6 -4
  3626. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +6 -4
  3627. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +6 -4
  3628. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +6 -4
  3629. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +6 -4
  3630. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +6 -8
  3631. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagRoleCommand.d.ts +6 -4
  3632. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +6 -4
  3633. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +6 -4
  3634. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagUserCommand.d.ts +6 -4
  3635. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagInstanceProfileCommand.d.ts +6 -4
  3636. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagMFADeviceCommand.d.ts +6 -4
  3637. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagOpenIDConnectProviderCommand.d.ts +6 -4
  3638. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagPolicyCommand.d.ts +6 -4
  3639. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagRoleCommand.d.ts +6 -8
  3640. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagSAMLProviderCommand.d.ts +6 -4
  3641. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagServerCertificateCommand.d.ts +6 -4
  3642. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagUserCommand.d.ts +6 -8
  3643. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccessKeyCommand.d.ts +6 -4
  3644. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccountPasswordPolicyCommand.d.ts +6 -4
  3645. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAssumeRolePolicyCommand.d.ts +6 -4
  3646. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateDelegationRequestCommand.d.ts +6 -4
  3647. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +6 -4
  3648. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateLoginProfileCommand.d.ts +6 -4
  3649. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +6 -4
  3650. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleCommand.d.ts +6 -4
  3651. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleDescriptionCommand.d.ts +6 -4
  3652. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSAMLProviderCommand.d.ts +6 -4
  3653. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSSHPublicKeyCommand.d.ts +6 -4
  3654. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServerCertificateCommand.d.ts +6 -4
  3655. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServiceSpecificCredentialCommand.d.ts +6 -4
  3656. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSigningCertificateCommand.d.ts +6 -4
  3657. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +6 -4
  3658. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSSHPublicKeyCommand.d.ts +6 -4
  3659. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadServerCertificateCommand.d.ts +6 -4
  3660. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSigningCertificateCommand.d.ts +6 -4
  3661. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  3662. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  3663. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/models/IAMServiceException.d.ts +1 -1
  3664. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/models/errors.d.ts +1 -1
  3665. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  3666. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  3667. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  3668. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts +1 -1
  3669. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForPolicyExists.d.ts +1 -1
  3670. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForRoleExists.d.ts +1 -1
  3671. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForUserExists.d.ts +1 -1
  3672. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +1 -1
  3673. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +1 -1
  3674. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +1 -1
  3675. package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +1 -1
  3676. package/node_modules/@aws-sdk/client-iam/package.json +7 -37
  3677. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  3678. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -2
  3679. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +5 -5
  3680. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +248 -254
  3681. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +3 -3
  3682. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +16 -18
  3683. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +21 -26
  3684. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +9 -10
  3685. package/node_modules/@aws-sdk/client-lambda/dist-es/Lambda.js +1 -1
  3686. package/node_modules/@aws-sdk/client-lambda/dist-es/LambdaClient.js +7 -10
  3687. package/node_modules/@aws-sdk/client-lambda/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  3688. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +2 -2
  3689. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +2 -2
  3690. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CheckpointDurableExecutionCommand.js +2 -2
  3691. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +2 -2
  3692. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCapacityProviderCommand.js +2 -2
  3693. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +2 -2
  3694. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +2 -2
  3695. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +2 -2
  3696. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionUrlConfigCommand.js +2 -2
  3697. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +2 -2
  3698. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCapacityProviderCommand.js +2 -2
  3699. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +2 -2
  3700. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +2 -2
  3701. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +2 -2
  3702. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +2 -2
  3703. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +2 -2
  3704. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +2 -2
  3705. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionUrlConfigCommand.js +2 -2
  3706. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +2 -2
  3707. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +2 -2
  3708. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +2 -2
  3709. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +2 -2
  3710. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCapacityProviderCommand.js +2 -2
  3711. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +2 -2
  3712. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionCommand.js +2 -2
  3713. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionHistoryCommand.js +2 -2
  3714. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionStateCommand.js +2 -2
  3715. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +2 -2
  3716. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +2 -2
  3717. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +2 -2
  3718. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +2 -2
  3719. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +2 -2
  3720. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +2 -2
  3721. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionRecursionConfigCommand.js +2 -2
  3722. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionScalingConfigCommand.js +2 -2
  3723. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionUrlConfigCommand.js +2 -2
  3724. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +2 -2
  3725. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +2 -2
  3726. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +2 -2
  3727. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +2 -2
  3728. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +2 -2
  3729. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetRuntimeManagementConfigCommand.js +2 -2
  3730. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +2 -2
  3731. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +2 -2
  3732. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeWithResponseStreamCommand.js +2 -2
  3733. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +2 -2
  3734. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCapacityProvidersCommand.js +2 -2
  3735. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +2 -2
  3736. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +2 -2
  3737. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +2 -2
  3738. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +2 -2
  3739. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionUrlConfigsCommand.js +2 -2
  3740. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +2 -2
  3741. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +2 -2
  3742. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +2 -2
  3743. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +2 -2
  3744. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +2 -2
  3745. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +2 -2
  3746. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +2 -2
  3747. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +2 -2
  3748. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +2 -2
  3749. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +2 -2
  3750. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +2 -2
  3751. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +2 -2
  3752. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +2 -2
  3753. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionRecursionConfigCommand.js +2 -2
  3754. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionScalingConfigCommand.js +2 -2
  3755. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +2 -2
  3756. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutRuntimeManagementConfigCommand.js +2 -2
  3757. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +2 -2
  3758. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +2 -2
  3759. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +2 -2
  3760. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +2 -2
  3761. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +2 -2
  3762. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/StopDurableExecutionCommand.js +2 -2
  3763. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +2 -2
  3764. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +2 -2
  3765. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +2 -2
  3766. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCapacityProviderCommand.js +2 -2
  3767. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +2 -2
  3768. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +2 -2
  3769. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +2 -2
  3770. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +2 -2
  3771. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +2 -2
  3772. package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionUrlConfigCommand.js +2 -2
  3773. package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/bdd.js +1 -1
  3774. package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/endpointResolver.js +2 -2
  3775. package/node_modules/@aws-sdk/client-lambda/dist-es/models/LambdaServiceException.js +1 -1
  3776. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +6 -8
  3777. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +6 -11
  3778. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +3 -4
  3779. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeExtensions.js +3 -3
  3780. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActive.js +1 -1
  3781. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActiveV2.js +1 -1
  3782. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +1 -1
  3783. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdated.js +1 -1
  3784. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
  3785. package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForPublishedVersionActive.js +1 -1
  3786. package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +1 -1
  3787. package/node_modules/@aws-sdk/client-lambda/dist-types/LambdaClient.d.ts +7 -8
  3788. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +6 -4
  3789. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +6 -4
  3790. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +6 -4
  3791. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +6 -4
  3792. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +6 -4
  3793. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +6 -4
  3794. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +6 -4
  3795. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +6 -4
  3796. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +6 -4
  3797. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +6 -4
  3798. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -4
  3799. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +6 -4
  3800. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +6 -4
  3801. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +6 -4
  3802. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
  3803. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +6 -4
  3804. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +6 -4
  3805. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +6 -4
  3806. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -4
  3807. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3808. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +6 -4
  3809. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +6 -4
  3810. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -4
  3811. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +6 -4
  3812. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +6 -4
  3813. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +6 -4
  3814. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +6 -4
  3815. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +6 -4
  3816. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +6 -4
  3817. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +6 -4
  3818. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +6 -4
  3819. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +6 -4
  3820. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +6 -4
  3821. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +6 -4
  3822. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +6 -4
  3823. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +6 -4
  3824. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +6 -4
  3825. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +6 -4
  3826. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +6 -4
  3827. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +6 -4
  3828. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3829. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +6 -4
  3830. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +6 -4
  3831. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +7 -5
  3832. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -4
  3833. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +6 -4
  3834. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +6 -4
  3835. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +6 -4
  3836. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +6 -4
  3837. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +6 -4
  3838. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +6 -4
  3839. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +6 -4
  3840. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +6 -4
  3841. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +6 -4
  3842. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +6 -4
  3843. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -4
  3844. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -4
  3845. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +6 -4
  3846. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +6 -4
  3847. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +6 -4
  3848. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +6 -4
  3849. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +6 -4
  3850. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +6 -4
  3851. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +6 -4
  3852. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +6 -4
  3853. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +6 -4
  3854. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +6 -4
  3855. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3856. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +6 -4
  3857. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +6 -4
  3858. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +6 -4
  3859. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +6 -4
  3860. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +6 -4
  3861. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +6 -4
  3862. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +6 -4
  3863. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +6 -4
  3864. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +6 -4
  3865. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +6 -4
  3866. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +6 -4
  3867. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +6 -4
  3868. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +6 -4
  3869. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +6 -4
  3870. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +6 -4
  3871. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +6 -4
  3872. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +6 -4
  3873. package/node_modules/@aws-sdk/client-lambda/dist-types/endpoint/bdd.d.ts +1 -1
  3874. package/node_modules/@aws-sdk/client-lambda/dist-types/extensionConfiguration.d.ts +1 -1
  3875. package/node_modules/@aws-sdk/client-lambda/dist-types/models/LambdaServiceException.d.ts +1 -1
  3876. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +1 -1
  3877. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +3 -3
  3878. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +3 -3
  3879. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +3 -3
  3880. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +1 -1
  3881. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +13 -21
  3882. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +6 -4
  3883. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +6 -4
  3884. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +6 -4
  3885. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +6 -4
  3886. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +6 -4
  3887. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +6 -4
  3888. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +6 -4
  3889. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +6 -4
  3890. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +6 -4
  3891. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +6 -4
  3892. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +6 -4
  3893. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +6 -4
  3894. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +6 -4
  3895. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +6 -4
  3896. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +6 -4
  3897. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +6 -4
  3898. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +6 -4
  3899. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +6 -4
  3900. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +6 -4
  3901. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3902. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +6 -4
  3903. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +6 -8
  3904. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +6 -4
  3905. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +6 -4
  3906. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +6 -4
  3907. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +6 -4
  3908. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +6 -4
  3909. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +6 -4
  3910. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +6 -4
  3911. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +6 -4
  3912. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +6 -4
  3913. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +6 -4
  3914. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +6 -4
  3915. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +6 -4
  3916. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +6 -4
  3917. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +6 -4
  3918. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +6 -4
  3919. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +6 -4
  3920. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +6 -4
  3921. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +6 -8
  3922. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3923. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +6 -4
  3924. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +6 -4
  3925. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +7 -5
  3926. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +6 -4
  3927. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +6 -4
  3928. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +6 -4
  3929. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +6 -4
  3930. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +6 -4
  3931. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +6 -4
  3932. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +6 -4
  3933. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +6 -4
  3934. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +6 -4
  3935. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +6 -4
  3936. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +6 -4
  3937. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +6 -4
  3938. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +6 -4
  3939. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +6 -4
  3940. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +6 -8
  3941. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +6 -4
  3942. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +6 -4
  3943. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +6 -4
  3944. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +6 -4
  3945. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +6 -4
  3946. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +6 -4
  3947. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +6 -4
  3948. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +6 -4
  3949. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +6 -4
  3950. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +6 -4
  3951. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +6 -4
  3952. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +6 -4
  3953. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +6 -4
  3954. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +6 -4
  3955. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +6 -4
  3956. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +6 -4
  3957. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
  3958. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
  3959. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +6 -4
  3960. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +6 -4
  3961. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +6 -4
  3962. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +6 -4
  3963. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +6 -4
  3964. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +6 -4
  3965. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +6 -4
  3966. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +6 -4
  3967. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  3968. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  3969. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/LambdaServiceException.d.ts +1 -1
  3970. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +1 -1
  3971. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  3972. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  3973. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  3974. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +1 -1
  3975. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +1 -1
  3976. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +1 -1
  3977. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +1 -1
  3978. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +1 -1
  3979. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +1 -1
  3980. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +1 -1
  3981. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +1 -1
  3982. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +1 -1
  3983. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +1 -1
  3984. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +1 -1
  3985. package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +1 -1
  3986. package/node_modules/@aws-sdk/client-lambda/package.json +7 -41
  3987. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +7 -7
  3988. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +624 -620
  3989. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +5 -5
  3990. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +269 -275
  3991. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +3 -3
  3992. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +19 -22
  3993. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +30 -35
  3994. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +11 -13
  3995. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +1 -1
  3996. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +7 -10
  3997. package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +2 -2
  3998. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -2
  3999. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -2
  4000. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -2
  4001. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -2
  4002. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -2
  4003. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -2
  4004. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -2
  4005. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -2
  4006. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -2
  4007. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -2
  4008. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -2
  4009. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -2
  4010. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -2
  4011. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -2
  4012. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -2
  4013. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -2
  4014. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -2
  4015. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -2
  4016. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -2
  4017. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -2
  4018. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -2
  4019. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -2
  4020. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -2
  4021. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -2
  4022. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -2
  4023. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -2
  4024. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -2
  4025. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -2
  4026. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -2
  4027. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -2
  4028. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -2
  4029. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -2
  4030. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -2
  4031. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -2
  4032. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -2
  4033. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -2
  4034. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -2
  4035. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -2
  4036. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -2
  4037. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -2
  4038. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -2
  4039. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -2
  4040. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -2
  4041. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -2
  4042. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -2
  4043. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -2
  4044. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -2
  4045. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -2
  4046. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -2
  4047. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -2
  4048. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -2
  4049. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -2
  4050. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -2
  4051. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -2
  4052. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -2
  4053. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -2
  4054. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -2
  4055. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -2
  4056. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -2
  4057. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -2
  4058. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -2
  4059. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -2
  4060. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -2
  4061. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -2
  4062. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -2
  4063. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -2
  4064. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -2
  4065. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -2
  4066. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -2
  4067. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -2
  4068. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -2
  4069. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -2
  4070. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -2
  4071. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -2
  4072. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -2
  4073. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -2
  4074. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -2
  4075. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -2
  4076. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -2
  4077. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -2
  4078. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -2
  4079. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -2
  4080. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -2
  4081. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -2
  4082. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -2
  4083. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -2
  4084. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -2
  4085. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -2
  4086. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -2
  4087. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -2
  4088. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -2
  4089. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -2
  4090. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -2
  4091. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -2
  4092. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -2
  4093. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -2
  4094. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -2
  4095. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -2
  4096. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -2
  4097. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -2
  4098. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -2
  4099. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -2
  4100. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -2
  4101. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -2
  4102. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -2
  4103. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -2
  4104. package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -2
  4105. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +623 -619
  4106. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +2 -2
  4107. package/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +1 -1
  4108. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +7 -10
  4109. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +7 -12
  4110. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +3 -5
  4111. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +3 -3
  4112. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +1 -1
  4113. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +1 -1
  4114. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +1 -1
  4115. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +1 -1
  4116. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +1 -1
  4117. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -8
  4118. package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +6 -4
  4119. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +6 -4
  4120. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +6 -4
  4121. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +6 -4
  4122. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +6 -4
  4123. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4124. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +6 -4
  4125. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +6 -4
  4126. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4127. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +6 -4
  4128. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +6 -4
  4129. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +6 -4
  4130. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4131. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +6 -4
  4132. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +6 -4
  4133. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +6 -4
  4134. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4135. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +6 -4
  4136. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +6 -4
  4137. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +6 -4
  4138. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +6 -4
  4139. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +6 -4
  4140. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +6 -4
  4141. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +6 -4
  4142. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +6 -4
  4143. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +6 -4
  4144. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +6 -4
  4145. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +6 -4
  4146. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +6 -4
  4147. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +6 -4
  4148. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4149. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +6 -4
  4150. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +6 -4
  4151. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4152. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +6 -4
  4153. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +6 -4
  4154. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +6 -4
  4155. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +6 -4
  4156. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +6 -4
  4157. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4158. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +6 -4
  4159. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +6 -4
  4160. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +6 -4
  4161. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +6 -4
  4162. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +6 -4
  4163. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +6 -4
  4164. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +6 -4
  4165. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +6 -4
  4166. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +6 -4
  4167. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +6 -4
  4168. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +6 -4
  4169. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +6 -4
  4170. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +6 -4
  4171. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +6 -4
  4172. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +6 -4
  4173. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +6 -4
  4174. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +6 -4
  4175. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +6 -4
  4176. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +6 -4
  4177. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +6 -4
  4178. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +6 -4
  4179. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +6 -4
  4180. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +6 -4
  4181. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +6 -4
  4182. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +6 -4
  4183. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +6 -4
  4184. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +6 -4
  4185. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +6 -4
  4186. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +6 -4
  4187. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +6 -4
  4188. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +6 -4
  4189. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +6 -4
  4190. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +6 -4
  4191. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +6 -4
  4192. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +6 -4
  4193. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4194. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +6 -4
  4195. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +6 -4
  4196. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4197. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +6 -4
  4198. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +6 -4
  4199. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +6 -4
  4200. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +6 -4
  4201. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +6 -4
  4202. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +6 -4
  4203. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +6 -4
  4204. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +6 -4
  4205. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +6 -4
  4206. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +6 -4
  4207. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +6 -4
  4208. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +6 -4
  4209. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +6 -4
  4210. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +6 -4
  4211. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +6 -4
  4212. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +6 -4
  4213. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +6 -4
  4214. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +6 -4
  4215. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +6 -4
  4216. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +6 -4
  4217. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +6 -4
  4218. package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +6 -4
  4219. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +6 -4
  4220. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +6 -4
  4221. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +6 -4
  4222. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +6 -4
  4223. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +6 -4
  4224. package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +6 -4
  4225. package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +1 -1
  4226. package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +1 -1
  4227. package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
  4228. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +1 -1
  4229. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +4 -4
  4230. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +4 -4
  4231. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
  4232. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +1 -1
  4233. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1 -1
  4234. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +18 -26
  4235. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +6 -4
  4236. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +6 -4
  4237. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +6 -4
  4238. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +6 -4
  4239. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +6 -4
  4240. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4241. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +6 -4
  4242. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +6 -4
  4243. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4244. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +6 -4
  4245. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +6 -4
  4246. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +6 -4
  4247. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4248. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +6 -4
  4249. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +6 -4
  4250. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +6 -4
  4251. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4252. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +6 -4
  4253. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +6 -4
  4254. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +6 -4
  4255. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +6 -4
  4256. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +6 -4
  4257. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +6 -4
  4258. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +6 -4
  4259. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +6 -4
  4260. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +6 -4
  4261. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +6 -4
  4262. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +6 -4
  4263. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +6 -4
  4264. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +6 -4
  4265. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4266. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +6 -4
  4267. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +6 -4
  4268. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4269. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +6 -4
  4270. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +6 -4
  4271. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +6 -4
  4272. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +6 -4
  4273. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +6 -4
  4274. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +6 -4
  4275. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +6 -4
  4276. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +6 -4
  4277. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +6 -4
  4278. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +6 -4
  4279. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +6 -4
  4280. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +6 -4
  4281. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +6 -4
  4282. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +6 -4
  4283. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +6 -4
  4284. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +6 -4
  4285. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +6 -4
  4286. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +6 -4
  4287. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +6 -8
  4288. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +6 -4
  4289. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +6 -4
  4290. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +6 -4
  4291. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +6 -4
  4292. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +6 -4
  4293. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +6 -4
  4294. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +6 -4
  4295. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +6 -4
  4296. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +6 -4
  4297. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +6 -4
  4298. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +6 -4
  4299. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +6 -4
  4300. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +6 -4
  4301. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +6 -4
  4302. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +6 -4
  4303. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +6 -4
  4304. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +6 -4
  4305. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +6 -4
  4306. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +6 -8
  4307. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +6 -4
  4308. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +6 -4
  4309. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +6 -4
  4310. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +6 -4
  4311. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +6 -4
  4312. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +6 -4
  4313. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +6 -4
  4314. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +6 -4
  4315. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +6 -4
  4316. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +6 -4
  4317. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +6 -4
  4318. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +6 -4
  4319. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +6 -4
  4320. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +6 -4
  4321. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +6 -4
  4322. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +6 -4
  4323. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +6 -4
  4324. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +6 -4
  4325. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +6 -4
  4326. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +6 -4
  4327. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +6 -8
  4328. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +6 -4
  4329. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +6 -4
  4330. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +6 -4
  4331. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +6 -4
  4332. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +6 -4
  4333. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +6 -4
  4334. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +6 -4
  4335. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +6 -4
  4336. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +6 -4
  4337. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +6 -4
  4338. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +6 -4
  4339. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +6 -4
  4340. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +6 -4
  4341. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +6 -4
  4342. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  4343. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  4344. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
  4345. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +1 -1
  4346. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -4
  4347. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
  4348. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
  4349. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  4350. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +1 -1
  4351. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +1 -1
  4352. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +1 -1
  4353. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +1 -1
  4354. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +1 -1
  4355. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +1 -1
  4356. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +1 -1
  4357. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +1 -1
  4358. package/node_modules/@aws-sdk/client-s3/package.json +13 -50
  4359. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  4360. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -2
  4361. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +5 -5
  4362. package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +107 -112
  4363. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +3 -3
  4364. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +14 -16
  4365. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +19 -24
  4366. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +9 -10
  4367. package/node_modules/@aws-sdk/client-sns/dist-es/SNS.js +1 -1
  4368. package/node_modules/@aws-sdk/client-sns/dist-es/SNSClient.js +6 -9
  4369. package/node_modules/@aws-sdk/client-sns/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  4370. package/node_modules/@aws-sdk/client-sns/dist-es/commands/AddPermissionCommand.js +2 -2
  4371. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -2
  4372. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ConfirmSubscriptionCommand.js +2 -2
  4373. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformApplicationCommand.js +2 -2
  4374. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformEndpointCommand.js +2 -2
  4375. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -2
  4376. package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateTopicCommand.js +2 -2
  4377. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteEndpointCommand.js +2 -2
  4378. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeletePlatformApplicationCommand.js +2 -2
  4379. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -2
  4380. package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteTopicCommand.js +2 -2
  4381. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -2
  4382. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetEndpointAttributesCommand.js +2 -2
  4383. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -2
  4384. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSAttributesCommand.js +2 -2
  4385. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -2
  4386. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -2
  4387. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetTopicAttributesCommand.js +2 -2
  4388. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -2
  4389. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListOriginationNumbersCommand.js +2 -2
  4390. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -2
  4391. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPlatformApplicationsCommand.js +2 -2
  4392. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -2
  4393. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -2
  4394. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsCommand.js +2 -2
  4395. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  4396. package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTopicsCommand.js +2 -2
  4397. package/node_modules/@aws-sdk/client-sns/dist-es/commands/OptInPhoneNumberCommand.js +2 -2
  4398. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishBatchCommand.js +2 -2
  4399. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishCommand.js +2 -2
  4400. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -2
  4401. package/node_modules/@aws-sdk/client-sns/dist-es/commands/RemovePermissionCommand.js +2 -2
  4402. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetEndpointAttributesCommand.js +2 -2
  4403. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -2
  4404. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSMSAttributesCommand.js +2 -2
  4405. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -2
  4406. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetTopicAttributesCommand.js +2 -2
  4407. package/node_modules/@aws-sdk/client-sns/dist-es/commands/SubscribeCommand.js +2 -2
  4408. package/node_modules/@aws-sdk/client-sns/dist-es/commands/TagResourceCommand.js +2 -2
  4409. package/node_modules/@aws-sdk/client-sns/dist-es/commands/UnsubscribeCommand.js +2 -2
  4410. package/node_modules/@aws-sdk/client-sns/dist-es/commands/UntagResourceCommand.js +2 -2
  4411. package/node_modules/@aws-sdk/client-sns/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -2
  4412. package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/bdd.js +1 -1
  4413. package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/endpointResolver.js +2 -2
  4414. package/node_modules/@aws-sdk/client-sns/dist-es/models/SNSServiceException.js +1 -1
  4415. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.browser.js +5 -7
  4416. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +5 -10
  4417. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +3 -4
  4418. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeExtensions.js +3 -3
  4419. package/node_modules/@aws-sdk/client-sns/dist-types/SNSClient.d.ts +6 -7
  4420. package/node_modules/@aws-sdk/client-sns/dist-types/commands/AddPermissionCommand.d.ts +6 -4
  4421. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +6 -4
  4422. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +6 -4
  4423. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformApplicationCommand.d.ts +6 -4
  4424. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformEndpointCommand.d.ts +6 -4
  4425. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +6 -4
  4426. package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateTopicCommand.d.ts +6 -4
  4427. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteEndpointCommand.d.ts +6 -4
  4428. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeletePlatformApplicationCommand.d.ts +6 -4
  4429. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +6 -4
  4430. package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteTopicCommand.d.ts +6 -4
  4431. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +6 -4
  4432. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetEndpointAttributesCommand.d.ts +6 -4
  4433. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetPlatformApplicationAttributesCommand.d.ts +6 -4
  4434. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSAttributesCommand.d.ts +6 -4
  4435. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSSandboxAccountStatusCommand.d.ts +6 -4
  4436. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSubscriptionAttributesCommand.d.ts +6 -4
  4437. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetTopicAttributesCommand.d.ts +6 -4
  4438. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListEndpointsByPlatformApplicationCommand.d.ts +6 -4
  4439. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListOriginationNumbersCommand.d.ts +6 -4
  4440. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPhoneNumbersOptedOutCommand.d.ts +6 -4
  4441. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPlatformApplicationsCommand.d.ts +6 -4
  4442. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +6 -4
  4443. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsByTopicCommand.d.ts +6 -4
  4444. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsCommand.d.ts +6 -4
  4445. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
  4446. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTopicsCommand.d.ts +6 -4
  4447. package/node_modules/@aws-sdk/client-sns/dist-types/commands/OptInPhoneNumberCommand.d.ts +6 -4
  4448. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishBatchCommand.d.ts +6 -4
  4449. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishCommand.d.ts +6 -4
  4450. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +6 -4
  4451. package/node_modules/@aws-sdk/client-sns/dist-types/commands/RemovePermissionCommand.d.ts +6 -4
  4452. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetEndpointAttributesCommand.d.ts +6 -4
  4453. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetPlatformApplicationAttributesCommand.d.ts +6 -4
  4454. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSMSAttributesCommand.d.ts +6 -4
  4455. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +6 -4
  4456. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetTopicAttributesCommand.d.ts +6 -4
  4457. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +6 -4
  4458. package/node_modules/@aws-sdk/client-sns/dist-types/commands/TagResourceCommand.d.ts +6 -4
  4459. package/node_modules/@aws-sdk/client-sns/dist-types/commands/UnsubscribeCommand.d.ts +6 -4
  4460. package/node_modules/@aws-sdk/client-sns/dist-types/commands/UntagResourceCommand.d.ts +6 -4
  4461. package/node_modules/@aws-sdk/client-sns/dist-types/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +6 -4
  4462. package/node_modules/@aws-sdk/client-sns/dist-types/endpoint/bdd.d.ts +1 -1
  4463. package/node_modules/@aws-sdk/client-sns/dist-types/extensionConfiguration.d.ts +1 -1
  4464. package/node_modules/@aws-sdk/client-sns/dist-types/models/SNSServiceException.d.ts +1 -1
  4465. package/node_modules/@aws-sdk/client-sns/dist-types/models/errors.d.ts +1 -1
  4466. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +3 -3
  4467. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +3 -3
  4468. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +3 -3
  4469. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNSClient.d.ts +9 -17
  4470. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +6 -4
  4471. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +6 -4
  4472. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +6 -4
  4473. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +6 -4
  4474. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +6 -4
  4475. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +6 -4
  4476. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +6 -4
  4477. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +6 -4
  4478. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +6 -4
  4479. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +6 -4
  4480. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +6 -4
  4481. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +6 -4
  4482. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +6 -4
  4483. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +6 -4
  4484. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +6 -4
  4485. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +6 -4
  4486. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +6 -4
  4487. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +6 -4
  4488. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +6 -4
  4489. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +6 -4
  4490. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +6 -4
  4491. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +6 -4
  4492. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +6 -4
  4493. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +6 -4
  4494. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +6 -4
  4495. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
  4496. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +6 -4
  4497. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +6 -4
  4498. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +6 -4
  4499. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +6 -4
  4500. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +6 -4
  4501. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +6 -4
  4502. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +6 -4
  4503. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +6 -4
  4504. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +6 -4
  4505. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +6 -4
  4506. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +6 -4
  4507. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +6 -8
  4508. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
  4509. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +6 -4
  4510. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
  4511. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +6 -4
  4512. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  4513. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  4514. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/SNSServiceException.d.ts +1 -1
  4515. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/errors.d.ts +1 -1
  4516. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  4517. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  4518. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  4519. package/node_modules/@aws-sdk/client-sns/package.json +6 -35
  4520. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  4521. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -2
  4522. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +5 -5
  4523. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +70 -76
  4524. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +3 -3
  4525. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +16 -18
  4526. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +20 -25
  4527. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +9 -10
  4528. package/node_modules/@aws-sdk/client-sqs/dist-es/SQS.js +1 -1
  4529. package/node_modules/@aws-sdk/client-sqs/dist-es/SQSClient.js +6 -9
  4530. package/node_modules/@aws-sdk/client-sqs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  4531. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/AddPermissionCommand.js +2 -2
  4532. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -2
  4533. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -2
  4534. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -2
  4535. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CreateQueueCommand.js +2 -2
  4536. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageBatchCommand.js +2 -2
  4537. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageCommand.js +2 -2
  4538. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteQueueCommand.js +2 -2
  4539. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueAttributesCommand.js +2 -2
  4540. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueUrlCommand.js +2 -2
  4541. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -2
  4542. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListMessageMoveTasksCommand.js +2 -2
  4543. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueueTagsCommand.js +2 -2
  4544. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueuesCommand.js +2 -2
  4545. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/PurgeQueueCommand.js +2 -2
  4546. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -2
  4547. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/RemovePermissionCommand.js +2 -2
  4548. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageBatchCommand.js +2 -2
  4549. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageCommand.js +2 -2
  4550. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SetQueueAttributesCommand.js +2 -2
  4551. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/StartMessageMoveTaskCommand.js +2 -2
  4552. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/TagQueueCommand.js +2 -2
  4553. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/UntagQueueCommand.js +2 -2
  4554. package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/bdd.js +1 -1
  4555. package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/endpointResolver.js +2 -2
  4556. package/node_modules/@aws-sdk/client-sqs/dist-es/models/SQSServiceException.js +1 -1
  4557. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.browser.js +6 -8
  4558. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +5 -10
  4559. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +3 -4
  4560. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeExtensions.js +3 -3
  4561. package/node_modules/@aws-sdk/client-sqs/dist-types/SQSClient.d.ts +6 -7
  4562. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/AddPermissionCommand.d.ts +6 -4
  4563. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +6 -4
  4564. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +6 -4
  4565. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +6 -4
  4566. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CreateQueueCommand.d.ts +6 -4
  4567. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageBatchCommand.d.ts +6 -4
  4568. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageCommand.d.ts +6 -4
  4569. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteQueueCommand.d.ts +6 -4
  4570. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueAttributesCommand.d.ts +6 -4
  4571. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueUrlCommand.d.ts +6 -4
  4572. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +6 -4
  4573. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListMessageMoveTasksCommand.d.ts +6 -4
  4574. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueueTagsCommand.d.ts +6 -4
  4575. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueuesCommand.d.ts +6 -4
  4576. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/PurgeQueueCommand.d.ts +6 -4
  4577. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ReceiveMessageCommand.d.ts +6 -4
  4578. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/RemovePermissionCommand.d.ts +6 -4
  4579. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageBatchCommand.d.ts +6 -4
  4580. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageCommand.d.ts +6 -4
  4581. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SetQueueAttributesCommand.d.ts +6 -4
  4582. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/StartMessageMoveTaskCommand.d.ts +6 -4
  4583. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/TagQueueCommand.d.ts +6 -4
  4584. package/node_modules/@aws-sdk/client-sqs/dist-types/commands/UntagQueueCommand.d.ts +6 -4
  4585. package/node_modules/@aws-sdk/client-sqs/dist-types/endpoint/bdd.d.ts +1 -1
  4586. package/node_modules/@aws-sdk/client-sqs/dist-types/extensionConfiguration.d.ts +1 -1
  4587. package/node_modules/@aws-sdk/client-sqs/dist-types/models/SQSServiceException.d.ts +1 -1
  4588. package/node_modules/@aws-sdk/client-sqs/dist-types/models/errors.d.ts +1 -1
  4589. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +3 -3
  4590. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +3 -3
  4591. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +3 -3
  4592. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQSClient.d.ts +11 -19
  4593. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +6 -4
  4594. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +6 -4
  4595. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +6 -4
  4596. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +6 -4
  4597. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +6 -4
  4598. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +6 -4
  4599. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +6 -4
  4600. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +6 -4
  4601. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +6 -4
  4602. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +6 -4
  4603. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +6 -4
  4604. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +6 -4
  4605. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +6 -4
  4606. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +6 -4
  4607. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +6 -4
  4608. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +6 -4
  4609. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +6 -4
  4610. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +6 -4
  4611. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +6 -4
  4612. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +6 -4
  4613. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +6 -4
  4614. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +6 -8
  4615. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +6 -4
  4616. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  4617. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  4618. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/SQSServiceException.d.ts +1 -1
  4619. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/errors.d.ts +1 -1
  4620. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  4621. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  4622. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  4623. package/node_modules/@aws-sdk/client-sqs/package.json +8 -38
  4624. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  4625. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -2
  4626. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +5 -5
  4627. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +330 -336
  4628. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +3 -3
  4629. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +14 -16
  4630. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +19 -24
  4631. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +9 -10
  4632. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +1 -1
  4633. package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +6 -9
  4634. package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  4635. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -2
  4636. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -2
  4637. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -2
  4638. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -2
  4639. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -2
  4640. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -2
  4641. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -2
  4642. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -2
  4643. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -2
  4644. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -2
  4645. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -2
  4646. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -2
  4647. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -2
  4648. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -2
  4649. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -2
  4650. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -2
  4651. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -2
  4652. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -2
  4653. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -2
  4654. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -2
  4655. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -2
  4656. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -2
  4657. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -2
  4658. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -2
  4659. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
  4660. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -2
  4661. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -2
  4662. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -2
  4663. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -2
  4664. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -2
  4665. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -2
  4666. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -2
  4667. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -2
  4668. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -2
  4669. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -2
  4670. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -2
  4671. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -2
  4672. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -2
  4673. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -2
  4674. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -2
  4675. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -2
  4676. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -2
  4677. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -2
  4678. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -2
  4679. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -2
  4680. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -2
  4681. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -2
  4682. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -2
  4683. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -2
  4684. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -2
  4685. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -2
  4686. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -2
  4687. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -2
  4688. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -2
  4689. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -2
  4690. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -2
  4691. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -2
  4692. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -2
  4693. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -2
  4694. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -2
  4695. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -2
  4696. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -2
  4697. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -2
  4698. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -2
  4699. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -2
  4700. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -2
  4701. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -2
  4702. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -2
  4703. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -2
  4704. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -2
  4705. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -2
  4706. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -2
  4707. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -2
  4708. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -2
  4709. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -2
  4710. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -2
  4711. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -2
  4712. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -2
  4713. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -2
  4714. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -2
  4715. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -2
  4716. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -2
  4717. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -2
  4718. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -2
  4719. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -2
  4720. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -2
  4721. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -2
  4722. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -2
  4723. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -2
  4724. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -2
  4725. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -2
  4726. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -2
  4727. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -2
  4728. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -2
  4729. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -2
  4730. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -2
  4731. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -2
  4732. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -2
  4733. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -2
  4734. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -2
  4735. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -2
  4736. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -2
  4737. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -2
  4738. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -2
  4739. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -2
  4740. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -2
  4741. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -2
  4742. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -2
  4743. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  4744. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -2
  4745. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -2
  4746. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -2
  4747. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -2
  4748. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -2
  4749. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -2
  4750. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -2
  4751. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -2
  4752. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -2
  4753. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -2
  4754. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -2
  4755. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -2
  4756. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -2
  4757. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -2
  4758. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -2
  4759. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -2
  4760. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -2
  4761. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -2
  4762. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -2
  4763. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -2
  4764. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -2
  4765. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -2
  4766. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -2
  4767. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -2
  4768. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -2
  4769. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -2
  4770. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -2
  4771. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -2
  4772. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -2
  4773. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -2
  4774. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -2
  4775. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -2
  4776. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -2
  4777. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -2
  4778. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -2
  4779. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -2
  4780. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -2
  4781. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +1 -1
  4782. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +2 -2
  4783. package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +1 -1
  4784. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +5 -7
  4785. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +5 -10
  4786. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +3 -4
  4787. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +3 -3
  4788. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +1 -1
  4789. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1 -1
  4790. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +6 -7
  4791. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +6 -4
  4792. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +6 -4
  4793. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +6 -4
  4794. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +6 -4
  4795. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +6 -4
  4796. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +6 -4
  4797. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +6 -4
  4798. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +6 -4
  4799. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +6 -4
  4800. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +6 -4
  4801. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +6 -4
  4802. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +6 -4
  4803. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +6 -4
  4804. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +6 -4
  4805. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +6 -4
  4806. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +6 -4
  4807. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +6 -4
  4808. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +6 -4
  4809. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +6 -4
  4810. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +6 -4
  4811. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +6 -4
  4812. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +6 -4
  4813. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +6 -4
  4814. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +6 -4
  4815. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +6 -4
  4816. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +6 -4
  4817. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +6 -4
  4818. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +6 -4
  4819. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +6 -4
  4820. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +6 -4
  4821. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +6 -4
  4822. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +6 -4
  4823. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +6 -4
  4824. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +6 -4
  4825. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +6 -4
  4826. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +6 -4
  4827. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +6 -4
  4828. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +6 -4
  4829. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +6 -4
  4830. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +6 -4
  4831. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +6 -4
  4832. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +6 -4
  4833. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +6 -4
  4834. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +6 -4
  4835. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +6 -4
  4836. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -4
  4837. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +6 -4
  4838. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +6 -4
  4839. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +6 -4
  4840. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +6 -4
  4841. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +6 -4
  4842. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +6 -4
  4843. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +6 -4
  4844. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +6 -4
  4845. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +6 -4
  4846. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +6 -4
  4847. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +6 -4
  4848. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +6 -4
  4849. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +6 -4
  4850. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +6 -4
  4851. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +6 -4
  4852. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +6 -4
  4853. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +6 -4
  4854. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +6 -4
  4855. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +6 -4
  4856. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +6 -4
  4857. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +6 -4
  4858. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +6 -4
  4859. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +6 -4
  4860. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +6 -4
  4861. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +6 -4
  4862. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +6 -4
  4863. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +6 -4
  4864. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +6 -4
  4865. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +6 -4
  4866. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +6 -4
  4867. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +6 -4
  4868. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +6 -4
  4869. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +6 -4
  4870. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +6 -4
  4871. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +6 -4
  4872. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +6 -4
  4873. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +6 -4
  4874. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +6 -4
  4875. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +6 -4
  4876. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +6 -4
  4877. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +6 -4
  4878. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +6 -4
  4879. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +6 -4
  4880. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +6 -4
  4881. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +6 -4
  4882. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +6 -4
  4883. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +6 -4
  4884. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +6 -4
  4885. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +6 -4
  4886. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +6 -4
  4887. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +6 -4
  4888. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +6 -4
  4889. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +6 -4
  4890. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +6 -4
  4891. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +6 -4
  4892. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +6 -4
  4893. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -4
  4894. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +6 -4
  4895. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +6 -4
  4896. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +6 -4
  4897. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +6 -4
  4898. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +6 -4
  4899. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
  4900. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +6 -4
  4901. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +6 -4
  4902. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +6 -4
  4903. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +6 -4
  4904. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -4
  4905. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +6 -4
  4906. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +6 -4
  4907. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +6 -4
  4908. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +6 -4
  4909. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -4
  4910. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +6 -4
  4911. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +6 -4
  4912. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +6 -4
  4913. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +6 -4
  4914. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +6 -4
  4915. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +6 -4
  4916. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +6 -4
  4917. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +6 -4
  4918. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +6 -4
  4919. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +6 -4
  4920. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +6 -4
  4921. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +6 -4
  4922. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +6 -4
  4923. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +6 -4
  4924. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +6 -4
  4925. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +6 -4
  4926. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +6 -4
  4927. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +6 -4
  4928. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +6 -4
  4929. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +6 -4
  4930. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +6 -4
  4931. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +6 -4
  4932. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +6 -4
  4933. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +6 -4
  4934. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +6 -4
  4935. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +6 -4
  4936. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +6 -4
  4937. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +1 -1
  4938. package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +1 -1
  4939. package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +1 -1
  4940. package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +1 -1
  4941. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +3 -3
  4942. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +3 -3
  4943. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +3 -3
  4944. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +1 -1
  4945. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +9 -17
  4946. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +6 -4
  4947. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +6 -4
  4948. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +6 -4
  4949. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +6 -4
  4950. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +6 -4
  4951. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +6 -4
  4952. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +6 -4
  4953. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +6 -4
  4954. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +6 -4
  4955. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +6 -4
  4956. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +6 -4
  4957. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +6 -4
  4958. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +6 -4
  4959. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +6 -4
  4960. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +6 -4
  4961. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +6 -4
  4962. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +6 -4
  4963. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +6 -4
  4964. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +6 -4
  4965. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +6 -4
  4966. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +6 -4
  4967. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +6 -4
  4968. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +6 -4
  4969. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +6 -4
  4970. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +6 -4
  4971. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +6 -4
  4972. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +6 -4
  4973. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +6 -4
  4974. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +6 -4
  4975. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +6 -4
  4976. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +6 -4
  4977. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +6 -4
  4978. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +6 -4
  4979. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +6 -4
  4980. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +6 -4
  4981. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +6 -4
  4982. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +6 -4
  4983. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +6 -4
  4984. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +6 -4
  4985. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +6 -4
  4986. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +6 -4
  4987. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +6 -4
  4988. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +6 -4
  4989. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +6 -4
  4990. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +6 -4
  4991. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +6 -4
  4992. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +6 -4
  4993. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +6 -4
  4994. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +6 -4
  4995. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +6 -4
  4996. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +6 -4
  4997. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +6 -4
  4998. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +6 -4
  4999. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +6 -4
  5000. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +6 -4
  5001. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +6 -4
  5002. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +6 -4
  5003. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +6 -4
  5004. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +6 -4
  5005. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +6 -4
  5006. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +6 -4
  5007. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +6 -4
  5008. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +6 -4
  5009. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +6 -4
  5010. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +6 -4
  5011. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +6 -4
  5012. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +6 -4
  5013. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +6 -4
  5014. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +6 -4
  5015. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +6 -4
  5016. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +6 -4
  5017. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +6 -4
  5018. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +6 -4
  5019. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +6 -4
  5020. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +6 -4
  5021. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +6 -4
  5022. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +6 -4
  5023. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +6 -4
  5024. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +6 -4
  5025. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +6 -4
  5026. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +6 -4
  5027. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +6 -4
  5028. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +6 -4
  5029. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +6 -4
  5030. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +6 -4
  5031. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +6 -4
  5032. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +6 -4
  5033. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +6 -4
  5034. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +6 -4
  5035. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +6 -4
  5036. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +6 -4
  5037. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +6 -4
  5038. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +6 -4
  5039. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +6 -4
  5040. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +6 -4
  5041. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +6 -4
  5042. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +6 -4
  5043. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +6 -4
  5044. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +6 -4
  5045. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +6 -4
  5046. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +6 -4
  5047. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +6 -6
  5048. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +6 -4
  5049. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +6 -4
  5050. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +6 -4
  5051. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +6 -4
  5052. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +6 -4
  5053. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +6 -4
  5054. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
  5055. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +6 -4
  5056. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +6 -4
  5057. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +6 -4
  5058. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +6 -4
  5059. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +6 -4
  5060. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +6 -4
  5061. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +6 -4
  5062. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +6 -4
  5063. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +6 -4
  5064. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +6 -4
  5065. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +6 -4
  5066. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +6 -4
  5067. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +6 -4
  5068. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +6 -4
  5069. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +6 -4
  5070. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +6 -4
  5071. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +6 -4
  5072. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +6 -4
  5073. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +6 -4
  5074. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +6 -4
  5075. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +6 -4
  5076. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +6 -4
  5077. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +6 -4
  5078. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +6 -4
  5079. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +6 -4
  5080. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +6 -4
  5081. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +6 -4
  5082. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +6 -4
  5083. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +6 -4
  5084. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +6 -4
  5085. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +6 -4
  5086. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +6 -4
  5087. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +6 -4
  5088. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +6 -4
  5089. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +6 -4
  5090. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +6 -4
  5091. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +6 -4
  5092. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  5093. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  5094. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +1 -1
  5095. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +1 -1
  5096. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -3
  5097. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +3 -3
  5098. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  5099. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +1 -1
  5100. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +1 -1
  5101. package/node_modules/@aws-sdk/client-ssm/package.json +6 -36
  5102. package/node_modules/@aws-sdk/core/dist-cjs/index.js +69 -57
  5103. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -2
  5104. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +595 -0
  5105. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +717 -2
  5106. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +588 -0
  5107. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +7 -7
  5108. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +56 -41
  5109. package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +59 -0
  5110. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
  5111. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
  5112. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.browser.js +36 -0
  5113. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +26 -4
  5114. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.native.js +37 -0
  5115. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-host-header/hostHeaderMiddleware.js +33 -0
  5116. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.js +3 -0
  5117. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +29 -0
  5118. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/check-features.js +49 -0
  5119. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/user-agent-middleware.js +82 -0
  5120. package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/awsRegionConfig.js +2 -0
  5121. package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/stsRegionDefaultResolver.js +15 -0
  5122. package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +1 -1
  5123. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/aws.js +10 -0
  5124. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  5125. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partition.js +41 -0
  5126. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +1 -0
  5127. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/isIpAddress.js +1 -0
  5128. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  5129. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveEndpoint.js +1 -0
  5130. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/types/EndpointError.js +1 -0
  5131. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -0
  5132. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.js +75 -0
  5133. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.js +9 -0
  5134. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -1
  5135. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -1
  5136. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
  5137. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
  5138. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +1 -1
  5139. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
  5140. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
  5141. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +7 -6
  5142. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +1 -1
  5143. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +1 -1
  5144. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +1 -2
  5145. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
  5146. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +1 -2
  5147. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +28 -13
  5148. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +1 -1
  5149. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -3
  5150. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +1 -1
  5151. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
  5152. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +2 -3
  5153. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
  5154. package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
  5155. package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
  5156. package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +3 -1
  5157. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +13 -14
  5158. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  5159. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +47 -0
  5160. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +38 -4
  5161. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +48 -0
  5162. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +5 -0
  5163. package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/awsRegionConfig.d.ts +15 -0
  5164. package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +14 -0
  5165. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/aws.d.ts +2 -0
  5166. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/aws/partitions.d.ts +638 -0
  5167. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
  5168. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
  5169. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
  5170. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -0
  5171. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
  5172. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -0
  5173. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
  5174. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -0
  5175. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +14 -0
  5176. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +1 -0
  5177. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +13 -0
  5178. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  5179. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  5180. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
  5181. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
  5182. package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -0
  5183. package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +0 -1
  5184. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +65 -3
  5185. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  5186. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.browser.d.ts +116 -0
  5187. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +123 -4
  5188. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.native.d.ts +116 -0
  5189. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +4 -0
  5190. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/awsRegionConfig.d.ts +8 -0
  5191. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +7 -0
  5192. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/aws.d.ts +2 -0
  5193. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/aws/partitions.d.ts +647 -0
  5194. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
  5195. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
  5196. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
  5197. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +6 -0
  5198. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
  5199. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/RuleSetObject.d.ts +5 -0
  5200. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
  5201. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/shared.d.ts +12 -0
  5202. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +9 -0
  5203. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +1 -0
  5204. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +6 -0
  5205. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  5206. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  5207. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
  5208. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +6 -0
  5209. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -0
  5210. package/node_modules/@aws-sdk/core/package.json +37 -15
  5211. package/node_modules/@aws-sdk/core/util.d.ts +7 -0
  5212. package/node_modules/@aws-sdk/core/util.js +5 -0
  5213. package/node_modules/@aws-sdk/crc64-nvme/package.json +1 -2
  5214. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +2 -2
  5215. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
  5216. package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
  5217. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +2 -2
  5218. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +2 -2
  5219. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +3 -3
  5220. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +10 -10
  5221. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +7 -5
  5222. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
  5223. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
  5224. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +1 -1
  5225. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
  5226. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
  5227. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
  5228. package/node_modules/@aws-sdk/credential-provider-http/package.json +15 -10
  5229. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +9 -10
  5230. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
  5231. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
  5232. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
  5233. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
  5234. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
  5235. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
  5236. package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -12
  5237. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +14 -15
  5238. package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
  5239. package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
  5240. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
  5241. package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
  5242. package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -6
  5243. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +7 -8
  5244. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
  5245. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
  5246. package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -10
  5247. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +7 -8
  5248. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
  5249. package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
  5250. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
  5251. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
  5252. package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -4
  5253. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +16 -17
  5254. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
  5255. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +2 -3
  5256. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
  5257. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +1 -1
  5258. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
  5259. package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -6
  5260. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +3 -4
  5261. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +1 -34
  5262. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
  5263. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -5
  5264. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +10 -10
  5265. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeDisableMultiregionAccessPointConfigOptions.js +1 -1
  5266. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeUseArnRegionConfigOptions.js +1 -1
  5267. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/bucketEndpointMiddleware.js +2 -2
  5268. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeDisableMultiregionAccessPointConfigOptions.d.ts +1 -1
  5269. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeUseArnRegionConfigOptions.d.ts +1 -1
  5270. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostnameUtils.d.ts +1 -1
  5271. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +1 -1
  5272. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +1 -1
  5273. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +1 -1
  5274. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +3 -5
  5275. package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +2 -2
  5276. package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +1 -1
  5277. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +1 -1
  5278. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +1 -1
  5279. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +2 -2
  5280. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +11 -13
  5281. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +2 -2
  5282. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +1 -1
  5283. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isStreaming.js +1 -1
  5284. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/resolveFlexibleChecksumsConfig.js +1 -1
  5285. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/stringHasher.js +1 -1
  5286. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js +1 -1
  5287. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +1 -1
  5288. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +1 -1
  5289. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +1 -1
  5290. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +1 -1
  5291. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +1 -1
  5292. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/validateChecksumFromResponse.d.ts +1 -1
  5293. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -10
  5294. package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +9 -10
  5295. package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-es/index.js +4 -4
  5296. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +4 -6
  5297. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +24 -61
  5298. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +2 -2
  5299. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +2 -2
  5300. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +2 -40
  5301. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +1 -1
  5302. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +2 -2
  5303. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +1 -1
  5304. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +1 -1
  5305. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +1 -1
  5306. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +5 -16
  5307. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +1 -1
  5308. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +1 -1
  5309. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +2 -19
  5310. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +1 -1
  5311. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +1 -1
  5312. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +5 -12
  5313. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -10
  5314. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/queue-url.js +1 -1
  5315. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/receive-message.js +1 -2
  5316. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/send-message-batch.js +1 -2
  5317. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/send-message.js +1 -2
  5318. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -4
  5319. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +524 -63
  5320. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +458 -60
  5321. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +403 -60
  5322. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +597 -60
  5323. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +831 -58
  5324. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
  5325. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +6 -9
  5326. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
  5327. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -2
  5328. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -2
  5329. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +1 -1
  5330. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +2 -2
  5331. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
  5332. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +5 -7
  5333. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +5 -10
  5334. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +3 -4
  5335. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +3 -3
  5336. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
  5337. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +6 -9
  5338. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
  5339. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -2
  5340. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +1 -1
  5341. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +2 -2
  5342. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
  5343. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +5 -7
  5344. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +5 -10
  5345. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +3 -4
  5346. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +3 -3
  5347. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
  5348. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +6 -9
  5349. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
  5350. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -2
  5351. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +1 -1
  5352. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +2 -2
  5353. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
  5354. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +5 -7
  5355. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +5 -10
  5356. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +3 -4
  5357. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +3 -3
  5358. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
  5359. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +6 -9
  5360. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
  5361. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -2
  5362. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +1 -1
  5363. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
  5364. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
  5365. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +5 -7
  5366. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +5 -10
  5367. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +3 -4
  5368. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +3 -3
  5369. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
  5370. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +6 -9
  5371. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +5 -10
  5372. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -2
  5373. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -2
  5374. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -7
  5375. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +1 -1
  5376. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +2 -2
  5377. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
  5378. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +5 -7
  5379. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +5 -10
  5380. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +3 -4
  5381. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +3 -3
  5382. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +6 -7
  5383. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
  5384. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
  5385. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
  5386. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  5387. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  5388. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
  5389. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +5 -5
  5390. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +4 -4
  5391. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +5 -5
  5392. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +6 -7
  5393. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
  5394. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +1 -1
  5395. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
  5396. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
  5397. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
  5398. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +5 -5
  5399. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +4 -4
  5400. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +5 -5
  5401. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +6 -7
  5402. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
  5403. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +1 -1
  5404. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
  5405. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
  5406. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
  5407. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +5 -5
  5408. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +4 -4
  5409. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +5 -5
  5410. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +6 -7
  5411. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
  5412. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
  5413. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  5414. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  5415. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
  5416. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +5 -5
  5417. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +4 -4
  5418. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +5 -5
  5419. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +6 -7
  5420. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -13
  5421. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
  5422. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
  5423. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
  5424. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +1 -1
  5425. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
  5426. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
  5427. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -1
  5428. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +5 -5
  5429. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +4 -4
  5430. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +5 -5
  5431. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +9 -17
  5432. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
  5433. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
  5434. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
  5435. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  5436. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  5437. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
  5438. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +5 -5
  5439. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +4 -4
  5440. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +6 -6
  5441. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +9 -17
  5442. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
  5443. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +1 -1
  5444. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
  5445. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
  5446. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
  5447. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +5 -5
  5448. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +4 -4
  5449. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +6 -6
  5450. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +9 -17
  5451. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
  5452. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +1 -1
  5453. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
  5454. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
  5455. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
  5456. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +5 -5
  5457. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +4 -4
  5458. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +6 -6
  5459. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +9 -17
  5460. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
  5461. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
  5462. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  5463. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  5464. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
  5465. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +5 -5
  5466. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +4 -4
  5467. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +6 -6
  5468. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +9 -17
  5469. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +2 -12
  5470. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
  5471. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
  5472. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
  5473. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +1 -1
  5474. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
  5475. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
  5476. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -1
  5477. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +5 -5
  5478. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +4 -4
  5479. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +6 -6
  5480. package/node_modules/@aws-sdk/nested-clients/package.json +6 -35
  5481. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +38 -2
  5482. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
  5483. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
  5484. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
  5485. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
  5486. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
  5487. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
  5488. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
  5489. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
  5490. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +3 -4
  5491. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +18 -19
  5492. package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
  5493. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
  5494. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
  5495. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
  5496. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
  5497. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
  5498. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
  5499. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
  5500. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
  5501. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
  5502. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
  5503. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
  5504. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
  5505. package/node_modules/@aws-sdk/token-providers/package.json +4 -5
  5506. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +60 -0
  5507. package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
  5508. package/node_modules/@smithy/core/checksum.d.ts +5 -0
  5509. package/node_modules/@smithy/core/checksum.js +5 -0
  5510. package/node_modules/@smithy/core/client.d.ts +7 -0
  5511. package/node_modules/@smithy/core/client.js +6 -0
  5512. package/node_modules/@smithy/core/config.d.ts +5 -0
  5513. package/node_modules/@smithy/core/config.js +5 -0
  5514. package/node_modules/@smithy/core/dist-cjs/index.js +6 -7
  5515. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +2 -2
  5516. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +4 -4
  5517. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +9 -13
  5518. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +202 -0
  5519. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +259 -0
  5520. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +229 -0
  5521. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1136 -0
  5522. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +375 -0
  5523. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +735 -0
  5524. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +364 -0
  5525. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +860 -0
  5526. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +873 -3
  5527. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +866 -0
  5528. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +627 -3
  5529. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +297 -20
  5530. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +800 -0
  5531. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +827 -0
  5532. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +17 -5
  5533. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1405 -0
  5534. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1094 -2
  5535. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1405 -0
  5536. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
  5537. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +2 -2
  5538. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
  5539. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +2 -2
  5540. package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +1 -3
  5541. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
  5542. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +1 -2
  5543. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +1 -2
  5544. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +2 -3
  5545. package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
  5546. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
  5547. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
  5548. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
  5549. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +6 -0
  5550. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +5 -0
  5551. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +6 -0
  5552. package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +168 -0
  5553. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +26 -0
  5554. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
  5555. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
  5556. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
  5557. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
  5558. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
  5559. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
  5560. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
  5561. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
  5562. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
  5563. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
  5564. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
  5565. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
  5566. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +98 -0
  5567. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
  5568. package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
  5569. package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
  5570. package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
  5571. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
  5572. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
  5573. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
  5574. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
  5575. package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
  5576. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
  5577. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
  5578. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
  5579. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
  5580. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
  5581. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
  5582. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
  5583. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +21 -0
  5584. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
  5585. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
  5586. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
  5587. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
  5588. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
  5589. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
  5590. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
  5591. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +1 -1
  5592. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
  5593. package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +1 -1
  5594. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
  5595. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
  5596. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
  5597. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
  5598. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
  5599. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
  5600. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
  5601. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
  5602. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +3 -4
  5603. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +3 -2
  5604. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
  5605. package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
  5606. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +12 -0
  5607. package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
  5608. package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
  5609. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
  5610. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
  5611. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
  5612. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
  5613. package/node_modules/@smithy/core/dist-es/submodules/protocols/url-parser/parseUrl.js +18 -0
  5614. package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
  5615. package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
  5616. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +50 -0
  5617. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
  5618. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
  5619. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
  5620. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
  5621. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
  5622. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
  5623. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
  5624. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
  5625. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +109 -0
  5626. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
  5627. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +19 -0
  5628. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
  5629. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +93 -0
  5630. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +12 -0
  5631. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +2 -2
  5632. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -1
  5633. package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
  5634. package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +41 -0
  5635. package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +40 -10
  5636. package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +43 -0
  5637. package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
  5638. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
  5639. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
  5640. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
  5641. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
  5642. package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
  5643. package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
  5644. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
  5645. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +60 -0
  5646. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
  5647. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
  5648. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
  5649. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +38 -0
  5650. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
  5651. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
  5652. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
  5653. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +53 -0
  5654. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +48 -0
  5655. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
  5656. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +10 -0
  5657. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
  5658. package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
  5659. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
  5660. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -1
  5661. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
  5662. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +1 -1
  5663. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +1 -1
  5664. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
  5665. package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +2 -2
  5666. package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +2 -1
  5667. package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
  5668. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +5 -4
  5669. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
  5670. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
  5671. package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
  5672. package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
  5673. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
  5674. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
  5675. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
  5676. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +5 -0
  5677. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +5 -0
  5678. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +5 -0
  5679. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +26 -0
  5680. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
  5681. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +119 -0
  5682. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
  5683. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
  5684. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
  5685. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
  5686. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
  5687. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
  5688. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
  5689. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
  5690. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
  5691. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
  5692. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
  5693. package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +5 -0
  5694. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
  5695. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
  5696. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
  5697. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
  5698. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
  5699. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
  5700. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
  5701. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
  5702. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
  5703. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
  5704. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
  5705. package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
  5706. package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
  5707. package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
  5708. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
  5709. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
  5710. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
  5711. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
  5712. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
  5713. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
  5714. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
  5715. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
  5716. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
  5717. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
  5718. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
  5719. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
  5720. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
  5721. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +23 -0
  5722. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  5723. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +21 -0
  5724. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
  5725. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
  5726. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +11 -0
  5727. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +12 -0
  5728. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
  5729. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
  5730. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
  5731. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
  5732. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
  5733. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
  5734. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
  5735. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
  5736. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
  5737. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
  5738. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
  5739. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
  5740. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
  5741. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
  5742. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
  5743. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
  5744. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
  5745. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
  5746. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
  5747. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
  5748. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
  5749. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
  5750. package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
  5751. package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
  5752. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +14 -0
  5753. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
  5754. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
  5755. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +32 -0
  5756. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpRequest.d.ts +55 -0
  5757. package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
  5758. package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
  5759. package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
  5760. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +68 -0
  5761. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  5762. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  5763. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
  5764. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
  5765. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
  5766. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
  5767. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
  5768. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
  5769. package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
  5770. package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +39 -0
  5771. package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +37 -10
  5772. package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +37 -0
  5773. package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
  5774. package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
  5775. package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
  5776. package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
  5777. package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
  5778. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
  5779. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +60 -0
  5780. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
  5781. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
  5782. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
  5783. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
  5784. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
  5785. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
  5786. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
  5787. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
  5788. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +6 -0
  5789. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +3 -0
  5790. package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
  5791. package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
  5792. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +2 -2
  5793. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +2 -2
  5794. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +2 -1
  5795. package/node_modules/@smithy/core/package.json +111 -12
  5796. package/node_modules/@smithy/core/retry.d.ts +5 -0
  5797. package/node_modules/@smithy/core/retry.js +5 -0
  5798. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +39 -41
  5799. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
  5800. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +3 -3
  5801. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
  5802. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -3
  5803. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
  5804. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
  5805. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
  5806. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
  5807. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
  5808. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
  5809. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
  5810. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
  5811. package/node_modules/@smithy/credential-provider-imds/package.json +3 -5
  5812. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -7
  5813. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
  5814. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +1 -1
  5815. package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
  5816. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +6 -7
  5817. package/node_modules/@smithy/fetch-http-handler/package.json +4 -6
  5818. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +30 -4
  5819. package/node_modules/@smithy/is-array-buffer/package.json +12 -13
  5820. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +37 -0
  5821. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +6 -0
  5822. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +16 -0
  5823. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +17 -0
  5824. package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +16 -30
  5825. package/node_modules/@smithy/middleware-compression/dist-es/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.js +1 -1
  5826. package/node_modules/@smithy/middleware-compression/dist-es/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.js +1 -1
  5827. package/node_modules/@smithy/middleware-compression/dist-es/compressStream.js +1 -1
  5828. package/node_modules/@smithy/middleware-compression/dist-es/compressString.browser.js +1 -1
  5829. package/node_modules/@smithy/middleware-compression/dist-es/compressString.js +3 -3
  5830. package/node_modules/@smithy/middleware-compression/dist-es/compressionMiddleware.js +1 -1
  5831. package/node_modules/@smithy/middleware-compression/dist-es/isStreaming.js +1 -1
  5832. package/node_modules/@smithy/middleware-compression/dist-es/resolveCompressionConfig.js +1 -1
  5833. package/node_modules/@smithy/middleware-compression/dist-types/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.d.ts +1 -1
  5834. package/node_modules/@smithy/middleware-compression/dist-types/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.d.ts +1 -1
  5835. package/node_modules/@smithy/middleware-compression/dist-types/compressStream.d.ts +1 -1
  5836. package/node_modules/@smithy/middleware-compression/dist-types/getCompressionPlugin.d.ts +1 -1
  5837. package/node_modules/@smithy/middleware-compression/package.json +9 -10
  5838. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +45 -25
  5839. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
  5840. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +26 -16
  5841. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +9 -2
  5842. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +6 -4
  5843. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +1 -1
  5844. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
  5845. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
  5846. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +6 -5
  5847. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -0
  5848. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
  5849. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +7 -2
  5850. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +1 -2
  5851. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
  5852. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
  5853. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -1
  5854. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +1 -2
  5855. package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
  5856. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
  5857. package/node_modules/@smithy/node-http-handler/package.json +4 -5
  5858. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +167 -170
  5859. package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
  5860. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +3 -4
  5861. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
  5862. package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
  5863. package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
  5864. package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
  5865. package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
  5866. package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
  5867. package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
  5868. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +1 -2
  5869. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +1 -1
  5870. package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
  5871. package/node_modules/@smithy/signature-v4/package.json +3 -8
  5872. package/node_modules/@smithy/types/README.md +3 -3
  5873. package/node_modules/@smithy/types/dist-types/abort.d.ts +4 -6
  5874. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +6 -4
  5875. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +7 -10
  5876. package/node_modules/@smithy/types/dist-types/checksum.d.ts +4 -6
  5877. package/node_modules/@smithy/types/dist-types/client.d.ts +8 -8
  5878. package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
  5879. package/node_modules/@smithy/types/dist-types/crypto.d.ts +6 -8
  5880. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +6 -7
  5881. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +10 -10
  5882. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +9 -10
  5883. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
  5884. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +10 -10
  5885. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +2 -2
  5886. package/node_modules/@smithy/types/dist-types/http.d.ts +18 -21
  5887. package/node_modules/@smithy/types/dist-types/logger.d.ts +2 -2
  5888. package/node_modules/@smithy/types/dist-types/middleware.d.ts +28 -27
  5889. package/node_modules/@smithy/types/dist-types/pagination.d.ts +4 -4
  5890. package/node_modules/@smithy/types/dist-types/serde.d.ts +10 -10
  5891. package/node_modules/@smithy/types/dist-types/shapes.d.ts +9 -12
  5892. package/node_modules/@smithy/types/dist-types/signature.d.ts +4 -4
  5893. package/node_modules/@smithy/types/dist-types/stream.d.ts +2 -2
  5894. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +7 -11
  5895. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +23 -29
  5896. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +9 -19
  5897. package/node_modules/@smithy/types/dist-types/transfer.d.ts +2 -1
  5898. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +4 -4
  5899. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +14 -18
  5900. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +2 -2
  5901. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +12 -12
  5902. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +14 -9
  5903. package/node_modules/@smithy/types/dist-types/uri.d.ts +2 -2
  5904. package/node_modules/@smithy/types/dist-types/util.d.ts +28 -28
  5905. package/node_modules/@smithy/types/package.json +1 -1
  5906. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +44 -17
  5907. package/node_modules/@smithy/util-buffer-from/package.json +14 -15
  5908. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +60 -27
  5909. package/node_modules/@smithy/util-utf8/package.json +13 -14
  5910. package/node_modules/fast-xml-builder/CHANGELOG.md +11 -0
  5911. package/node_modules/fast-xml-builder/README.md +53 -2
  5912. package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
  5913. package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
  5914. package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
  5915. package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
  5916. package/node_modules/fast-xml-builder/package.json +3 -2
  5917. package/node_modules/fast-xml-builder/src/fxb.d.ts +93 -3
  5918. package/node_modules/fast-xml-builder/src/fxb.js +100 -33
  5919. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +91 -37
  5920. package/node_modules/fast-xml-parser/CHANGELOG.md +7 -0
  5921. package/node_modules/fast-xml-parser/README.md +0 -3
  5922. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
  5923. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
  5924. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
  5925. package/node_modules/fast-xml-parser/lib/fxp.d.cts +1 -0
  5926. package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
  5927. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
  5928. package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
  5929. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
  5930. package/node_modules/fast-xml-parser/package.json +2 -4
  5931. package/node_modules/fast-xml-parser/src/fxp.d.ts +1 -0
  5932. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +1 -1
  5933. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +4 -0
  5934. package/node_modules/strnum/CHANGELOG.md +3 -0
  5935. package/node_modules/strnum/package.json +3 -2
  5936. package/node_modules/strnum/strnum.js +12 -10
  5937. package/node_modules/xml-naming/README.md +189 -0
  5938. package/node_modules/xml-naming/package.json +54 -0
  5939. package/node_modules/xml-naming/src/index.d.ts +74 -0
  5940. package/node_modules/xml-naming/src/index.js +270 -0
  5941. package/package.json +10 -10
  5942. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  5943. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
  5944. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  5945. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  5946. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
  5947. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  5948. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
  5949. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  5950. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  5951. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  5952. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  5953. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
  5954. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
  5955. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/README.md +0 -4
  5956. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  5957. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  5958. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  5959. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  5960. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  5961. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  5962. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  5963. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  5964. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  5965. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  5966. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  5967. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/package.json +0 -66
  5968. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  5969. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
  5970. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  5971. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  5972. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  5973. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  5974. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
  5975. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  5976. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
  5977. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  5978. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  5979. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  5980. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  5981. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
  5982. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
  5983. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
  5984. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  5985. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  5986. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  5987. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  5988. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  5989. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  5990. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  5991. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  5992. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  5993. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  5994. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  5995. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  5996. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  5997. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  5998. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  5999. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  6000. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  6001. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  6002. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  6003. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  6004. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  6005. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  6006. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  6007. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  6008. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
  6009. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  6010. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
  6011. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  6012. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  6013. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  6014. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  6015. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
  6016. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  6017. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
  6018. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  6019. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  6020. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  6021. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  6022. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
  6023. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
  6024. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
  6025. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  6026. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  6027. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  6028. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  6029. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  6030. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  6031. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  6032. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  6033. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  6034. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  6035. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  6036. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  6037. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  6038. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  6039. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  6040. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  6041. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  6042. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  6043. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  6044. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  6045. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  6046. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  6047. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  6048. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  6049. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
  6050. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
  6051. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +0 -201
  6052. package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
  6053. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -41
  6054. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
  6055. package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
  6056. package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
  6057. package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
  6058. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -48
  6059. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
  6060. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
  6061. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
  6062. package/node_modules/@aws-sdk/middleware-logger/package.json +0 -59
  6063. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +0 -201
  6064. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +0 -17
  6065. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +0 -29
  6066. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +0 -33
  6067. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +0 -5
  6068. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +0 -2
  6069. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +0 -29
  6070. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +0 -2
  6071. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +0 -2
  6072. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +0 -63
  6073. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +0 -201
  6074. package/node_modules/@aws-sdk/middleware-user-agent/README.md +0 -4
  6075. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +0 -194
  6076. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +0 -49
  6077. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +0 -2
  6078. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +0 -82
  6079. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +0 -2
  6080. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +0 -2
  6081. package/node_modules/@aws-sdk/middleware-user-agent/package.json +0 -63
  6082. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
  6083. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +0 -100
  6084. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
  6085. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
  6086. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
  6087. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
  6088. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
  6089. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
  6090. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
  6091. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
  6092. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
  6093. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +0 -90
  6094. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
  6095. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
  6096. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
  6097. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
  6098. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
  6099. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
  6100. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
  6101. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
  6102. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
  6103. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +0 -80
  6104. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
  6105. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
  6106. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
  6107. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
  6108. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
  6109. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
  6110. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
  6111. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
  6112. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
  6113. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +0 -80
  6114. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
  6115. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
  6116. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
  6117. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
  6118. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
  6119. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
  6120. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
  6121. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
  6122. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -55
  6123. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
  6124. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -144
  6125. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
  6126. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +0 -150
  6127. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
  6128. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
  6129. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -96
  6130. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
  6131. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -74
  6132. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
  6133. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -57
  6134. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
  6135. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
  6136. package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
  6137. package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -19
  6138. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -38
  6139. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +0 -20
  6140. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +0 -6
  6141. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -3
  6142. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +0 -2
  6143. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +0 -16
  6144. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -3
  6145. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +0 -15
  6146. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +0 -14
  6147. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -3
  6148. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +0 -11
  6149. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +0 -7
  6150. package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -62
  6151. package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
  6152. package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
  6153. package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
  6154. package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
  6155. package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
  6156. package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
  6157. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -406
  6158. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -267
  6159. package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +0 -10
  6160. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -6
  6161. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
  6162. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
  6163. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
  6164. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -267
  6165. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -1
  6166. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +0 -21
  6167. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -1
  6168. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -1
  6169. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
  6170. package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +0 -2
  6171. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -6
  6172. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
  6173. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -1
  6174. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -1
  6175. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +0 -2
  6176. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
  6177. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
  6178. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
  6179. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -1
  6180. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -1
  6181. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -6
  6182. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -1
  6183. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -5
  6184. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -1
  6185. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
  6186. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -12
  6187. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -1
  6188. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -1
  6189. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -1
  6190. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -1
  6191. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -1
  6192. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
  6193. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -1
  6194. package/node_modules/@aws-sdk/util-endpoints/package.json +0 -60
  6195. package/node_modules/@aws-sdk/util-format-url/LICENSE +0 -201
  6196. package/node_modules/@aws-sdk/util-format-url/README.md +0 -4
  6197. package/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js +0 -34
  6198. package/node_modules/@aws-sdk/util-format-url/dist-es/index.js +0 -29
  6199. package/node_modules/@aws-sdk/util-format-url/package.json +0 -56
  6200. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
  6201. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -29
  6202. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
  6203. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +0 -57
  6204. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -58
  6205. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -22
  6206. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +0 -14
  6207. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +0 -9
  6208. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -55
  6209. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
  6210. package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -17
  6211. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -185
  6212. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +0 -75
  6213. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -2
  6214. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +0 -9
  6215. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -2
  6216. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +0 -13
  6217. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -2
  6218. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +0 -6
  6219. package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -69
  6220. package/node_modules/@smithy/chunked-blob-reader/LICENSE +0 -201
  6221. package/node_modules/@smithy/chunked-blob-reader/README.md +0 -10
  6222. package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +0 -13
  6223. package/node_modules/@smithy/chunked-blob-reader/dist-types/index.d.ts +0 -5
  6224. package/node_modules/@smithy/chunked-blob-reader/dist-types/ts3.4/index.d.ts +0 -5
  6225. package/node_modules/@smithy/chunked-blob-reader/package.json +0 -60
  6226. package/node_modules/@smithy/chunked-blob-reader-native/LICENSE +0 -201
  6227. package/node_modules/@smithy/chunked-blob-reader-native/README.md +0 -10
  6228. package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +0 -32
  6229. package/node_modules/@smithy/chunked-blob-reader-native/dist-es/index.js +0 -27
  6230. package/node_modules/@smithy/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +0 -4
  6231. package/node_modules/@smithy/chunked-blob-reader-native/package.json +0 -61
  6232. package/node_modules/@smithy/config-resolver/LICENSE +0 -201
  6233. package/node_modules/@smithy/config-resolver/README.md +0 -17
  6234. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
  6235. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
  6236. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
  6237. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
  6238. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
  6239. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
  6240. package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
  6241. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
  6242. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
  6243. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
  6244. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
  6245. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
  6246. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
  6247. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
  6248. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
  6249. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  6250. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  6251. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
  6252. package/node_modules/@smithy/config-resolver/package.json +0 -65
  6253. package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
  6254. package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
  6255. package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
  6256. package/node_modules/@smithy/eventstream-codec/README.md +0 -17
  6257. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
  6258. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
  6259. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
  6260. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
  6261. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
  6262. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
  6263. package/node_modules/@smithy/eventstream-codec/package.json +0 -64
  6264. package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
  6265. package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
  6266. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
  6267. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
  6268. package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
  6269. package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
  6270. package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
  6271. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
  6272. package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
  6273. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
  6274. package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
  6275. package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
  6276. package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
  6277. package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
  6278. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
  6279. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
  6280. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
  6281. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
  6282. package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
  6283. package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
  6284. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
  6285. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
  6286. package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
  6287. package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
  6288. package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
  6289. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
  6290. package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
  6291. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
  6292. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
  6293. package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
  6294. package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
  6295. package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
  6296. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
  6297. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
  6298. package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
  6299. package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
  6300. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
  6301. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
  6302. package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
  6303. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
  6304. package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
  6305. package/node_modules/@smithy/hash-blob-browser/LICENSE +0 -201
  6306. package/node_modules/@smithy/hash-blob-browser/README.md +0 -17
  6307. package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +0 -13
  6308. package/node_modules/@smithy/hash-blob-browser/dist-es/index.js +0 -8
  6309. package/node_modules/@smithy/hash-blob-browser/package.json +0 -69
  6310. package/node_modules/@smithy/hash-node/LICENSE +0 -201
  6311. package/node_modules/@smithy/hash-node/README.md +0 -17
  6312. package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
  6313. package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
  6314. package/node_modules/@smithy/hash-node/package.json +0 -64
  6315. package/node_modules/@smithy/hash-stream-node/LICENSE +0 -201
  6316. package/node_modules/@smithy/hash-stream-node/README.md +0 -17
  6317. package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +0 -67
  6318. package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +0 -18
  6319. package/node_modules/@smithy/hash-stream-node/dist-es/fileStreamHasher.js +0 -24
  6320. package/node_modules/@smithy/hash-stream-node/dist-es/index.js +0 -2
  6321. package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +0 -11
  6322. package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +0 -6
  6323. package/node_modules/@smithy/hash-stream-node/dist-types/index.d.ts +0 -8
  6324. package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +0 -6
  6325. package/node_modules/@smithy/hash-stream-node/package.json +0 -64
  6326. package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
  6327. package/node_modules/@smithy/invalid-dependency/README.md +0 -17
  6328. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
  6329. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
  6330. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
  6331. package/node_modules/@smithy/invalid-dependency/package.json +0 -60
  6332. package/node_modules/@smithy/md5-js/LICENSE +0 -201
  6333. package/node_modules/@smithy/md5-js/README.md +0 -17
  6334. package/node_modules/@smithy/md5-js/dist-cjs/index.js +0 -176
  6335. package/node_modules/@smithy/md5-js/dist-es/index.js +0 -168
  6336. package/node_modules/@smithy/md5-js/package.json +0 -65
  6337. package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
  6338. package/node_modules/@smithy/middleware-content-length/README.md +0 -17
  6339. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
  6340. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
  6341. package/node_modules/@smithy/middleware-content-length/package.json +0 -63
  6342. package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
  6343. package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
  6344. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
  6345. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
  6346. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
  6347. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
  6348. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
  6349. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
  6350. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
  6351. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
  6352. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
  6353. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
  6354. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
  6355. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
  6356. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
  6357. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  6358. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
  6359. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
  6360. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
  6361. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
  6362. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
  6363. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
  6364. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
  6365. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
  6366. package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
  6367. package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
  6368. package/node_modules/@smithy/middleware-retry/README.md +0 -24
  6369. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
  6370. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
  6371. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
  6372. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
  6373. package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
  6374. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
  6375. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
  6376. package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
  6377. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
  6378. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
  6379. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
  6380. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
  6381. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
  6382. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
  6383. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
  6384. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
  6385. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  6386. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  6387. package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
  6388. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
  6389. package/node_modules/@smithy/middleware-retry/package.json +0 -79
  6390. package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
  6391. package/node_modules/@smithy/middleware-serde/README.md +0 -17
  6392. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
  6393. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
  6394. package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
  6395. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
  6396. package/node_modules/@smithy/middleware-serde/package.json +0 -65
  6397. package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
  6398. package/node_modules/@smithy/middleware-stack/README.md +0 -91
  6399. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
  6400. package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
  6401. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
  6402. package/node_modules/@smithy/middleware-stack/package.json +0 -63
  6403. package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
  6404. package/node_modules/@smithy/node-config-provider/README.md +0 -17
  6405. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
  6406. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
  6407. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
  6408. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
  6409. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
  6410. package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
  6411. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
  6412. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
  6413. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
  6414. package/node_modules/@smithy/node-config-provider/package.json +0 -65
  6415. package/node_modules/@smithy/property-provider/LICENSE +0 -201
  6416. package/node_modules/@smithy/property-provider/README.md +0 -17
  6417. package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
  6418. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
  6419. package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
  6420. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
  6421. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
  6422. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
  6423. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
  6424. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
  6425. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
  6426. package/node_modules/@smithy/property-provider/package.json +0 -60
  6427. package/node_modules/@smithy/protocol-http/LICENSE +0 -201
  6428. package/node_modules/@smithy/protocol-http/README.md +0 -17
  6429. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
  6430. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
  6431. package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
  6432. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
  6433. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
  6434. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
  6435. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
  6436. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
  6437. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
  6438. package/node_modules/@smithy/protocol-http/package.json +0 -61
  6439. package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
  6440. package/node_modules/@smithy/querystring-builder/README.md +0 -17
  6441. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
  6442. package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
  6443. package/node_modules/@smithy/querystring-builder/package.json +0 -60
  6444. package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
  6445. package/node_modules/@smithy/querystring-parser/README.md +0 -17
  6446. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
  6447. package/node_modules/@smithy/querystring-parser/package.json +0 -60
  6448. package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
  6449. package/node_modules/@smithy/service-error-classification/README.md +0 -17
  6450. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -83
  6451. package/node_modules/@smithy/service-error-classification/package.json +0 -59
  6452. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
  6453. package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
  6454. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
  6455. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
  6456. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
  6457. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
  6458. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
  6459. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
  6460. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
  6461. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
  6462. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
  6463. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
  6464. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
  6465. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
  6466. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
  6467. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
  6468. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
  6469. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
  6470. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
  6471. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
  6472. package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
  6473. package/node_modules/@smithy/smithy-client/LICENSE +0 -201
  6474. package/node_modules/@smithy/smithy-client/README.md +0 -17
  6475. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -642
  6476. package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
  6477. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
  6478. package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -131
  6479. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
  6480. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
  6481. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
  6482. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
  6483. package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
  6484. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
  6485. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
  6486. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
  6487. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
  6488. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
  6489. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
  6490. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
  6491. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
  6492. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
  6493. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
  6494. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
  6495. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
  6496. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
  6497. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
  6498. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
  6499. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
  6500. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
  6501. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
  6502. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
  6503. package/node_modules/@smithy/smithy-client/package.json +0 -69
  6504. package/node_modules/@smithy/url-parser/LICENSE +0 -201
  6505. package/node_modules/@smithy/url-parser/README.md +0 -17
  6506. package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
  6507. package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
  6508. package/node_modules/@smithy/url-parser/package.json +0 -61
  6509. package/node_modules/@smithy/util-base64/LICENSE +0 -201
  6510. package/node_modules/@smithy/util-base64/README.md +0 -4
  6511. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
  6512. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
  6513. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
  6514. package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
  6515. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
  6516. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
  6517. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
  6518. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
  6519. package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
  6520. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
  6521. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
  6522. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
  6523. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
  6524. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
  6525. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
  6526. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
  6527. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
  6528. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
  6529. package/node_modules/@smithy/util-base64/package.json +0 -74
  6530. package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
  6531. package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
  6532. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
  6533. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
  6534. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
  6535. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  6536. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
  6537. package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
  6538. package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
  6539. package/node_modules/@smithy/util-body-length-node/README.md +0 -12
  6540. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
  6541. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
  6542. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
  6543. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
  6544. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  6545. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
  6546. package/node_modules/@smithy/util-body-length-node/package.json +0 -62
  6547. package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
  6548. package/node_modules/@smithy/util-config-provider/README.md +0 -4
  6549. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
  6550. package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
  6551. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
  6552. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
  6553. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
  6554. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
  6555. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
  6556. package/node_modules/@smithy/util-config-provider/package.json +0 -63
  6557. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
  6558. package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
  6559. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
  6560. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
  6561. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
  6562. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
  6563. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
  6564. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
  6565. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
  6566. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
  6567. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
  6568. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
  6569. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  6570. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
  6571. package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
  6572. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
  6573. package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
  6574. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
  6575. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
  6576. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
  6577. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
  6578. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
  6579. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  6580. package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
  6581. package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
  6582. package/node_modules/@smithy/util-endpoints/README.md +0 -17
  6583. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -573
  6584. package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -8
  6585. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -46
  6586. package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
  6587. package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +0 -7
  6588. package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
  6589. package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -8
  6590. package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
  6591. package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
  6592. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -11
  6593. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
  6594. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
  6595. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
  6596. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
  6597. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
  6598. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
  6599. package/node_modules/@smithy/util-endpoints/package.json +0 -68
  6600. package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
  6601. package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
  6602. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
  6603. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
  6604. package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
  6605. package/node_modules/@smithy/util-middleware/LICENSE +0 -201
  6606. package/node_modules/@smithy/util-middleware/README.md +0 -17
  6607. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
  6608. package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
  6609. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
  6610. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
  6611. package/node_modules/@smithy/util-middleware/package.json +0 -66
  6612. package/node_modules/@smithy/util-retry/LICENSE +0 -201
  6613. package/node_modules/@smithy/util-retry/README.md +0 -78
  6614. package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
  6615. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -36
  6616. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
  6617. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -111
  6618. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -93
  6619. package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
  6620. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
  6621. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
  6622. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
  6623. package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
  6624. package/node_modules/@smithy/util-retry/package.json +0 -70
  6625. package/node_modules/@smithy/util-stream/LICENSE +0 -201
  6626. package/node_modules/@smithy/util-stream/README.md +0 -6
  6627. package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
  6628. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
  6629. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
  6630. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
  6631. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
  6632. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
  6633. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
  6634. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
  6635. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
  6636. package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
  6637. package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
  6638. package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
  6639. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
  6640. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
  6641. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
  6642. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
  6643. package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
  6644. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
  6645. package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
  6646. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
  6647. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
  6648. package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
  6649. package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
  6650. package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
  6651. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
  6652. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
  6653. package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
  6654. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
  6655. package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
  6656. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
  6657. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
  6658. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
  6659. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
  6660. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
  6661. package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
  6662. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
  6663. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
  6664. package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
  6665. package/node_modules/@smithy/util-stream/package.json +0 -98
  6666. package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
  6667. package/node_modules/@smithy/util-uri-escape/README.md +0 -10
  6668. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
  6669. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
  6670. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
  6671. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
  6672. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
  6673. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
  6674. package/node_modules/@smithy/util-uri-escape/package.json +0 -60
  6675. package/node_modules/@smithy/util-waiter/LICENSE +0 -201
  6676. package/node_modules/@smithy/util-waiter/README.md +0 -17
  6677. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +0 -204
  6678. package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +0 -48
  6679. package/node_modules/@smithy/util-waiter/dist-es/index.js +0 -2
  6680. package/node_modules/@smithy/util-waiter/dist-es/poller.js +0 -87
  6681. package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +0 -2
  6682. package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +0 -11
  6683. package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +0 -2
  6684. package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +0 -11
  6685. package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +0 -8
  6686. package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +0 -8
  6687. package/node_modules/@smithy/util-waiter/package.json +0 -62
  6688. package/node_modules/@smithy/uuid/LICENSE +0 -201
  6689. package/node_modules/@smithy/uuid/README.md +0 -10
  6690. package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
  6691. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
  6692. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
  6693. package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
  6694. package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
  6695. package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
  6696. package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
  6697. package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
  6698. package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
  6699. package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
  6700. package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
  6701. package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
  6702. package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
  6703. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
  6704. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
  6705. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
  6706. package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
  6707. package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
  6708. package/node_modules/@smithy/uuid/package.json +0 -66
  6709. /package/node_modules/@aws-sdk/{middleware-logger/dist-es → core/dist-es/submodules/client/middleware-logger}/loggerMiddleware.js +0 -0
  6710. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/configuration.js +0 -0
  6711. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/getRecursionDetectionPlugin.js +0 -0
  6712. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.js +0 -0
  6713. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.js +0 -0
  6714. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/configurations.js +0 -0
  6715. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/constants.js +0 -0
  6716. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/encode-features.js +0 -0
  6717. /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/extensions/index.js → core/dist-es/submodules/client/region-config-resolver/extensions.js} +0 -0
  6718. /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.js +0 -0
  6719. /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.js +0 -0
  6720. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/parseArn.js +0 -0
  6721. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointRuleObject.js +0 -0
  6722. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/ErrorRuleObject.js +0 -0
  6723. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/RuleSetObject.js +0 -0
  6724. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/TreeRuleObject.js +0 -0
  6725. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/shared.js +0 -0
  6726. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/configurations.js +0 -0
  6727. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.js +0 -0
  6728. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.js} +0 -0
  6729. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.native.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.native.js} +0 -0
  6730. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/crt-availability.js +0 -0
  6731. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/defaultUserAgent.js +0 -0
  6732. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.js +0 -0
  6733. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.js +0 -0
  6734. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.js +0 -0
  6735. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.js +0 -0
  6736. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/is-crt-available.js +0 -0
  6737. /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
  6738. /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/index.d.ts → core/dist-types/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
  6739. /package/node_modules/@aws-sdk/{middleware-logger/dist-types → core/dist-types/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
  6740. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
  6741. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts → core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
  6742. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
  6743. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
  6744. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
  6745. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
  6746. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
  6747. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
  6748. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
  6749. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
  6750. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/extensions/index.d.ts → core/dist-types/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
  6751. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
  6752. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
  6753. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
  6754. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
  6755. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
  6756. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
  6757. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types → core/dist-types/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
  6758. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
  6759. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.native.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
  6760. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
  6761. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
  6762. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.d.ts +0 -0
  6763. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
  6764. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.d.ts +0 -0
  6765. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.d.ts +0 -0
  6766. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getTypeScriptUserAgentPair.d.ts +0 -0
  6767. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
  6768. /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/index.d.ts → core/dist-types/submodules/util/util-arn-parser/arn.d.ts} +0 -0
  6769. /package/node_modules/@aws-sdk/{util-format-url/dist-types/index.d.ts → core/dist-types/submodules/util/util-format-url/format-url.d.ts} +0 -0
  6770. /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
  6771. /package/node_modules/@aws-sdk/{middleware-logger/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
  6772. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
  6773. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
  6774. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
  6775. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
  6776. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
  6777. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
  6778. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
  6779. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
  6780. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
  6781. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
  6782. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/extensions/index.d.ts → core/dist-types/ts3.4/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
  6783. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
  6784. /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
  6785. /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
  6786. /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
  6787. /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
  6788. /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
  6789. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
  6790. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
  6791. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.native.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
  6792. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
  6793. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
  6794. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.d.ts +0 -0
  6795. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
  6796. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.d.ts +0 -0
  6797. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.d.ts +0 -0
  6798. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getTypeScriptUserAgentPair.d.ts +0 -0
  6799. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
  6800. /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-arn-parser/arn.d.ts} +0 -0
  6801. /package/node_modules/@aws-sdk/{util-format-url/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts} +0 -0
  6802. /package/node_modules/@smithy/{chunked-blob-reader/dist-es/index.js → core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js} +0 -0
  6803. /package/node_modules/@smithy/{hash-stream-node/dist-es → core/dist-es/submodules/checksum/hash-stream-node}/readableStreamHasher.js +0 -0
  6804. /package/node_modules/@smithy/{md5-js/dist-es → core/dist-es/submodules/checksum/md5-js}/constants.js +0 -0
  6805. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
  6806. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
  6807. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
  6808. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
  6809. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
  6810. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
  6811. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
  6812. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
  6813. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
  6814. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
  6815. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
  6816. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
  6817. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
  6818. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-value-from-text-node.js +0 -0
  6819. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
  6820. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
  6821. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
  6822. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
  6823. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
  6824. /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/getSmithyContext.js +0 -0
  6825. /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/normalizeProvider.js +0 -0
  6826. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/circularReplacer.js +0 -0
  6827. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/sleep.js +0 -0
  6828. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/validate.js +0 -0
  6829. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/waiter.js +0 -0
  6830. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
  6831. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/config.js +0 -0
  6832. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
  6833. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
  6834. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
  6835. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
  6836. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
  6837. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
  6838. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
  6839. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
  6840. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
  6841. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
  6842. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
  6843. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
  6844. /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/constants.js +0 -0
  6845. /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
  6846. /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
  6847. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
  6848. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
  6849. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
  6850. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
  6851. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
  6852. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
  6853. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
  6854. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
  6855. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
  6856. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
  6857. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
  6858. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
  6859. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
  6860. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
  6861. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
  6862. /package/node_modules/@smithy/{middleware-retry/dist-es/retry-pre-sra-deprecated → core/dist-es/submodules/config/shared-ini-file-loader}/types.js +0 -0
  6863. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
  6864. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
  6865. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
  6866. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
  6867. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
  6868. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
  6869. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/index.js +0 -0
  6870. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
  6871. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/types.js +0 -0
  6872. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.js +0 -0
  6873. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
  6874. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
  6875. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/index.js +0 -0
  6876. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
  6877. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/decideEndpoint.js +0 -0
  6878. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
  6879. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
  6880. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/coalesce.js +0 -0
  6881. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttr.js +0 -0
  6882. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
  6883. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/index.js +0 -0
  6884. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
  6885. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
  6886. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.js +0 -0
  6887. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/ite.js +0 -0
  6888. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
  6889. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
  6890. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/split.js +0 -0
  6891. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
  6892. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/substring.js +0 -0
  6893. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
  6894. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/resolveEndpoint.js +0 -0
  6895. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
  6896. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
  6897. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
  6898. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
  6899. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
  6900. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
  6901. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/index.js +0 -0
  6902. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
  6903. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
  6904. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
  6905. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/endpointFunctions.js +0 -0
  6906. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateCondition.js +0 -0
  6907. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateConditions.js +0 -0
  6908. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.js +0 -0
  6909. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateErrorRule.js +0 -0
  6910. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateRules.js +0 -0
  6911. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.js +0 -0
  6912. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
  6913. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointHeaders.js +0 -0
  6914. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperties.js +0 -0
  6915. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
  6916. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
  6917. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getReferenceValue.js +0 -0
  6918. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/index.js +0 -0
  6919. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/EventStreamCodec.js +0 -0
  6920. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
  6921. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
  6922. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
  6923. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
  6924. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
  6925. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/TestVectors.fixture.js +0 -0
  6926. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/splitMessage.js +0 -0
  6927. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.js +0 -0
  6928. /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
  6929. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
  6930. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
  6931. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
  6932. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
  6933. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
  6934. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
  6935. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpRequest.js +0 -0
  6936. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpResponse.js +0 -0
  6937. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/isValidHostname.js +0 -0
  6938. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
  6939. /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/protocols/querystring-parser/parseQueryString.js} +0 -0
  6940. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
  6941. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
  6942. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
  6943. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
  6944. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
  6945. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
  6946. /package/node_modules/@smithy/{service-error-classification/dist-es → core/dist-es/submodules/retry/service-error-classification}/constants.js +0 -0
  6947. /package/node_modules/@smithy/{service-error-classification/dist-es/index.js → core/dist-es/submodules/retry/service-error-classification/service-error-classification.js} +0 -0
  6948. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
  6949. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryToken.js +0 -0
  6950. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
  6951. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
  6952. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
  6953. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
  6954. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js → @smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js} +0 -0
  6955. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
  6956. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
  6957. /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
  6958. /package/node_modules/@smithy/{util-body-length-browser/dist-es/calculateBodyLength.js → core/dist-es/submodules/serde/util-body-length/calculateBodyLength.browser.js} +0 -0
  6959. /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
  6960. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
  6961. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
  6962. /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
  6963. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
  6964. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
  6965. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
  6966. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
  6967. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
  6968. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/fromUtf8.browser.js +0 -0
  6969. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUint8Array.js +0 -0
  6970. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUtf8.browser.js +0 -0
  6971. /package/node_modules/@smithy/{chunked-blob-reader-native/dist-types/index.d.ts → core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts} +0 -0
  6972. /package/node_modules/@smithy/{hash-blob-browser/dist-types/index.d.ts → core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts} +0 -0
  6973. /package/node_modules/@smithy/{md5-js/dist-types → core/dist-types/submodules/checksum/md5-js}/constants.d.ts +0 -0
  6974. /package/node_modules/@smithy/{md5-js/dist-types/index.d.ts → core/dist-types/submodules/checksum/md5-js/md5.d.ts} +0 -0
  6975. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
  6976. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
  6977. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
  6978. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
  6979. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
  6980. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
  6981. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
  6982. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
  6983. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
  6984. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
  6985. /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/client/util-middleware}/normalizeProvider.d.ts +0 -0
  6986. /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/circularReplacer.d.ts +0 -0
  6987. /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/utils/sleep.d.ts +0 -0
  6988. /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/waiter.d.ts +0 -0
  6989. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
  6990. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
  6991. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
  6992. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
  6993. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
  6994. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
  6995. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
  6996. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
  6997. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
  6998. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
  6999. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
  7000. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
  7001. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
  7002. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
  7003. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
  7004. /package/node_modules/@smithy/{util-defaults-mode-node/dist-types → core/dist-types/submodules/config/defaults-mode}/constants.d.ts +0 -0
  7005. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
  7006. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
  7007. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
  7008. /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
  7009. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
  7010. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
  7011. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
  7012. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
  7013. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
  7014. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
  7015. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
  7016. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
  7017. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
  7018. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
  7019. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
  7020. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
  7021. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
  7022. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
  7023. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
  7024. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
  7025. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
  7026. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
  7027. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/index.d.ts +0 -0
  7028. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
  7029. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/types.d.ts +0 -0
  7030. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.d.ts +0 -0
  7031. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
  7032. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/index.d.ts +0 -0
  7033. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
  7034. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
  7035. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/coalesce.d.ts +0 -0
  7036. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
  7037. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
  7038. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/index.d.ts +0 -0
  7039. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
  7040. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
  7041. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.d.ts +0 -0
  7042. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/ite.d.ts +0 -0
  7043. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
  7044. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/split.d.ts +0 -0
  7045. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
  7046. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
  7047. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
  7048. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
  7049. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
  7050. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
  7051. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
  7052. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
  7053. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
  7054. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/index.d.ts +0 -0
  7055. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/shared.d.ts +0 -0
  7056. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
  7057. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
  7058. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/endpointFunctions.d.ts +0 -0
  7059. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateConditions.d.ts +0 -0
  7060. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
  7061. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
  7062. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
  7063. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
  7064. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getReferenceValue.d.ts +0 -0
  7065. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/index.d.ts +0 -0
  7066. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
  7067. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
  7068. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
  7069. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
  7070. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
  7071. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
  7072. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
  7073. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/TestVectors.fixture.d.ts +0 -0
  7074. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
  7075. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.d.ts +0 -0
  7076. /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.d.ts +0 -0
  7077. /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
  7078. /package/node_modules/@smithy/{middleware-content-length/dist-types/index.d.ts → core/dist-types/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts} +0 -0
  7079. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
  7080. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/httpResponse.d.ts +0 -0
  7081. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/isValidHostname.d.ts +0 -0
  7082. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
  7083. /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
  7084. /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-parser/parseQueryString.d.ts} +0 -0
  7085. /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/url-parser/parseUrl.d.ts} +0 -0
  7086. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
  7087. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
  7088. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
  7089. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
  7090. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
  7091. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
  7092. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
  7093. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
  7094. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
  7095. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
  7096. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
  7097. /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
  7098. /package/node_modules/@smithy/{service-error-classification/dist-types/index.d.ts → core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts} +0 -0
  7099. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/ConfiguredRetryStrategy.d.ts +0 -0
  7100. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
  7101. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
  7102. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryToken.d.ts +0 -0
  7103. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/StandardRetryStrategy.d.ts +0 -0
  7104. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
  7105. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
  7106. /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
  7107. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts → @smithy/core/dist-types/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
  7108. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
  7109. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
  7110. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
  7111. /package/node_modules/@smithy/{util-base64/dist-types/constants.browser.d.ts → core/dist-types/submodules/serde/util-base64/constants-for-browser.d.ts} +0 -0
  7112. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
  7113. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
  7114. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
  7115. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
  7116. /package/node_modules/@smithy/{util-body-length-browser/dist-types/calculateBodyLength.d.ts → core/dist-types/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts} +0 -0
  7117. /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
  7118. /package/node_modules/@smithy/{util-hex-encoding/dist-types/index.d.ts → core/dist-types/submodules/serde/util-hex-encoding/hex-encoding.d.ts} +0 -0
  7119. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
  7120. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
  7121. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
  7122. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
  7123. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
  7124. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
  7125. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
  7126. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
  7127. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
  7128. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
  7129. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
  7130. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
  7131. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.browser.js +0 -0
  7132. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.js +0 -0
  7133. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUint8Array.js +0 -0
  7134. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.browser.js +0 -0
  7135. /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.js +0 -0
@@ -61,5 +61,5 @@ class CopyImageStep extends automation_step_1.AutomationStep {
61
61
  }
62
62
  exports.CopyImageStep = CopyImageStep;
63
63
  _a = JSII_RTTI_SYMBOL_1;
64
- CopyImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CopyImageStep", version: "0.0.59" };
64
+ CopyImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CopyImageStep", version: "0.0.61" };
65
65
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29weS1pbWFnZS1zdGVwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3BhcmVudC1zdGVwcy9hdXRvbWF0aW9uL2NvcHktaW1hZ2Utc3RlcC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUNBLHNEQUFzRDtBQUt0RCx1RkFBaUY7QUFDakYsd0RBQXlFO0FBMkN6RTs7O0dBR0c7QUFDSCxNQUFhLGFBQWMsU0FBUSxnQ0FBYztJQVUvQyxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQXlCO1FBQ2pFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBVmpCLFdBQU0sR0FBVyxlQUFlLENBQUM7UUFXeEMsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUN6QyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsUUFBUSxDQUFDO1FBQy9CLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDLFdBQVcsQ0FBQztJQUN2QyxDQUFDO0lBRU0sV0FBVztRQUNoQixPQUFPLENBQUM7Z0JBQ04sVUFBVSxFQUFFLHdCQUFZLENBQUMsTUFBTTtnQkFDL0IsSUFBSSxFQUFFLFNBQVM7Z0JBQ2YsUUFBUSxFQUFFLFdBQVc7YUFDdEIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixJQUFJLEVBQUUsWUFBWTtnQkFDbEIsUUFBUSxFQUFFLGNBQWM7YUFDekIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBRztZQUNiLElBQUksQ0FBQyxZQUFZO1lBQ2pCLElBQUksQ0FBQyxhQUFhO1lBQ2xCLElBQUksQ0FBQyxTQUFTO1lBQ2QsSUFBSSxDQUFDLGdCQUFnQjtZQUNyQixJQUFJLENBQUMsU0FBUztZQUNkLElBQUksQ0FBQyxRQUFRO1lBQ2IsSUFBSSxDQUFDLFdBQVc7U0FDakIsQ0FBQztRQUVGLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sUUFBUSxHQUFpRDtZQUM3RCxZQUFZLEVBQUUsSUFBSSxDQUFDLFlBQVk7WUFDL0IsYUFBYSxFQUFFLElBQUksQ0FBQyxhQUFhO1lBQ2pDLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixnQkFBZ0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO1lBQ3ZDLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXO1NBQzlCLENBQUM7UUFDRixNQUFNLE9BQU8sR0FBRyxJQUFBLG9EQUF1QixFQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDO1FBQ2xFLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN4QyxDQUFDOztBQTNESCxzQ0E0REMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IERhdGFUeXBlRW51bSB9IGZyb20gJy4uLy4uL2RvbWFpbi9kYXRhLXR5cGUnO1xuaW1wb3J0IHsgT3V0cHV0IH0gZnJvbSAnLi4vLi4vZG9tYWluL291dHB1dCc7XG5pbXBvcnQgeyBJQm9vbGVhblZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy9ib29sZWFuLXZhcmlhYmxlJztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IElHZW5lcmljVmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3ZhcmlhYmxlJztcbmltcG9ydCB7IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkIH0gZnJvbSAnLi4vLi4vdXRpbHMvcHJ1bmUtYW5kLXRyYW5zZm9ybS1yZWNvcmQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAsIEF1dG9tYXRpb25TdGVwUHJvcHMgfSBmcm9tICcuLi9hdXRvbWF0aW9uLXN0ZXAnO1xuXG4vKipcbiAqIFByb3BlcnRpZXMgZm9yIENvcHlJbWFnZVN0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBDb3B5SW1hZ2VTdGVwUHJvcHMgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcFByb3BzIHtcblxuICAvKipcbiAgICAgKiBUaGUgcmVnaW9uIHdoZXJlIHRoZSBzb3VyY2UgQU1JIGV4aXN0cy5cbiAgICAgKi9cbiAgcmVhZG9ubHkgc291cmNlUmVnaW9uOiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogVGhlIEFNSSBJRCB0byBjb3B5IGZyb20gdGhlIHNvdXJjZSBSZWdpb24uXG4gICAgICovXG4gIHJlYWRvbmx5IHNvdXJjZUltYWdlSWQ6IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiBUaGUgbmFtZSBmb3IgdGhlIGltYWdlLlxuICAgICAqL1xuICByZWFkb25seSBpbWFnZU5hbWU6IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIEEgZGVzY3JpcHRpb24gb2YgdGhlIGltYWdlLlxuICAgICAqL1xuICByZWFkb25seSBpbWFnZURlc2NyaXB0aW9uPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgRW5jcnlwdCB0aGUgdGFyZ2V0IEFNSS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgZW5jcnlwdGVkPzogSUJvb2xlYW5WYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBmdWxsIEFtYXpvbiBSZXNvdXJjZSBOYW1lIChBUk4pIG9mIHRoZSBBV1MgS01TIGtleSB0byB1c2Ugd2hlbiBlbmNyeXB0aW5nIHRoZSBzbmFwc2hvdHMgb2YgYW4gaW1hZ2UgZHVyaW5nIGEgY29weSBvcGVyYXRpb24uXG4gICAgICovXG4gIHJlYWRvbmx5IGttc0tleUlkPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgQSB1bmlxdWUsIGNhc2Utc2Vuc2l0aXZlIGlkZW50aWZpZXIgdGhhdCB5b3UgcHJvdmlkZSB0byBlbnN1cmUgcmVxdWVzdCBpZGVtcG90ZW5jeS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgY2xpZW50VG9rZW4/OiBJU3RyaW5nVmFyaWFibGU7XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW5hdGlvbiBmb3IgYXdzOmNvcHlJbWFnZVxuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWNvcHlpbWFnZS5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBDb3B5SW1hZ2VTdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuICByZWFkb25seSBhY3Rpb246IHN0cmluZyA9ICdhd3M6Y29weUltYWdlJztcbiAgcmVhZG9ubHkgc291cmNlUmVnaW9uOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHNvdXJjZUltYWdlSWQ6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgaW1hZ2VOYW1lOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGltYWdlRGVzY3JpcHRpb24/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGVuY3J5cHRlZD86IElCb29sZWFuVmFyaWFibGU7XG4gIHJlYWRvbmx5IGttc0tleUlkPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBjbGllbnRUb2tlbj86IElTdHJpbmdWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogQ29weUltYWdlU3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5zb3VyY2VSZWdpb24gPSBwcm9wcy5zb3VyY2VSZWdpb247XG4gICAgdGhpcy5zb3VyY2VJbWFnZUlkID0gcHJvcHMuc291cmNlSW1hZ2VJZDtcbiAgICB0aGlzLmltYWdlTmFtZSA9IHByb3BzLmltYWdlTmFtZTtcbiAgICB0aGlzLmltYWdlRGVzY3JpcHRpb24gPSBwcm9wcy5pbWFnZURlc2NyaXB0aW9uO1xuICAgIHRoaXMuZW5jcnlwdGVkID0gcHJvcHMuZW5jcnlwdGVkO1xuICAgIHRoaXMua21zS2V5SWQgPSBwcm9wcy5rbXNLZXlJZDtcbiAgICB0aGlzLmNsaWVudFRva2VuID0gcHJvcHMuY2xpZW50VG9rZW47XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbe1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdJbWFnZUlkJyxcbiAgICAgIHNlbGVjdG9yOiAnJC5JbWFnZUlkJyxcbiAgICB9LCB7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HLFxuICAgICAgbmFtZTogJ0ltYWdlU3RhdGUnLFxuICAgICAgc2VsZWN0b3I6ICckLkltYWdlU3RhdGUnLFxuICAgIH1dO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuc291cmNlUmVnaW9uLFxuICAgICAgdGhpcy5zb3VyY2VJbWFnZUlkLFxuICAgICAgdGhpcy5pbWFnZU5hbWUsXG4gICAgICB0aGlzLmltYWdlRGVzY3JpcHRpb24sXG4gICAgICB0aGlzLmVuY3J5cHRlZCxcbiAgICAgIHRoaXMua21zS2V5SWQsXG4gICAgICB0aGlzLmNsaWVudFRva2VuLFxuICAgIF07XG5cbiAgICByZXR1cm4gaW5wdXRzLmZsYXRNYXAoaSA9PiBpPy5yZXF1aXJlZElucHV0cygpID8/IFtdKTtcbiAgfVxuXG4gIHB1YmxpYyB0b1NzbUVudHJ5KCk6IFJlY29yZDxzdHJpbmcsIGFueT4ge1xuICAgIGNvbnN0IGVudHJ5TWFwOiBSZWNvcmQ8c3RyaW5nLCBJR2VuZXJpY1ZhcmlhYmxlIHwgdW5kZWZpbmVkPiA9IHtcbiAgICAgIFNvdXJjZVJlZ2lvbjogdGhpcy5zb3VyY2VSZWdpb24sXG4gICAgICBTb3VyY2VJbWFnZUlkOiB0aGlzLnNvdXJjZUltYWdlSWQsXG4gICAgICBJbWFnZU5hbWU6IHRoaXMuaW1hZ2VOYW1lLFxuICAgICAgSW1hZ2VEZXNjcmlwdGlvbjogdGhpcy5pbWFnZURlc2NyaXB0aW9uLFxuICAgICAgRW5jcnlwdGVkOiB0aGlzLmVuY3J5cHRlZCxcbiAgICAgIEttc0tleUlkOiB0aGlzLmttc0tleUlkLFxuICAgICAgQ2xpZW50VG9rZW46IHRoaXMuY2xpZW50VG9rZW4sXG4gICAgfTtcbiAgICBjb25zdCBlbnRyaWVzID0gcHJ1bmVBbmRUcmFuc2Zvcm1SZWNvcmQoZW50cnlNYXAsIHggPT4geC5wcmludCgpKTtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGVudHJpZXMpO1xuICB9XG59Il19
@@ -55,5 +55,5 @@ class CreateImageStep extends automation_step_1.AutomationStep {
55
55
  }
56
56
  exports.CreateImageStep = CreateImageStep;
57
57
  _a = JSII_RTTI_SYMBOL_1;
58
- CreateImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CreateImageStep", version: "0.0.59" };
58
+ CreateImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CreateImageStep", version: "0.0.61" };
59
59
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWltYWdlLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vY3JlYXRlLWltYWdlLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFDQSxzREFBc0Q7QUFNdEQsdUZBQWlGO0FBQ2pGLHdEQUF5RTtBQWtDekU7OztHQUdHO0FBQ0gsTUFBYSxlQUFnQixTQUFRLGdDQUFjO0lBUWpELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBMkI7UUFDbkUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFSakIsV0FBTSxHQUFXLGlCQUFpQixDQUFDO1FBUzFDLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDLFVBQVUsQ0FBQztRQUNuQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQyxJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQyxRQUFRLENBQUM7UUFDL0IsSUFBSSxDQUFDLG1CQUFtQixHQUFHLEtBQUssQ0FBQyxtQkFBbUIsQ0FBQztJQUN2RCxDQUFDO0lBRU0sV0FBVztRQUNoQixPQUFPLENBQUM7Z0JBQ04sVUFBVSxFQUFFLHdCQUFZLENBQUMsTUFBTTtnQkFDL0IsSUFBSSxFQUFFLFNBQVM7Z0JBQ2YsUUFBUSxFQUFFLFdBQVc7YUFDdEIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixJQUFJLEVBQUUsWUFBWTtnQkFDbEIsUUFBUSxFQUFFLGNBQWM7YUFDekIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBRztZQUNiLElBQUksQ0FBQyxVQUFVO1lBQ2YsSUFBSSxDQUFDLFNBQVM7WUFDZCxJQUFJLENBQUMsZ0JBQWdCO1lBQ3JCLElBQUksQ0FBQyxRQUFRO1lBQ2IsSUFBSSxDQUFDLG1CQUFtQjtTQUN6QixDQUFDO1FBRUYsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxRQUFRLEdBQWlEO1lBQzdELFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTtZQUMzQixTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7WUFDekIsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGdCQUFnQjtZQUN2QyxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLG1CQUFtQjtTQUM5QyxDQUFDO1FBQ0YsTUFBTSxPQUFPLEdBQUcsSUFBQSxvREFBdUIsRUFBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztRQUNsRSxPQUFPLEtBQUssQ0FBQyxlQUFlLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDeEMsQ0FBQzs7QUFuREgsMENBb0RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLi9kb21haW4vZGF0YS10eXBlJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgSUJvb2xlYW5WYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvYm9vbGVhbi12YXJpYWJsZSc7XG5pbXBvcnQgeyBJU3RyaW5nTWFwVmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3N0cmluZy1tYXAtdmFyaWFibGUnO1xuaW1wb3J0IHsgSVN0cmluZ1ZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy9zdHJpbmctdmFyaWFibGUnO1xuaW1wb3J0IHsgSUdlbmVyaWNWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvdmFyaWFibGUnO1xuaW1wb3J0IHsgcHJ1bmVBbmRUcmFuc2Zvcm1SZWNvcmQgfSBmcm9tICcuLi8uLi91dGlscy9wcnVuZS1hbmQtdHJhbnNmb3JtLXJlY29yZCc7XG5pbXBvcnQgeyBBdXRvbWF0aW9uU3RlcCwgQXV0b21hdGlvblN0ZXBQcm9wcyB9IGZyb20gJy4uL2F1dG9tYXRpb24tc3RlcCc7XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgQ3JlYXRlSW1hZ2VTdGVwXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQ3JlYXRlSW1hZ2VTdGVwUHJvcHMgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcFByb3BzIHtcblxuICAvKipcbiAgICogVGhlIElEIG9mIHRoZSBpbnN0YW5jZS5cbiAgICovXG4gIHJlYWRvbmx5IGluc3RhbmNlSWQ6IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICogVGhlIG5hbWUgZm9yIHRoZSBpbWFnZS5cbiAgICovXG4gIHJlYWRvbmx5IGltYWdlTmFtZTogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIEEgZGVzY3JpcHRpb24gb2YgdGhlIGltYWdlLlxuICAgKi9cbiAgcmVhZG9ubHkgaW1hZ2VEZXNjcmlwdGlvbj86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBCeSBkZWZhdWx0LCBBbWF6b24gRWxhc3RpYyBDb21wdXRlIENsb3VkIChBbWF6b24gRUMyKSBhdHRlbXB0cyB0byBzaHV0IGRvd24gYW5kIHJlYm9vdCB0aGUgaW5zdGFuY2UgYmVmb3JlIGNyZWF0aW5nIHRoZSBpbWFnZS4gSWYgdGhlIE5vIFJlYm9vdCBvcHRpb24gaXMgc2V0IHRvIHRydWUsIEFtYXpvbiBFQzIgZG9lc24ndCBzaHV0IGRvd24gdGhlIGluc3RhbmNlIGJlZm9yZSBjcmVhdGluZyB0aGUgaW1hZ2UuIFdoZW4gdGhpcyBvcHRpb24gaXMgdXNlZCwgZmlsZSBzeXN0ZW0gaW50ZWdyaXR5IG9uIHRoZSBjcmVhdGVkIGltYWdlIGNhbid0IGJlIGd1YXJhbnRlZWQuXG4gICAqIElmIHlvdSBkb24ndCB3YW50IHRoZSBpbnN0YW5jZSB0byBydW4gYWZ0ZXIgeW91IGNyZWF0ZSBhbiBBTUkgZnJvbSBpdCwgZmlyc3QgdXNlIHRoZSBhd3M6Y2hhbmdlSW5zdGFuY2VTdGF0ZSDigJMgQ2hhbmdlIG9yIGFzc2VydCBpbnN0YW5jZSBzdGF0ZSBhY3Rpb24gdG8gc3RvcCB0aGUgaW5zdGFuY2UsIGFuZCB0aGVuIHVzZSB0aGlzIGF3czpjcmVhdGVJbWFnZSBhY3Rpb24gd2l0aCB0aGUgTm9SZWJvb3Qgb3B0aW9uIHNldCB0byB0cnVlLlxuICAgKi9cbiAgcmVhZG9ubHkgbm9SZWJvb3Q/OiBJQm9vbGVhblZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBibG9jayBkZXZpY2VzIGZvciB0aGUgaW5zdGFuY2UuXG4gICAqL1xuICByZWFkb25seSBibG9ja0RldmljZU1hcHBpbmdzPzogSVN0cmluZ01hcFZhcmlhYmxlO1xufVxuXG4vKipcbiAqIEF1dG9tYXRpb25TdGVwIGltcGxlbWVuYXRpb24gZm9yIGF3czpjcmVhdGVJbWFnZVxuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWNyZWF0ZS5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBDcmVhdGVJbWFnZVN0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG4gIHJlYWRvbmx5IGFjdGlvbjogc3RyaW5nID0gJ2F3czpjcmVhdGVJbWFnZSc7XG4gIHJlYWRvbmx5IGluc3RhbmNlSWQ6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgaW1hZ2VOYW1lOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGltYWdlRGVzY3JpcHRpb24/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IG5vUmVib290PzogSUJvb2xlYW5WYXJpYWJsZTtcbiAgcmVhZG9ubHkgYmxvY2tEZXZpY2VNYXBwaW5ncz86IElTdHJpbmdNYXBWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogQ3JlYXRlSW1hZ2VTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLmluc3RhbmNlSWQgPSBwcm9wcy5pbnN0YW5jZUlkO1xuICAgIHRoaXMuaW1hZ2VOYW1lID0gcHJvcHMuaW1hZ2VOYW1lO1xuICAgIHRoaXMuaW1hZ2VEZXNjcmlwdGlvbiA9IHByb3BzLmltYWdlRGVzY3JpcHRpb247XG4gICAgdGhpcy5ub1JlYm9vdCA9IHByb3BzLm5vUmVib290O1xuICAgIHRoaXMuYmxvY2tEZXZpY2VNYXBwaW5ncyA9IHByb3BzLmJsb2NrRGV2aWNlTWFwcGluZ3M7XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbe1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdJbWFnZUlkJyxcbiAgICAgIHNlbGVjdG9yOiAnJC5JbWFnZUlkJyxcbiAgICB9LCB7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HLFxuICAgICAgbmFtZTogJ0ltYWdlU3RhdGUnLFxuICAgICAgc2VsZWN0b3I6ICckLkltYWdlU3RhdGUnLFxuICAgIH1dO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuaW5zdGFuY2VJZCxcbiAgICAgIHRoaXMuaW1hZ2VOYW1lLFxuICAgICAgdGhpcy5pbWFnZURlc2NyaXB0aW9uLFxuICAgICAgdGhpcy5ub1JlYm9vdCxcbiAgICAgIHRoaXMuYmxvY2tEZXZpY2VNYXBwaW5ncyxcbiAgICBdO1xuXG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiBSZWNvcmQ8c3RyaW5nLCBhbnk+IHtcbiAgICBjb25zdCBlbnRyeU1hcDogUmVjb3JkPHN0cmluZywgSUdlbmVyaWNWYXJpYWJsZSB8IHVuZGVmaW5lZD4gPSB7XG4gICAgICBJbnN0YW5jZUlkOiB0aGlzLmluc3RhbmNlSWQsXG4gICAgICBJbWFnZU5hbWU6IHRoaXMuaW1hZ2VOYW1lLFxuICAgICAgSW1hZ2VEZXNjcmlwdGlvbjogdGhpcy5pbWFnZURlc2NyaXB0aW9uLFxuICAgICAgTm9SZWJvb3Q6IHRoaXMubm9SZWJvb3QsXG4gICAgICBCbG9ja0RldmljZU1hcHBpbmdzOiB0aGlzLmJsb2NrRGV2aWNlTWFwcGluZ3MsXG4gICAgfTtcbiAgICBjb25zdCBlbnRyaWVzID0gcHJ1bmVBbmRUcmFuc2Zvcm1SZWNvcmQoZW50cnlNYXAsIHggPT4geC5wcmludCgpKTtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGVudHJpZXMpO1xuICB9XG59Il19
@@ -19,7 +19,7 @@ class HardCodedOnFailure extends string_variable_1.HardCodedString {
19
19
  }
20
20
  exports.HardCodedOnFailure = HardCodedOnFailure;
21
21
  _a = JSII_RTTI_SYMBOL_1;
22
- HardCodedOnFailure[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedOnFailure", version: "0.0.59" };
22
+ HardCodedOnFailure[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedOnFailure", version: "0.0.61" };
23
23
  HardCodedOnFailure.DO_NOTHING = new HardCodedOnFailure('DO_NOTHING');
24
24
  HardCodedOnFailure.ROLLBACK = new HardCodedOnFailure('ROLLBACK');
25
25
  HardCodedOnFailure.DELETE = new HardCodedOnFailure('DELETE');
@@ -37,7 +37,7 @@ class OnFailureVariable extends string_variable_1.StringVariable {
37
37
  }
38
38
  exports.OnFailureVariable = OnFailureVariable;
39
39
  _b = JSII_RTTI_SYMBOL_1;
40
- OnFailureVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.OnFailureVariable", version: "0.0.59" };
40
+ OnFailureVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.OnFailureVariable", version: "0.0.61" };
41
41
  /**
42
42
  * AutomationStep implementation for aws:createStack
43
43
  * https://docs.aws.amazon.com/systems-manager/latest/userguide/automation-action-createstack.html
@@ -124,5 +124,5 @@ class CreateStackStep extends automation_step_1.AutomationStep {
124
124
  }
125
125
  exports.CreateStackStep = CreateStackStep;
126
126
  _c = JSII_RTTI_SYMBOL_1;
127
- CreateStackStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.CreateStackStep", version: "0.0.59" };
127
+ CreateStackStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.CreateStackStep", version: "0.0.61" };
128
128
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLXN0YWNrLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vY3JlYXRlLXN0YWNrLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFDQSxzREFBc0Q7QUFLdEQsK0VBQTJIO0FBQzNILHVGQUFpRjtBQUNqRix3REFBeUU7QUFZekUsSUFBWSxhQUVYO0FBRkQsV0FBWSxhQUFhO0lBQ3ZCLGlEQUFJLENBQUE7SUFBRSwrQ0FBRyxDQUFBO0FBQ1gsQ0FBQyxFQUZXLGFBQWEsNkJBQWIsYUFBYSxRQUV4QjtBQW9CRCxNQUFhLGtCQUFtQixTQUFRLGlDQUFlO0lBSXJELFlBQW9CLEdBQVc7UUFDN0IsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ2IsQ0FBQzs7QUFOSCxnREFPQzs7O0FBTndCLDZCQUFVLEdBQUcsSUFBSSxrQkFBa0IsQ0FBQyxZQUFZLENBQUMsQ0FBQztBQUNsRCwyQkFBUSxHQUFHLElBQUksa0JBQWtCLENBQUMsVUFBVSxDQUFDLENBQUM7QUFDOUMseUJBQU0sR0FBRyxJQUFJLGtCQUFrQixDQUFDLFFBQVEsQ0FBQyxDQUFDO0FBTW5FLE1BQWEsaUJBQWtCLFNBQVEsZ0NBQWM7SUFBckQ7O1FBQ1csZ0JBQVcsR0FBRyxDQUFDLFlBQVksRUFBRSxVQUFVLEVBQUUsUUFBUSxDQUFDLENBQUM7S0FRN0Q7SUFOVyxVQUFVLENBQUMsS0FBVTtRQUM3QixJQUFBLDhCQUFZLEVBQUMsS0FBSyxDQUFDLENBQUM7UUFDcEIsSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUM7WUFDdEMsTUFBTSxJQUFJLEtBQUssQ0FBQyxHQUFHLEtBQUssNEJBQTRCLENBQUMsQ0FBQztRQUN4RCxDQUFDO0lBQ0gsQ0FBQzs7QUFSSCw4Q0FTQzs7O0FBdUZEOzs7R0FHRztBQUNILE1BQWEsZUFBZ0IsU0FBUSxnQ0FBYztJQWtCakQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUEyQjtRQUNuRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRSxLQUFLLENBQUMsQ0FBQztRQWpCakIsV0FBTSxHQUFXLGlCQUFpQixDQUFDO1FBa0IxQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUM7UUFDbkQsSUFBSSxDQUFDLGNBQWMsR0FBRyxLQUFLLENBQUMsY0FBYyxDQUFDO1FBQzNDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUMsZ0JBQWdCLENBQUM7UUFDL0MsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDO1FBQ25DLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUN6QyxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUM7UUFDN0IsSUFBSSxLQUFLLENBQUMsV0FBVyxFQUFFLFFBQVEsS0FBSyxhQUFhLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDdkQsSUFBSSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQztRQUNqRCxDQUFDO2FBQU0sQ0FBQztZQUNOLElBQUksQ0FBQyxjQUFjLEdBQUcsS0FBSyxDQUFDLFdBQVcsRUFBRSxLQUFLLENBQUM7UUFDakQsQ0FBQztRQUNELElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztRQUN2QixJQUFJLEtBQUssQ0FBQyxRQUFRLENBQUMsUUFBUSxLQUFLLGFBQWEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztZQUNuRCxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDO1FBQzNDLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQztRQUMxQyxDQUFDO1FBQ0QsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztJQUNqRCxDQUFDO0lBRU0sV0FBVztRQUNoQixPQUFPLENBQUM7Z0JBQ04sVUFBVSxFQUFFLHdCQUFZLENBQUMsTUFBTTtnQkFDL0IsSUFBSSxFQUFFLFNBQVM7Z0JBQ2YsUUFBUSxFQUFFLFdBQVc7YUFDdEIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixJQUFJLEVBQUUsYUFBYTtnQkFDbkIsUUFBUSxFQUFFLGVBQWU7YUFDMUIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixJQUFJLEVBQUUsbUJBQW1CO2dCQUN6QixRQUFRLEVBQUUscUJBQXFCO2FBQ2hDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxNQUFNLEdBQUc7WUFDYixJQUFJLENBQUMsU0FBUztZQUNkLElBQUksQ0FBQyxZQUFZO1lBQ2pCLElBQUksQ0FBQyxrQkFBa0I7WUFDdkIsSUFBSSxDQUFDLGdCQUFnQjtZQUNyQixJQUFJLENBQUMsY0FBYztZQUNuQixJQUFJLENBQUMsVUFBVTtZQUNmLElBQUksQ0FBQyxhQUFhO1lBQ2xCLElBQUksQ0FBQyxPQUFPO1lBQ1osSUFBSSxDQUFDLGVBQWU7WUFDcEIsSUFBSSxDQUFDLGNBQWM7WUFDbkIsSUFBSSxDQUFDLElBQUk7WUFDVCxJQUFJLENBQUMsWUFBWTtZQUNqQixJQUFJLENBQUMsV0FBVztZQUNoQixJQUFJLENBQUMsZ0JBQWdCO1NBQ3RCLENBQUM7UUFFRixPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsY0FBYyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7SUFDeEQsQ0FBQztJQUVNLFVBQVU7UUFDZixPQUFPLEtBQUssQ0FBQyxlQUFlLENBQUMsSUFBQSxvREFBdUIsRUFBQztZQUNuRCxTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7WUFDekIsWUFBWSxFQUFFLElBQUksQ0FBQyxZQUFZO1lBQy9CLGtCQUFrQixFQUFFLElBQUksQ0FBQyxrQkFBa0I7WUFDM0MsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGdCQUFnQjtZQUN2QyxTQUFTLEVBQUUsSUFBSSxDQUFDLGNBQWM7WUFDOUIsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVO1lBQzNCLGFBQWEsRUFBRSxJQUFJLENBQUMsYUFBYTtZQUNqQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU87WUFDckIsZUFBZSxFQUFFLElBQUksQ0FBQyxlQUFlO1lBQ3JDLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztZQUNuQyxJQUFJLEVBQUUsSUFBSSxDQUFDLElBQUk7WUFDZixZQUFZLEVBQUUsSUFBSSxDQUFDLFlBQVk7WUFDL0IsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXO1lBQzdCLGdCQUFnQixFQUFFLElBQUksQ0FBQyxnQkFBZ0I7U0FDeEMsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdEIsQ0FBQzs7QUFoR0gsMENBaUdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLi9kb21haW4vZGF0YS10eXBlJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgSU1hcExpc3RWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvbWFwLWxpc3QtdmFyaWFibGUnO1xuaW1wb3J0IHsgSU51bWJlclZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy9udW1iZXItdmFyaWFibGUnO1xuaW1wb3J0IHsgSVN0cmluZ0xpc3RWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLWxpc3QtdmFyaWFibGUnO1xuaW1wb3J0IHsgYXNzZXJ0U3RyaW5nLCBIYXJkQ29kZWRTdHJpbmcsIElTdHJpbmdWYXJpYWJsZSwgU3RyaW5nVmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3N0cmluZy12YXJpYWJsZSc7XG5pbXBvcnQgeyBwcnVuZUFuZFRyYW5zZm9ybVJlY29yZCB9IGZyb20gJy4uLy4uL3V0aWxzL3BydW5lLWFuZC10cmFuc2Zvcm0tcmVjb3JkJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBSZXNvbHZlciBmb3Igc2VjdXJlIHN0cmluZ3MgaW4gUGFyYW1ldGVyc1xuICovXG5leHBvcnQgaW50ZXJmYWNlIElQYXJhbWV0ZXJSZXNvbHZlciB7XG4gIC8qKlxuICAgICAqIFJlc29sdmUgdGhlIHRva2VuIHRvIGl0cyB2YWx1ZVxuICAgICAqL1xuICByZXNvbHZlKGlucHV0OiBzdHJpbmcpOiBzdHJpbmc7XG59XG5cbmV4cG9ydCBlbnVtIEJvZHlPclVybFR5cGUge1xuICBCT0RZLCBVUkxcbn1cblxuLyoqXG4gKiBBbGxvdyBwYXNzaW5nIGluIGEgYm9keSBvciBVUkwgdmVyc2lvbiBvZiB0aGUgcHJvcGVydHkgdmFsdWVcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBCb2R5T3JVcmxQcm9wIHtcbiAgLyoqXG4gICAgICogQm9keSBvciBVUkwgc3RyaW5nXG4gICAgICovXG4gIHJlYWRvbmx5IHZhbHVlOiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogV2hldGhlciB0aGUgYm9keSBvciBVUkwgd2FzIHByb3ZpZGVkXG4gICAgICovXG4gIHJlYWRvbmx5IHByb3BUeXBlOiBCb2R5T3JVcmxUeXBlO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIElPbkZhaWx1cmVWYXJpYWJsZSBleHRlbmRzIElTdHJpbmdWYXJpYWJsZSB7XG59XG5cbmV4cG9ydCBjbGFzcyBIYXJkQ29kZWRPbkZhaWx1cmUgZXh0ZW5kcyBIYXJkQ29kZWRTdHJpbmcgaW1wbGVtZW50cyBJT25GYWlsdXJlVmFyaWFibGUge1xuICBwdWJsaWMgc3RhdGljIHJlYWRvbmx5IERPX05PVEhJTkcgPSBuZXcgSGFyZENvZGVkT25GYWlsdXJlKCdET19OT1RISU5HJyk7XG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgUk9MTEJBQ0sgPSBuZXcgSGFyZENvZGVkT25GYWlsdXJlKCdST0xMQkFDSycpO1xuICBwdWJsaWMgc3RhdGljIHJlYWRvbmx5IERFTEVURSA9IG5ldyBIYXJkQ29kZWRPbkZhaWx1cmUoJ0RFTEVURScpO1xuICBwcml2YXRlIGNvbnN0cnVjdG9yKHZhbDogc3RyaW5nKSB7XG4gICAgc3VwZXIodmFsKTtcbiAgfVxufVxuXG5leHBvcnQgY2xhc3MgT25GYWlsdXJlVmFyaWFibGUgZXh0ZW5kcyBTdHJpbmdWYXJpYWJsZSBpbXBsZW1lbnRzIElPbkZhaWx1cmVWYXJpYWJsZSB7XG4gIHJlYWRvbmx5IHZhbGlkVmFsdWVzID0gWydET19OT1RISU5HJywgJ1JPTExCQUNLJywgJ0RFTEVURSddO1xuXG4gIHByb3RlY3RlZCBhc3NlcnRUeXBlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICBhc3NlcnRTdHJpbmcodmFsdWUpO1xuICAgIGlmICghdGhpcy52YWxpZFZhbHVlcy5pbmNsdWRlcyh2YWx1ZSkpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihgJHt2YWx1ZX0gaXMgbm90IGEgdmFsaWQgZW51bSB2YWx1ZWApO1xuICAgIH1cbiAgfVxufVxuXG4vKipcbiAqIFByb3BlcnRpZXMgZm9yIENyZWF0ZVN0YWNrU3RlcFxuICovXG5leHBvcnQgaW50ZXJmYWNlIENyZWF0ZVN0YWNrU3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAgICogVGhlIG5hbWUgdGhhdCBpcyBhc3NvY2lhdGVkIHdpdGggdGhlIHN0YWNrLiBUaGUgbmFtZSBtdXN0IGJlIHVuaXF1ZSBpbiB0aGUgUmVnaW9uIGluIHdoaWNoIHlvdSdyZSBjcmVhdGluZyB0aGUgc3RhY2suXG4gICAgICovXG4gIHJlYWRvbmx5IHN0YWNrTmFtZTogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgU3RhY2sgcG9saWN5IGJvZHkgb3IgVVJMLlxuICAgICAqIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWUgW1ByZXZlbnQgVXBkYXRlcyB0byBTdGFjayBSZXNvdXJjZXNdKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BV1NDbG91ZEZvcm1hdGlvbi9sYXRlc3QvVXNlckd1aWRlL3Byb3RlY3Qtc3RhY2stcmVzb3VyY2VzLmh0bWwpLlxuICAgICAqL1xuICByZWFkb25seSBzdGFja1BvbGljeT86IEJvZHlPclVybFByb3A7XG5cbiAgLyoqXG4gICAgICogVGVtcGxhdGUgYm9keSBvciBVUkwuXG4gICAgICogRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZSBbVGVtcGxhdGUgQW5hdG9teV0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FXU0Nsb3VkRm9ybWF0aW9uL2xhdGVzdC9Vc2VyR3VpZGUvdGVtcGxhdGUtYW5hdG9teS5odG1sKS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgdGVtcGxhdGU6IEJvZHlPclVybFByb3A7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBEZXRlcm1pbmVzIHRoZSBhY3Rpb24gdG8gdGFrZSBpZiBzdGFjayBjcmVhdGlvbiBmYWlsZWQuXG4gICAgICogQGRlZmF1bHQgLSBSb2xsYmFjayBvbiBmYWlsdXJlXG4gICAgICovXG4gIHJlYWRvbmx5IG9uU3RhY2tGYWlsdXJlPzogSU9uRmFpbHVyZVZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgQSBsaXN0IG9mIHZhbHVlcyB0aGF0IHlvdSBzcGVjaWZ5IGJlZm9yZSBDbG91ZEZvcm1hdGlvbiBjYW4gY3JlYXRlIGNlcnRhaW4gc3RhY2tzLlxuICAgICAqIFNvbWUgc3RhY2sgdGVtcGxhdGVzIGluY2x1ZGUgcmVzb3VyY2VzIHRoYXQgY2FuIGFmZmVjdCBwZXJtaXNzaW9ucyBpbiB5b3VyIEFXUyBhY2NvdW50LlxuICAgICAqIEZvciBleGFtcGxlLCBjcmVhdGluZyBuZXcgQVdTIElkZW50aXR5IGFuZCBBY2Nlc3MgTWFuYWdlbWVudCAoSUFNKSB1c2VycyBjYW4gYWZmZWN0IHBlcm1pc3Npb25zIGluIHlvdXIgYWNjb3VudC5cbiAgICAgKiBGb3IgdGhvc2Ugc3RhY2tzLCB5b3UgbXVzdCBleHBsaWNpdGx5IGFja25vd2xlZGdlIHRoZWlyIGNhcGFiaWxpdGllcyBieSBzcGVjaWZ5aW5nIHRoaXMgcGFyYW1ldGVyLlxuICAgICAqXG4gICAgICogVmFsaWQgdmFsdWVzIGluY2x1ZGUgQ0FQQUJJTElUWV9JQU0sIENBUEFCSUxJVFlfTkFNRURfSUFNLCBhbmQgQ0FQQUJJTElUWV9BVVRPX0VYUEFORC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgY2FwYWJpbGl0aWVzPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIEEgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgQ3JlYXRlU3RhY2sgcmVxdWVzdC5cbiAgICAgKiBTcGVjaWZ5IHRoaXMgdG9rZW4gaWYgeW91IHNldCBtYXhBdHRlbXB0cyBpbiB0aGlzIHN0ZXAgdG8gYSB2YWx1ZSBncmVhdGVyIHRoYW4gMS5cbiAgICAgKiBCeSBzcGVjaWZ5aW5nIHRoaXMgdG9rZW4sIENsb3VkRm9ybWF0aW9uIGtub3dzIHRoYXQgeW91IGFyZW4ndCBhdHRlbXB0aW5nIHRvIGNyZWF0ZSBhIG5ldyBzdGFjayB3aXRoIHRoZSBzYW1lIG5hbWUuXG4gICAgICovXG4gIHJlYWRvbmx5IGNsaWVudFJlcXVlc3RUb2tlbj86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBBbWF6b24gU2ltcGxlIE5vdGlmaWNhdGlvbiBTZXJ2aWNlIChBbWF6b24gU05TKSB0b3BpYyBBUk5zIGZvciBwdWJsaXNoaW5nIHN0YWNrLXJlbGF0ZWQgZXZlbnRzLlxuICAgICAqL1xuICByZWFkb25seSBub3RpZmljYXRpb25BUk5zPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIEEgbGlzdCBvZiBQYXJhbWV0ZXIgc3RydWN0dXJlcyB0aGF0IHNwZWNpZnkgaW5wdXQgcGFyYW1ldGVycyBmb3IgdGhlIHN0YWNrLlxuICAgICAqIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWUgdGhlIFtQYXJhbWV0ZXJdKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BV1NDbG91ZEZvcm1hdGlvbi9sYXRlc3QvQVBJUmVmZXJlbmNlL0FQSV9QYXJhbWV0ZXIuaHRtbCkgZGF0YSB0eXBlLlxuICAgICAqL1xuICByZWFkb25seSBwYXJhbWV0ZXJzPzogSU1hcExpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSB0ZW1wbGF0ZSByZXNvdXJjZSB0eXBlcyB0aGF0IHlvdSBoYXZlIHBlcm1pc3Npb25zIHRvIHdvcmsgd2l0aCBmb3IgdGhpcyBjcmVhdGUgc3RhY2sgYWN0aW9uLlxuICAgICAqIEZvciBleGFtcGxlOiBBV1M6OkVDMjo6SW5zdGFuY2UsIEFXUzo6RUMyOjoqLCBvciBDdXN0b206Ok15Q3VzdG9tSW5zdGFuY2UuXG4gICAgICovXG4gIHJlYWRvbmx5IHJlc291cmNlVHlwZXM/OiBJU3RyaW5nTGlzdFZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgVGhlIEFtYXpvbiBSZXNvdXJjZSBOYW1lIChBUk4pIG9mIGFuIEFXUyBJZGVudGl0eSBhbmQgQWNjZXNzIE1hbmFnZW1lbnQgKElBTSkgcm9sZSB0aGF0IENsb3VkRm9ybWF0aW9uXG4gICAgICogYXNzdW1lcyB0byBjcmVhdGUgdGhlIHN0YWNrLiBDbG91ZEZvcm1hdGlvbiB1c2VzIHRoZSByb2xlJ3MgY3JlZGVudGlhbHMgdG8gbWFrZSBjYWxscyBvbiB5b3VyIGJlaGFsZi5cbiAgICAgKiBDbG91ZEZvcm1hdGlvbiBhbHdheXMgdXNlcyB0aGlzIHJvbGUgZm9yIGFsbCBmdXR1cmUgb3BlcmF0aW9ucyBvbiB0aGUgc3RhY2suXG4gICAgICogQXMgbG9uZyBhcyB1c2VycyBoYXZlIHBlcm1pc3Npb24gdG8gb3BlcmF0ZSBvbiB0aGUgc3RhY2ssIENsb3VkRm9ybWF0aW9uIHVzZXMgdGhpcyByb2xlIGV2ZW5cbiAgICAgKiBpZiB0aGUgdXNlcnMgZG9uJ3QgaGF2ZSBwZXJtaXNzaW9uIHRvIHBhc3MgaXQuIEVuc3VyZSB0aGF0IHRoZSByb2xlIGdyYW50cyB0aGUgbGVhc3QgYW1vdW50IG9mIHByaXZpbGVnZXMuXG4gICAgICpcbiAgICAgKiBJZiB5b3UgZG9uJ3Qgc3BlY2lmeSBhIHZhbHVlLCBDbG91ZEZvcm1hdGlvbiB1c2VzIHRoZSByb2xlIHRoYXQgd2FzIHByZXZpb3VzbHkgYXNzb2NpYXRlZCB3aXRoIHRoZSBzdGFjay5cbiAgICAgKiBJZiBubyByb2xlIGlzIGF2YWlsYWJsZSwgQ2xvdWRGb3JtYXRpb24gdXNlcyBhIHRlbXBvcmFyeSBzZXNzaW9uIHRoYXQgaXMgZ2VuZXJhdGVkIGZyb20geW91ciB1c2VyIGNyZWRlbnRpYWxzLlxuICAgICAqL1xuICByZWFkb25seSByb2xlQXJuPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgS2V5LXZhbHVlIHBhaXJzIHRvIGFzc29jaWF0ZSB3aXRoIHRoaXMgc3RhY2suIENsb3VkRm9ybWF0aW9uIGFsc28gcHJvcGFnYXRlcyB0aGVzZSB0YWdzIHRvIHRoZSByZXNvdXJjZXMgY3JlYXRlZCBpbiB0aGUgc3RhY2suIFlvdSBjYW4gc3BlY2lmeSBhIG1heGltdW0gbnVtYmVyIG9mIDEwIHRhZ3MuXG4gICAgICovXG4gIHJlYWRvbmx5IHRhZ3M/OiBJTWFwTGlzdFZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgVGhlIGFtb3VudCBvZiB0aW1lIHRoYXQgY2FuIHBhc3MgYmVmb3JlIHRoZSBzdGFjayBzdGF0dXMgYmVjb21lcyBDUkVBVEVfRkFJTEVELiBJZiBEaXNhYmxlUm9sbGJhY2sgaXNuJ3Qgc2V0IG9yIGlzIHNldCB0byBmYWxzZSwgdGhlIHN0YWNrIHdpbGwgYmUgcm9sbGVkIGJhY2suXG4gICAgICovXG4gIHJlYWRvbmx5IHRpbWVvdXRJbk1pbnV0ZXM/OiBJTnVtYmVyVmFyaWFibGU7XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW50YXRpb24gZm9yIGF3czpjcmVhdGVTdGFja1xuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWNyZWF0ZXN0YWNrLmh0bWxcbiAqL1xuZXhwb3J0IGNsYXNzIENyZWF0ZVN0YWNrU3RlcCBleHRlbmRzIEF1dG9tYXRpb25TdGVwIHtcblxuICByZWFkb25seSBhY3Rpb246IHN0cmluZyA9ICdhd3M6Y3JlYXRlU3RhY2snO1xuICByZWFkb25seSBzdGFja05hbWU6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgY2FwYWJpbGl0aWVzPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgY2xpZW50UmVxdWVzdFRva2VuPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBub3RpZmljYXRpb25BUk5zPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgb25TdGFja0ZhaWx1cmU/OiBJT25GYWlsdXJlVmFyaWFibGU7XG4gIHJlYWRvbmx5IHBhcmFtZXRlcnM/OiBJTWFwTGlzdFZhcmlhYmxlO1xuICByZWFkb25seSByZXNvdXJjZVR5cGVzPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgcm9sZUFybj86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgc3RhY2tQb2xpY3lCb2R5PzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBzdGFja1BvbGljeVVybD86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgdGFncz86IElNYXBMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IHRlbXBsYXRlQm9keT86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgdGVtcGxhdGVVcmw/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHRpbWVvdXRJbk1pbnV0ZXM/OiBJTnVtYmVyVmFyaWFibGU7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IENyZWF0ZVN0YWNrU3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5zdGFja05hbWUgPSBwcm9wcy5zdGFja05hbWU7XG4gICAgdGhpcy5jYXBhYmlsaXRpZXMgPSBwcm9wcy5jYXBhYmlsaXRpZXM7XG4gICAgdGhpcy5jbGllbnRSZXF1ZXN0VG9rZW4gPSBwcm9wcy5jbGllbnRSZXF1ZXN0VG9rZW47XG4gICAgdGhpcy5vblN0YWNrRmFpbHVyZSA9IHByb3BzLm9uU3RhY2tGYWlsdXJlO1xuICAgIHRoaXMubm90aWZpY2F0aW9uQVJOcyA9IHByb3BzLm5vdGlmaWNhdGlvbkFSTnM7XG4gICAgdGhpcy5wYXJhbWV0ZXJzID0gcHJvcHMucGFyYW1ldGVycztcbiAgICB0aGlzLnJlc291cmNlVHlwZXMgPSBwcm9wcy5yZXNvdXJjZVR5cGVzO1xuICAgIHRoaXMucm9sZUFybiA9IHByb3BzLnJvbGVBcm47XG4gICAgaWYgKHByb3BzLnN0YWNrUG9saWN5Py5wcm9wVHlwZSA9PT0gQm9keU9yVXJsVHlwZS5CT0RZKSB7XG4gICAgICB0aGlzLnN0YWNrUG9saWN5Qm9keSA9IHByb3BzLnN0YWNrUG9saWN5LnZhbHVlO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnN0YWNrUG9saWN5VXJsID0gcHJvcHMuc3RhY2tQb2xpY3k/LnZhbHVlO1xuICAgIH1cbiAgICB0aGlzLnRhZ3MgPSBwcm9wcy50YWdzO1xuICAgIGlmIChwcm9wcy50ZW1wbGF0ZS5wcm9wVHlwZSA9PT0gQm9keU9yVXJsVHlwZS5CT0RZKSB7XG4gICAgICB0aGlzLnRlbXBsYXRlQm9keSA9IHByb3BzLnRlbXBsYXRlLnZhbHVlO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnRlbXBsYXRlVXJsID0gcHJvcHMudGVtcGxhdGUudmFsdWU7XG4gICAgfVxuICAgIHRoaXMudGltZW91dEluTWludXRlcyA9IHByb3BzLnRpbWVvdXRJbk1pbnV0ZXM7XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbe1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdTdGFja0lkJyxcbiAgICAgIHNlbGVjdG9yOiAnJC5TdGFja0lkJyxcbiAgICB9LCB7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HLFxuICAgICAgbmFtZTogJ1N0YWNrU3RhdHVzJyxcbiAgICAgIHNlbGVjdG9yOiAnJC5TdGFja1N0YXR1cycsXG4gICAgfSwge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdTdGFja1N0YXR1c1JlYXNvbicsXG4gICAgICBzZWxlY3RvcjogJyQuU3RhY2tTdGF0dXNSZWFzb24nLFxuICAgIH1dO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuc3RhY2tOYW1lLFxuICAgICAgdGhpcy5jYXBhYmlsaXRpZXMsXG4gICAgICB0aGlzLmNsaWVudFJlcXVlc3RUb2tlbixcbiAgICAgIHRoaXMubm90aWZpY2F0aW9uQVJOcyxcbiAgICAgIHRoaXMub25TdGFja0ZhaWx1cmUsXG4gICAgICB0aGlzLnBhcmFtZXRlcnMsXG4gICAgICB0aGlzLnJlc291cmNlVHlwZXMsXG4gICAgICB0aGlzLnJvbGVBcm4sXG4gICAgICB0aGlzLnN0YWNrUG9saWN5Qm9keSxcbiAgICAgIHRoaXMuc3RhY2tQb2xpY3lVcmwsXG4gICAgICB0aGlzLnRhZ3MsXG4gICAgICB0aGlzLnRlbXBsYXRlQm9keSxcbiAgICAgIHRoaXMudGVtcGxhdGVVcmwsXG4gICAgICB0aGlzLnRpbWVvdXRJbk1pbnV0ZXMsXG4gICAgXTtcblxuICAgIHJldHVybiBpbnB1dHMuZmxhdE1hcChpID0+IGk/LnJlcXVpcmVkSW5wdXRzKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogUmVjb3JkPHN0cmluZywgYW55PiB7XG4gICAgcmV0dXJuIHN1cGVyLnByZXBhcmVTc21FbnRyeShwcnVuZUFuZFRyYW5zZm9ybVJlY29yZCh7XG4gICAgICBTdGFja05hbWU6IHRoaXMuc3RhY2tOYW1lLFxuICAgICAgQ2FwYWJpbGl0aWVzOiB0aGlzLmNhcGFiaWxpdGllcyxcbiAgICAgIENsaWVudFJlcXVlc3RUb2tlbjogdGhpcy5jbGllbnRSZXF1ZXN0VG9rZW4sXG4gICAgICBOb3RpZmljYXRpb25BUk5zOiB0aGlzLm5vdGlmaWNhdGlvbkFSTnMsXG4gICAgICBPbkZhaWx1cmU6IHRoaXMub25TdGFja0ZhaWx1cmUsXG4gICAgICBQYXJhbWV0ZXJzOiB0aGlzLnBhcmFtZXRlcnMsXG4gICAgICBSZXNvdXJjZVR5cGVzOiB0aGlzLnJlc291cmNlVHlwZXMsXG4gICAgICBSb2xlQVJOOiB0aGlzLnJvbGVBcm4sXG4gICAgICBTdGFja1BvbGljeUJvZHk6IHRoaXMuc3RhY2tQb2xpY3lCb2R5LFxuICAgICAgU3RhY2tQb2xpY3lVUkw6IHRoaXMuc3RhY2tQb2xpY3lVcmwsXG4gICAgICBUYWdzOiB0aGlzLnRhZ3MsXG4gICAgICBUZW1wbGF0ZUJvZHk6IHRoaXMudGVtcGxhdGVCb2R5LFxuICAgICAgVGVtcGxhdGVVUkw6IHRoaXMudGVtcGxhdGVVcmwsXG4gICAgICBUaW1lb3V0SW5NaW51dGVzOiB0aGlzLnRpbWVvdXRJbk1pbnV0ZXMsXG4gICAgfSwgeCA9PiB4LnByaW50KCkpKTtcbiAgfVxufSJdfQ==
@@ -13,7 +13,7 @@ class HardCodedResourceType extends string_variable_1.HardCodedString {
13
13
  }
14
14
  exports.HardCodedResourceType = HardCodedResourceType;
15
15
  _a = JSII_RTTI_SYMBOL_1;
16
- HardCodedResourceType[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedResourceType", version: "0.0.59" };
16
+ HardCodedResourceType[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedResourceType", version: "0.0.61" };
17
17
  HardCodedResourceType.EC2 = new HardCodedResourceType('EC2');
18
18
  HardCodedResourceType.MANAGED_INSTANCE = new HardCodedResourceType('ManagedInstance');
19
19
  HardCodedResourceType.MAINTENANCE_WINDOW = new HardCodedResourceType('MaintenanceWindow');
@@ -32,7 +32,7 @@ class ResourceTypeVariable extends string_variable_1.StringVariable {
32
32
  }
33
33
  exports.ResourceTypeVariable = ResourceTypeVariable;
34
34
  _b = JSII_RTTI_SYMBOL_1;
35
- ResourceTypeVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.ResourceTypeVariable", version: "0.0.59" };
35
+ ResourceTypeVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.ResourceTypeVariable", version: "0.0.61" };
36
36
  /**
37
37
  * AutomationStep implemenation for aws:createTags
38
38
  * https://docs.aws.amazon.com/systems-manager/latest/userguide/automation-action-createtag.html
@@ -71,5 +71,5 @@ class CreateTagsStep extends automation_step_1.AutomationStep {
71
71
  }
72
72
  exports.CreateTagsStep = CreateTagsStep;
73
73
  _c = JSII_RTTI_SYMBOL_1;
74
- CreateTagsStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.CreateTagsStep", version: "0.0.59" };
74
+ CreateTagsStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.CreateTagsStep", version: "0.0.61" };
75
75
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLXRhZ3Mtc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9jcmVhdGUtdGFncy1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBSUEsK0VBQTJIO0FBRTNILHVGQUFpRjtBQUNqRix3REFBeUU7QUEyQnpFLE1BQWEscUJBQXNCLFNBQVEsaUNBQWU7SUFLeEQsWUFBb0IsR0FBVztRQUM3QixLQUFLLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDYixDQUFDOztBQVBILHNEQVFDOzs7QUFQd0IseUJBQUcsR0FBRyxJQUFJLHFCQUFxQixDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ3ZDLHNDQUFnQixHQUFHLElBQUkscUJBQXFCLENBQUMsaUJBQWlCLENBQUMsQ0FBQztBQUNoRSx3Q0FBa0IsR0FBRyxJQUFJLHFCQUFxQixDQUFDLG1CQUFtQixDQUFDLENBQUM7QUFDcEUsK0JBQVMsR0FBRyxJQUFJLHFCQUFxQixDQUFDLFdBQVcsQ0FBQyxDQUFDO0FBTTVFLE1BQWEsb0JBQXFCLFNBQVEsZ0NBQWM7SUFBeEQ7O1FBQ1csZ0JBQVcsR0FBRyxDQUFDLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxtQkFBbUIsRUFBRSxXQUFXLENBQUMsQ0FBQztLQVFyRjtJQU5XLFVBQVUsQ0FBQyxLQUFVO1FBQzdCLElBQUEsOEJBQVksRUFBQyxLQUFLLENBQUMsQ0FBQztRQUNwQixJQUFJLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQztZQUN0QyxNQUFNLElBQUksS0FBSyxDQUFDLEdBQUcsS0FBSyw0QkFBNEIsQ0FBQyxDQUFDO1FBQ3hELENBQUM7SUFDSCxDQUFDOztBQVJILG9EQVNDOzs7QUFHRDs7O0dBR0c7QUFDSCxNQUFhLGNBQWUsU0FBUSxnQ0FBYztJQU1oRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTBCO1FBQ2xFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBTmpCLFdBQU0sR0FBRyxnQkFBZ0IsQ0FBQztRQU9qQyxJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQyxXQUFXLENBQUM7UUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQztJQUN6QyxDQUFDO0lBRUQ7O1NBRUs7SUFDRSxXQUFXO1FBQ2hCLE9BQU8sRUFBRSxDQUFDO0lBQ1osQ0FBQztJQUVNLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBRztZQUNiLElBQUksQ0FBQyxXQUFXO1lBQ2hCLElBQUksQ0FBQyxJQUFJO1lBQ1QsSUFBSSxDQUFDLFlBQVk7U0FDbEIsQ0FBQztRQUVGLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sUUFBUSxHQUFpRDtZQUM3RCxXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVc7WUFDN0IsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO1lBQ2YsWUFBWSxFQUFFLElBQUksQ0FBQyxZQUFZO1NBQ2hDLENBQUM7UUFDRixNQUFNLE9BQU8sR0FBRyxJQUFBLG9EQUF1QixFQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDO1FBQ2xFLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN4QyxDQUFDOztBQXRDSCx3Q0F1Q0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgSU1hcExpc3RWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvbWFwLWxpc3QtdmFyaWFibGUnO1xuaW1wb3J0IHsgSVN0cmluZ0xpc3RWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLWxpc3QtdmFyaWFibGUnO1xuaW1wb3J0IHsgYXNzZXJ0U3RyaW5nLCBIYXJkQ29kZWRTdHJpbmcsIElTdHJpbmdWYXJpYWJsZSwgU3RyaW5nVmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3N0cmluZy12YXJpYWJsZSc7XG5pbXBvcnQgeyBJR2VuZXJpY1ZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy92YXJpYWJsZSc7XG5pbXBvcnQgeyBwcnVuZUFuZFRyYW5zZm9ybVJlY29yZCB9IGZyb20gJy4uLy4uL3V0aWxzL3BydW5lLWFuZC10cmFuc2Zvcm0tcmVjb3JkJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBDcmVhdGVUYWdTdGVwXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQ3JlYXRlVGFnc1N0ZXBQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuICAvKipcbiAgICogVGhlIElEcyBvZiB0aGUgcmVzb3VyY2UocykgdG8gYmUgdGFnZ2VkLiBJZiByZXNvdXJjZSB0eXBlIGlzbid0IOKAnEVDMuKAnSwgdGhpcyBmaWVsZCBjYW4gY29udGFpbiBvbmx5IGEgc2luZ2xlIGl0ZW0uXG4gICAqL1xuICByZWFkb25seSByZXNvdXJjZUlkczogSVN0cmluZ0xpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICogVGhlIHRhZ3MgdG8gYXNzb2NpYXRlIHdpdGggdGhlIHJlc291cmNlKHMpLlxuICAgKi9cbiAgcmVhZG9ubHkgdGFnczogSU1hcExpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgdHlwZSBvZiByZXNvdXJjZShzKSB0byBiZSB0YWdnZWQuXG4gICAqIFZhbGlkIHZhbHVlczogRUMyIHwgTWFuYWdlZEluc3RhbmNlIHwgTWFpbnRlbmFuY2VXaW5kb3cgfCBQYXJhbWV0ZXJcbiAgICogQGRlZmF1bHQgRUMyXG4gICAqL1xuICByZWFkb25seSByZXNvdXJjZVR5cGU/OiBJUmVzb3VyY2VUeXBlVmFyaWFibGU7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgSVJlc291cmNlVHlwZVZhcmlhYmxlIGV4dGVuZHMgSVN0cmluZ1ZhcmlhYmxlIHtcbn1cblxuZXhwb3J0IGNsYXNzIEhhcmRDb2RlZFJlc291cmNlVHlwZSBleHRlbmRzIEhhcmRDb2RlZFN0cmluZyBpbXBsZW1lbnRzIElSZXNvdXJjZVR5cGVWYXJpYWJsZSB7XG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgRUMyID0gbmV3IEhhcmRDb2RlZFJlc291cmNlVHlwZSgnRUMyJyk7XG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgTUFOQUdFRF9JTlNUQU5DRSA9IG5ldyBIYXJkQ29kZWRSZXNvdXJjZVR5cGUoJ01hbmFnZWRJbnN0YW5jZScpO1xuICBwdWJsaWMgc3RhdGljIHJlYWRvbmx5IE1BSU5URU5BTkNFX1dJTkRPVyA9IG5ldyBIYXJkQ29kZWRSZXNvdXJjZVR5cGUoJ01haW50ZW5hbmNlV2luZG93Jyk7XG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgUEFSQU1FVEVSID0gbmV3IEhhcmRDb2RlZFJlc291cmNlVHlwZSgnUGFyYW1ldGVyJyk7XG4gIHByaXZhdGUgY29uc3RydWN0b3IodmFsOiBzdHJpbmcpIHtcbiAgICBzdXBlcih2YWwpO1xuICB9XG59XG5cbmV4cG9ydCBjbGFzcyBSZXNvdXJjZVR5cGVWYXJpYWJsZSBleHRlbmRzIFN0cmluZ1ZhcmlhYmxlIGltcGxlbWVudHMgSVJlc291cmNlVHlwZVZhcmlhYmxlIHtcbiAgcmVhZG9ubHkgdmFsaWRWYWx1ZXMgPSBbJ0VDMicsICdNYW5hZ2VkSW5zdGFuY2UnLCAnTWFpbnRlbmFuY2VXaW5kb3cnLCAnUGFyYW1ldGVyJ107XG5cbiAgcHJvdGVjdGVkIGFzc2VydFR5cGUodmFsdWU6IGFueSk6IHZvaWQge1xuICAgIGFzc2VydFN0cmluZyh2YWx1ZSk7XG4gICAgaWYgKCF0aGlzLnZhbGlkVmFsdWVzLmluY2x1ZGVzKHZhbHVlKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGAke3ZhbHVlfSBpcyBub3QgYSB2YWxpZCBlbnVtIHZhbHVlYCk7XG4gICAgfVxuICB9XG59XG5cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbmF0aW9uIGZvciBhd3M6Y3JlYXRlVGFnc1xuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWNyZWF0ZXRhZy5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBDcmVhdGVUYWdzU3RlcCBleHRlbmRzIEF1dG9tYXRpb25TdGVwIHtcbiAgcmVhZG9ubHkgYWN0aW9uID0gJ2F3czpjcmVhdGVUYWdzJztcbiAgcmVhZG9ubHkgcmVzb3VyY2VJZHM6IElTdHJpbmdMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IHRhZ3M6IElNYXBMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IHJlc291cmNlVHlwZT86IElSZXNvdXJjZVR5cGVWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogQ3JlYXRlVGFnc1N0ZXBQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICAgIHRoaXMucmVzb3VyY2VJZHMgPSBwcm9wcy5yZXNvdXJjZUlkcztcbiAgICB0aGlzLnRhZ3MgPSBwcm9wcy50YWdzO1xuICAgIHRoaXMucmVzb3VyY2VUeXBlID0gcHJvcHMucmVzb3VyY2VUeXBlO1xuICB9XG5cbiAgLyoqXG4gICAgICogVGhpcyBzdGVwIGhhcyBubyBvdXRwdXRzLlxuICAgICAqL1xuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbXTtcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLnJlc291cmNlSWRzLFxuICAgICAgdGhpcy50YWdzLFxuICAgICAgdGhpcy5yZXNvdXJjZVR5cGUsXG4gICAgXTtcblxuICAgIHJldHVybiBpbnB1dHMuZmxhdE1hcChpID0+IGk/LnJlcXVpcmVkSW5wdXRzKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogUmVjb3JkPHN0cmluZywgYW55PiB7XG4gICAgY29uc3QgZW50cnlNYXA6IFJlY29yZDxzdHJpbmcsIElHZW5lcmljVmFyaWFibGUgfCB1bmRlZmluZWQ+ID0ge1xuICAgICAgUmVzb3VyY2VJZHM6IHRoaXMucmVzb3VyY2VJZHMsXG4gICAgICBUYWdzOiB0aGlzLnRhZ3MsXG4gICAgICBSZXNvdXJjZVR5cGU6IHRoaXMucmVzb3VyY2VUeXBlLFxuICAgIH07XG4gICAgY29uc3QgZW50cmllcyA9IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkKGVudHJ5TWFwLCB4ID0+IHgucHJpbnQoKSk7XG4gICAgcmV0dXJuIHN1cGVyLnByZXBhcmVTc21FbnRyeShlbnRyaWVzKTtcbiAgfVxufSJdfQ==
@@ -34,5 +34,5 @@ class DeleteImageStep extends automation_step_1.AutomationStep {
34
34
  }
35
35
  exports.DeleteImageStep = DeleteImageStep;
36
36
  _a = JSII_RTTI_SYMBOL_1;
37
- DeleteImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.DeleteImageStep", version: "0.0.59" };
37
+ DeleteImageStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.DeleteImageStep", version: "0.0.61" };
38
38
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVsZXRlLWltYWdlLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vZGVsZXRlLWltYWdlLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFHQSx3REFBeUU7QUFhekU7OztHQUdHO0FBQ0gsTUFBYSxlQUFnQixTQUFRLGdDQUFjO0lBSWpELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBMkI7UUFDbkUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFKakIsV0FBTSxHQUFXLGlCQUFpQixDQUFDO1FBSzFDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQztJQUMvQixDQUFDO0lBRUQ7O1NBRUs7SUFDRSxXQUFXO1FBQ2hCLE9BQU8sRUFBRSxDQUFDO0lBQ1osQ0FBQztJQUVNLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBRztZQUNiLElBQUksQ0FBQyxPQUFPO1NBQ2IsQ0FBQztRQUVGLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRU0sVUFBVTtRQUNmLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQztZQUMzQixPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUU7U0FDOUIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7QUE1QkgsMENBNkJDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBEZWxldGVJbWFnZVN0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBEZWxldGVJbWFnZVN0ZXBQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuXG4gIC8qKlxuICAgKiBUaGUgSUQgb2YgdGhlIGltYWdlIHRvIGJlIGRlbGV0ZWQuXG4gICAqL1xuICByZWFkb25seSBpbWFnZUlkOiBJU3RyaW5nVmFyaWFibGU7XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW50YXRpb24gZm9yIGF3czpkZWxldGVJbWFnZVxuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWRlbGV0ZS5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBEZWxldGVJbWFnZVN0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG4gIHJlYWRvbmx5IGFjdGlvbjogc3RyaW5nID0gJ2F3czpkZWxldGVJbWFnZSc7XG4gIHJlYWRvbmx5IGltYWdlSWQ6IElTdHJpbmdWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogRGVsZXRlSW1hZ2VTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLmltYWdlSWQgPSBwcm9wcy5pbWFnZUlkO1xuICB9XG5cbiAgLyoqXG4gICAgICogVGhpcyBzdGVwIGhhcyBubyBvdXRwdXRzLlxuICAgICAqL1xuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbXTtcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLmltYWdlSWQsXG4gICAgXTtcblxuICAgIHJldHVybiBpbnB1dHMuZmxhdE1hcChpID0+IGk/LnJlcXVpcmVkSW5wdXRzKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogUmVjb3JkPHN0cmluZywgYW55PiB7XG4gICAgcmV0dXJuIHN1cGVyLnByZXBhcmVTc21FbnRyeSh7XG4gICAgICBJbWFnZUlkOiB0aGlzLmltYWdlSWQucHJpbnQoKSxcbiAgICB9KTtcbiAgfVxufSJdfQ==
@@ -45,5 +45,5 @@ class DeleteStackStep extends automation_step_1.AutomationStep {
45
45
  }
46
46
  exports.DeleteStackStep = DeleteStackStep;
47
47
  _a = JSII_RTTI_SYMBOL_1;
48
- DeleteStackStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.DeleteStackStep", version: "0.0.59" };
48
+ DeleteStackStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.DeleteStackStep", version: "0.0.61" };
49
49
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVsZXRlLXN0YWNrLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vZGVsZXRlLXN0YWNrLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFHQSx3REFBeUU7QUEwQnpFOzs7R0FHRztBQUNILE1BQWEsZUFBZ0IsU0FBUSxnQ0FBYztJQU1qRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTJCO1FBQ25FLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBSGpCLFdBQU0sR0FBVyxpQkFBaUIsQ0FBQztRQUkxQyxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUM7UUFDN0IsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQztJQUNuRCxDQUFDO0lBRUQ7OztTQUdLO0lBQ0UsV0FBVztRQUNoQixPQUFPLEVBQUUsQ0FBQztJQUNaLENBQUM7SUFFRDs7O1NBR0s7SUFDRSxVQUFVO1FBQ2YsT0FBTztZQUNMLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGNBQWMsRUFBRTtZQUMxQyxHQUFHLElBQUksQ0FBQyxPQUFPLElBQUksU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsY0FBYyxFQUFFO1NBQ2xFLENBQUM7SUFDSixDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUE0QjtZQUN0QyxTQUFTLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLEtBQUssRUFBRTtZQUN6QyxrQkFBa0IsRUFBRSxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEVBQUUsK0JBQStCO1NBQ3JGLENBQUM7UUFDRixJQUFJLElBQUksQ0FBQyxPQUFPLElBQUksU0FBUyxFQUFFLENBQUM7WUFDOUIsTUFBTSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDO1FBQ2hDLENBQUM7UUFDRCxPQUFPLEtBQUssQ0FBQyxlQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDdkMsQ0FBQzs7QUF4Q0gsMENBMENDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBEZWxldGVTdGFja1N0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBEZWxldGVTdGFja1N0ZXBQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBBbWF6b24gUmVzb3VyY2UgTmFtZSAoQVJOKSBvZiBhbiBBV1MgSWRlbnRpdHkgYW5kIEFjY2VzcyBNYW5hZ2VtZW50IChJQU0pIHJvbGUgdGhhdCBDbG91ZEZvcm1hdGlvblxuICAgKiBhc3N1bWVzIHRvIGNyZWF0ZSB0aGUgc3RhY2suIENsb3VkRm9ybWF0aW9uIHVzZXMgdGhlIHJvbGUncyBjcmVkZW50aWFscyB0byBtYWtlIGNhbGxzIG9uIHlvdXIgYmVoYWxmLlxuICAgKiBDbG91ZEZvcm1hdGlvbiBhbHdheXMgdXNlcyB0aGlzIHJvbGUgZm9yIGFsbCBmdXR1cmUgb3BlcmF0aW9ucyBvbiB0aGUgc3RhY2suXG4gICAqIEFzIGxvbmcgYXMgdXNlcnMgaGF2ZSBwZXJtaXNzaW9uIHRvIG9wZXJhdGUgb24gdGhlIHN0YWNrLCBDbG91ZEZvcm1hdGlvbiB1c2VzIHRoaXMgcm9sZSBldmVuXG4gICAqIGlmIHRoZSB1c2VycyBkb24ndCBoYXZlIHBlcm1pc3Npb24gdG8gcGFzcyBpdC4gRW5zdXJlIHRoYXQgdGhlIHJvbGUgZ3JhbnRzIHRoZSBsZWFzdCBhbW91bnQgb2YgcHJpdmlsZWdlcy5cbiAgICpcbiAgICogSWYgeW91IGRvbid0IHNwZWNpZnkgYSB2YWx1ZSwgQ2xvdWRGb3JtYXRpb24gdXNlcyB0aGUgcm9sZSB0aGF0IHdhcyBwcmV2aW91c2x5IGFzc29jaWF0ZWQgd2l0aCB0aGUgc3RhY2suXG4gICAqIElmIG5vIHJvbGUgaXMgYXZhaWxhYmxlLCBDbG91ZEZvcm1hdGlvbiB1c2VzIGEgdGVtcG9yYXJ5IHNlc3Npb24gdGhhdCBpcyBnZW5lcmF0ZWQgZnJvbSB5b3VyIHVzZXIgY3JlZGVudGlhbHMuXG4gICAqL1xuICByZWFkb25seSByb2xlQXJuPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFZhcmlhYmxlIHRoYXQgaXMgZmVkIGludG8gdGhpcyBzdGVwIGRlY2xhcmluZyB3aGljaCBzdGFjayB0byBkZWxldGUuXG4gICAqIEBkZWZhdWx0IC0gU3RhY2tOYW1lIGlzIHRoZSBkZWZhdWx0IHZhbHVlLlxuICAgKi9cbiAgcmVhZG9ubHkgc3RhY2tOYW1lVmFyaWFibGU6IElTdHJpbmdWYXJpYWJsZTtcbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbmF0aW9uIGZvciBhd3M6ZGVsZXRlU3RhY2tcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi1kZWxldGVzdGFjay5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBEZWxldGVTdGFja1N0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG5cbiAgcmVhZG9ubHkgcm9sZUFybj86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgc3RhY2tOYW1lVmFyaWFibGU6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgYWN0aW9uOiBzdHJpbmcgPSAnYXdzOmRlbGV0ZVN0YWNrJztcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogRGVsZXRlU3RhY2tTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLnJvbGVBcm4gPSBwcm9wcy5yb2xlQXJuO1xuICAgIHRoaXMuc3RhY2tOYW1lVmFyaWFibGUgPSBwcm9wcy5zdGFja05hbWVWYXJpYWJsZTtcbiAgfVxuXG4gIC8qKlxuICAgICAqIE5vIG91dHB1dHMgZW1pdHRlZCBmcm9tIERlbGV0ZSBTdGFjayBzdGVwXG4gICAgICogQHJldHVybnMgW11cbiAgICAgKi9cbiAgcHVibGljIGxpc3RPdXRwdXRzKCk6IE91dHB1dFtdIHtcbiAgICByZXR1cm4gW107XG4gIH1cblxuICAvKipcbiAgICAgKiBUaGUgaW5wdXQgcmVxdWlyZWQgZm9yIHRoaXMgc3RlcCBpcyB0aGUgc3RhY2tOYW1lVmFyaWFibGUuXG4gICAgICogQHJldHVybnMgdGhlIHN0YWNrTmFtZVZhcmlhYmxlIGFzIGRlY2xhcmVkIGluIHRoZSBjb25zdHJ1Y3RvclxuICAgICAqL1xuICBwdWJsaWMgbGlzdElucHV0cygpOiBzdHJpbmdbXSB7XG4gICAgcmV0dXJuIFtcbiAgICAgIC4uLnRoaXMuc3RhY2tOYW1lVmFyaWFibGUucmVxdWlyZWRJbnB1dHMoKSxcbiAgICAgIC4uLnRoaXMucm9sZUFybiA9PSB1bmRlZmluZWQgPyBbXSA6IHRoaXMucm9sZUFybi5yZXF1aXJlZElucHV0cygpLFxuICAgIF07XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgY29uc3QgaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSA9IHtcbiAgICAgIFN0YWNrTmFtZTogdGhpcy5zdGFja05hbWVWYXJpYWJsZS5wcmludCgpLFxuICAgICAgQ2xpZW50UmVxdWVzdFRva2VuOiBgJHt0aGlzLnN0YWNrTmFtZVZhcmlhYmxlLnByaW50KCl9e3sgYXV0b21hdGlvbjpFWEVDVVRJT05fSUQgfX1gLFxuICAgIH07XG4gICAgaWYgKHRoaXMucm9sZUFybiAhPSB1bmRlZmluZWQpIHtcbiAgICAgIGlucHV0cy5Sb2xlQVJOID0gdGhpcy5yb2xlQXJuO1xuICAgIH1cbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGlucHV0cyk7XG4gIH1cblxufVxuIl19
@@ -94,5 +94,5 @@ class ExecuteAutomationStep extends automation_step_1.AutomationStep {
94
94
  }
95
95
  exports.ExecuteAutomationStep = ExecuteAutomationStep;
96
96
  _a = JSII_RTTI_SYMBOL_1;
97
- ExecuteAutomationStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteAutomationStep", version: "0.0.59" };
97
+ ExecuteAutomationStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteAutomationStep", version: "0.0.61" };
98
98
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0ZS1hdXRvbWF0aW9uLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vZXhlY3V0ZS1hdXRvbWF0aW9uLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFDQSxzREFBc0Q7QUFLdEQsd0RBQXlFO0FBd0R6RTs7O0dBR0c7QUFDSCxNQUFhLHFCQUFzQixTQUFRLGdDQUFjO0lBZXZELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBaUM7UUFDekUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFIakIsV0FBTSxHQUFHLHVCQUF1QixDQUFDO1FBSXhDLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQztRQUN2QyxJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQyxlQUFlLENBQUM7UUFDN0MsSUFBSSxDQUFDLGNBQWMsR0FBRyxLQUFLLENBQUMsY0FBYyxDQUFDO1FBQzNDLElBQUksQ0FBQyxTQUFTLEdBQUcsS0FBSyxDQUFDLFNBQVMsQ0FBQztRQUNqQyxJQUFJLENBQUMsaUJBQWlCLEdBQUcsS0FBSyxDQUFDLGlCQUFpQixDQUFDO1FBQ2pELElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztRQUN2QixJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQyxlQUFlLENBQUM7UUFDN0MsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDO1FBQ25DLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUMsbUJBQW1CLENBQUM7UUFDckQsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDO0lBQy9CLENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxNQUFNLEdBQUc7WUFDYixJQUFJLENBQUMsWUFBWTtZQUNqQixJQUFJLENBQUMsZUFBZTtZQUNwQixJQUFJLENBQUMsY0FBYztZQUNuQixJQUFJLENBQUMsU0FBUztZQUNkLElBQUksQ0FBQyxpQkFBaUI7WUFDdEIsSUFBSSxDQUFDLElBQUk7WUFDVCxJQUFJLENBQUMsZUFBZTtZQUNwQixJQUFJLENBQUMsVUFBVTtZQUNmLElBQUksQ0FBQyxtQkFBbUI7WUFDeEIsSUFBSSxDQUFDLE9BQU87U0FDYixDQUFDO1FBQ0YsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFRCxXQUFXO1FBQ1QsT0FBTyxDQUFDO2dCQUNOLFVBQVUsRUFBRSx3QkFBWSxDQUFDLFdBQVc7Z0JBQ3BDLElBQUksRUFBRSxRQUFRO2dCQUNkLFFBQVEsRUFBRSxVQUFVO2FBQ3JCO1lBQ0Q7Z0JBQ0UsVUFBVSxFQUFFLHdCQUFZLENBQUMsTUFBTTtnQkFDL0IsSUFBSSxFQUFFLGFBQWE7Z0JBQ25CLFFBQVEsRUFBRSxlQUFlO2FBQzFCO1lBQ0Q7Z0JBQ0UsVUFBVSxFQUFFLHdCQUFZLENBQUMsTUFBTTtnQkFDL0IsSUFBSSxFQUFFLFFBQVE7Z0JBQ2QsUUFBUSxFQUFFLFVBQVU7YUFDckIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBNEI7WUFDdEMsWUFBWSxFQUFFLElBQUksQ0FBQyxZQUFZO1NBQ2hDLENBQUM7UUFDRixJQUFJLElBQUksQ0FBQyxlQUFlLElBQUksU0FBUyxFQUFFLENBQUM7WUFDdEMsTUFBTSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDO1FBQ2hELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxjQUFjLElBQUksU0FBUyxFQUFFLENBQUM7WUFDckMsTUFBTSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUMsY0FBYyxDQUFDO1FBQzlDLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxTQUFTLElBQUksU0FBUyxFQUFFLENBQUM7WUFDaEMsTUFBTSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDO1FBQ3BDLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxTQUFTLEVBQUUsQ0FBQztZQUN4QyxNQUFNLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDO1FBQ3BELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxJQUFJLElBQUksU0FBUyxFQUFFLENBQUM7WUFDM0IsTUFBTSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDO1FBQzFCLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxlQUFlLElBQUksU0FBUyxFQUFFLENBQUM7WUFDdEMsTUFBTSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDO1FBQ2hELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7WUFDakMsTUFBTSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDO1FBQ3RDLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxtQkFBbUIsSUFBSSxTQUFTLEVBQUUsQ0FBQztZQUMxQyxNQUFNLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDO1FBQ3hELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxPQUFPLElBQUksU0FBUyxFQUFFLENBQUM7WUFDOUIsTUFBTSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDO1FBQ2hDLENBQUM7UUFDRCxNQUFNLFdBQVcsR0FBRyxLQUFLLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQ2xELE1BQU0sRUFBRSxPQUFPLEVBQUUsR0FBRyxNQUFNLEVBQUUsR0FBRyxXQUFXLENBQUM7UUFDM0MsT0FBTyxNQUFNLENBQUM7SUFDaEIsQ0FBQzs7QUFqR0gsc0RBbUdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLi9kb21haW4vZGF0YS10eXBlJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgSU1hcExpc3RWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvbWFwLWxpc3QtdmFyaWFibGUnO1xuaW1wb3J0IHsgSVN0cmluZ01hcFZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy9zdHJpbmctbWFwLXZhcmlhYmxlJztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuZXhwb3J0IGludGVyZmFjZSBFeGVjdXRlQXV0b21hdGlvblN0ZXBQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuXG4gIC8qXG4gICogVGhlIG5hbWUgb2YgdGhlIHNlY29uZGFyeSBydW5ib29rIHRvIHJ1biBkdXJpbmcgdGhlIHN0ZXAuIEZvciBydW5ib29rcyBpbiB0aGUgc2FtZSBBV1MgYWNjb3VudCwgc3BlY2lmeSB0aGUgcnVuYm9vayBuYW1lLiBGb3IgcnVuYm9va3Mgc2hhcmVkIGZyb20gYSBkaWZmZXJlbnQgQVdTIGFjY291bnQsIHNwZWNpZnkgdGhlIEFtYXpvbiBSZXNvdXJjZSBOYW1lIChBUk4pIG9mIHRoZSBydW5ib29rLiBGb3IgaW5mb3JtYXRpb24gYWJvdXQgdXNpbmcgc2hhcmVkIHJ1bmJvb2tzLCBzZWUgVXNpbmcgc2hhcmVkIFNTTSBkb2N1bWVudHMuXG4gICovXG4gIHJlYWRvbmx5IGRvY3VtZW50TmFtZTogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qXG4gICogVGhlIHZlcnNpb24gb2YgdGhlIHNlY29uZGFyeSBydW5ib29rIHRvIHJ1bi4gSWYgbm90IHNwZWNpZmllZCwgQXV0b21hdGlvbiBydW5zIHRoZSBkZWZhdWx0IHJ1bmJvb2sgdmVyc2lvbi5cbiAgKi9cbiAgcmVhZG9ubHkgZG9jdW1lbnRWZXJzaW9uPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qXG4gICogVGhlIG1heGltdW0gbnVtYmVyIG9mIHRhcmdldHMgYWxsb3dlZCB0byBydW4gdGhpcyB0YXNrIGluIHBhcmFsbGVsLiBZb3UgY2FuIHNwZWNpZnkgYSBudW1iZXIsIHN1Y2ggYXMgMTAsIG9yIGEgcGVyY2VudGFnZSwgc3VjaCBhcyAxMCUuXG4gICovXG4gIHJlYWRvbmx5IG1heENvbmN1cnJlbmN5PzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qXG4gICogVGhlIG51bWJlciBvZiBlcnJvcnMgdGhhdCBhcmUgYWxsb3dlZCBiZWZvcmUgdGhlIHN5c3RlbSBzdG9wcyBydW5uaW5nIHRoZSBhdXRvbWF0aW9uIG9uIGFkZGl0aW9uYWwgdGFyZ2V0cy4gWW91IGNhbiBzcGVjaWZ5IGVpdGhlciBhbiBhYnNvbHV0ZSBudW1iZXIgb2YgZXJyb3JzLCBmb3IgZXhhbXBsZSAxMCwgb3IgYSBwZXJjZW50YWdlIG9mIHRoZSB0YXJnZXQgc2V0LCBmb3IgZXhhbXBsZSAxMCUuIElmIHlvdSBzcGVjaWZ5IDMsIGZvciBleGFtcGxlLCB0aGUgc3lzdGVtIHN0b3BzIHJ1bm5pbmcgdGhlIGF1dG9tYXRpb24gd2hlbiB0aGUgZm91cnRoIGVycm9yIGlzIHJlY2VpdmVkLiBJZiB5b3Ugc3BlY2lmeSAwLCB0aGVuIHRoZSBzeXN0ZW0gc3RvcHMgcnVubmluZyB0aGUgYXV0b21hdGlvbiBvbiBhZGRpdGlvbmFsIHRhcmdldHMgYWZ0ZXIgdGhlIGZpcnN0IGVycm9yIHJlc3VsdCBpcyByZXR1cm5lZC4gSWYgeW91IHJ1biBhbiBhdXRvbWF0aW9uIG9uIDUwIHJlc291cmNlcyBhbmQgc2V0IE1heEVycm9ycyB0byAxMCUsIHRoZW4gdGhlIHN5c3RlbSBzdG9wcyBydW5uaW5nIHRoZSBhdXRvbWF0aW9uIG9uIGFkZGl0aW9uYWwgdGFyZ2V0cyB3aGVuIHRoZSBzaXh0aCBlcnJvciBpcyByZWNlaXZlZC5cbiAgKi9cbiAgcmVhZG9ubHkgbWF4RXJyb3JzPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qXG4gICogUmVxdWlyZWQgcGFyYW1ldGVycyBmb3IgdGhlIHNlY29uZGFyeSBydW5ib29rLiBUaGUgbWFwcGluZyB1c2VzIHRoZSBmb2xsb3dpbmcgZm9ybWF0OiB7XCJwYXJhbWV0ZXIxXCIgOiBcInZhbHVlMVwiLCBcInBhcmFtZXRlcjJcIiA6IFwidmFsdWUyXCIgfVxuICAqL1xuICByZWFkb25seSBydW50aW1lUGFyYW1ldGVycz86IElTdHJpbmdNYXBWYXJpYWJsZTtcblxuICAvKlxuICAqIE9wdGlvbmFsIG1ldGFkYXRhIHRoYXQgeW91IGFzc2lnbiB0byBhIHJlc291cmNlLiBZb3UgY2FuIHNwZWNpZnkgYSBtYXhpbXVtIG9mIGZpdmUgdGFncyBmb3IgYW4gYXV0b21hdGlvbi5cbiAgKi9cbiAgcmVhZG9ubHkgdGFncz86IElNYXBMaXN0VmFyaWFibGU7XG5cbiAgLypcbiAgKiBBIGxvY2F0aW9uIGlzIGEgY29tYmluYXRpb24gb2YgQVdTIFJlZ2lvbnMgYW5kL29yIEFXUyBhY2NvdW50cyB3aGVyZSB5b3Ugd2FudCB0byBydW4gdGhlIGF1dG9tYXRpb24uIEEgbWluaW11bSBudW1iZXIgb2YgMSBpdGVtIG11c3QgYmUgc3BlY2lmaWVkIGFuZCBhIG1heGltdW0gbnVtYmVyIG9mIDEwMCBpdGVtcyBjYW4gYmUgc3BlY2lmaWVkLlxuICAqL1xuICByZWFkb25seSB0YXJnZXRMb2NhdGlvbnM/OiBJTWFwTGlzdFZhcmlhYmxlO1xuXG4gIC8qXG4gICogQSBsaXN0IG9mIGtleS12YWx1ZSBtYXBwaW5ncyBvZiBkb2N1bWVudCBwYXJhbWV0ZXJzIHRvIHRhcmdldCByZXNvdXJjZXMuIEJvdGggVGFyZ2V0cyBhbmQgVGFyZ2V0TWFwcyBjYW4ndCBiZSBzcGVjaWZpZWQgdG9nZXRoZXIuXG4gICovXG4gIHJlYWRvbmx5IHRhcmdldE1hcHM/OiBJTWFwTGlzdFZhcmlhYmxlO1xuXG4gIC8qXG4gICogVGhlIG5hbWUgb2YgdGhlIHBhcmFtZXRlciB1c2VkIGFzIHRoZSB0YXJnZXQgcmVzb3VyY2UgZm9yIHRoZSByYXRlLWNvbnRyb2xsZWQgYXV0b21hdGlvbi4gUmVxdWlyZWQgaWYgeW91IHNwZWNpZnkgVGFyZ2V0cy5cbiAgKi9cbiAgcmVhZG9ubHkgdGFyZ2V0UGFyYW1ldGVyTmFtZT86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKlxuICAqIEEgbGlzdCBvZiBrZXktdmFsdWUgbWFwcGluZ3MgdG8gdGFyZ2V0IHJlc291cmNlcy4gUmVxdWlyZWQgaWYgeW91IHNwZWNpZnkgVGFyZ2V0UGFyYW1ldGVyTmFtZS5cbiAgKi9cbiAgcmVhZG9ubHkgdGFyZ2V0cz86IElNYXBMaXN0VmFyaWFibGU7XG5cbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbnRhdGlvbiBmb3IgYXdzOmV4ZWN1dGVBdXRvbWF0aW9uXG4gKiBodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvYXV0b21hdGlvbi1hY3Rpb24tZXhlY3V0ZUF1dG9tYXRpb24uaHRtbFxuICovXG5leHBvcnQgY2xhc3MgRXhlY3V0ZUF1dG9tYXRpb25TdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuXG4gIHJlYWRvbmx5IGRvY3VtZW50TmFtZTogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBkb2N1bWVudFZlcnNpb24/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IG1heENvbmN1cnJlbmN5PzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBtYXhFcnJvcnM/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHJ1bnRpbWVQYXJhbWV0ZXJzPzogSVN0cmluZ01hcFZhcmlhYmxlO1xuICByZWFkb25seSB0YWdzPzogSU1hcExpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgdGFyZ2V0TG9jYXRpb25zPzogSU1hcExpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgdGFyZ2V0TWFwcz86IElNYXBMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IHRhcmdldFBhcmFtZXRlck5hbWU/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHRhcmdldHM/OiBJTWFwTGlzdFZhcmlhYmxlO1xuXG4gIHJlYWRvbmx5IGFjdGlvbiA9ICdhd3M6ZXhlY3V0ZUF1dG9tYXRpb24nO1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBFeGVjdXRlQXV0b21hdGlvblN0ZXBQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICAgIHRoaXMuZG9jdW1lbnROYW1lID0gcHJvcHMuZG9jdW1lbnROYW1lO1xuICAgIHRoaXMuZG9jdW1lbnRWZXJzaW9uID0gcHJvcHMuZG9jdW1lbnRWZXJzaW9uO1xuICAgIHRoaXMubWF4Q29uY3VycmVuY3kgPSBwcm9wcy5tYXhDb25jdXJyZW5jeTtcbiAgICB0aGlzLm1heEVycm9ycyA9IHByb3BzLm1heEVycm9ycztcbiAgICB0aGlzLnJ1bnRpbWVQYXJhbWV0ZXJzID0gcHJvcHMucnVudGltZVBhcmFtZXRlcnM7XG4gICAgdGhpcy50YWdzID0gcHJvcHMudGFncztcbiAgICB0aGlzLnRhcmdldExvY2F0aW9ucyA9IHByb3BzLnRhcmdldExvY2F0aW9ucztcbiAgICB0aGlzLnRhcmdldE1hcHMgPSBwcm9wcy50YXJnZXRNYXBzO1xuICAgIHRoaXMudGFyZ2V0UGFyYW1ldGVyTmFtZSA9IHByb3BzLnRhcmdldFBhcmFtZXRlck5hbWU7XG4gICAgdGhpcy50YXJnZXRzID0gcHJvcHMudGFyZ2V0cztcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLmRvY3VtZW50TmFtZSxcbiAgICAgIHRoaXMuZG9jdW1lbnRWZXJzaW9uLFxuICAgICAgdGhpcy5tYXhDb25jdXJyZW5jeSxcbiAgICAgIHRoaXMubWF4RXJyb3JzLFxuICAgICAgdGhpcy5ydW50aW1lUGFyYW1ldGVycyxcbiAgICAgIHRoaXMudGFncyxcbiAgICAgIHRoaXMudGFyZ2V0TG9jYXRpb25zLFxuICAgICAgdGhpcy50YXJnZXRNYXBzLFxuICAgICAgdGhpcy50YXJnZXRQYXJhbWV0ZXJOYW1lLFxuICAgICAgdGhpcy50YXJnZXRzLFxuICAgIF07XG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBsaXN0T3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIFt7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HX0xJU1QsXG4gICAgICBuYW1lOiAnT3V0cHV0JyxcbiAgICAgIHNlbGVjdG9yOiAnJC5PdXRwdXQnLFxuICAgIH0sXG4gICAge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdFeGVjdXRpb25JZCcsXG4gICAgICBzZWxlY3RvcjogJyQuRXhlY3V0aW9uSWQnLFxuICAgIH0sXG4gICAge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdTdGF0dXMnLFxuICAgICAgc2VsZWN0b3I6ICckLlN0YXR1cycsXG4gICAgfV07XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgY29uc3QgaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSA9IHtcbiAgICAgIERvY3VtZW50TmFtZTogdGhpcy5kb2N1bWVudE5hbWUsXG4gICAgfTtcbiAgICBpZiAodGhpcy5kb2N1bWVudFZlcnNpb24gIT0gdW5kZWZpbmVkKSB7XG4gICAgICBpbnB1dHMuRG9jdW1lbnRWZXJzaW9uID0gdGhpcy5kb2N1bWVudFZlcnNpb247XG4gICAgfVxuICAgIGlmICh0aGlzLm1heENvbmN1cnJlbmN5ICE9IHVuZGVmaW5lZCkge1xuICAgICAgaW5wdXRzLk1heENvbmN1cnJlbmN5ID0gdGhpcy5tYXhDb25jdXJyZW5jeTtcbiAgICB9XG4gICAgaWYgKHRoaXMubWF4RXJyb3JzICE9IHVuZGVmaW5lZCkge1xuICAgICAgaW5wdXRzLk1heEVycm9ycyA9IHRoaXMubWF4RXJyb3JzO1xuICAgIH1cbiAgICBpZiAodGhpcy5ydW50aW1lUGFyYW1ldGVycyAhPSB1bmRlZmluZWQpIHtcbiAgICAgIGlucHV0cy5SdW50aW1lUGFyYW1ldGVycyA9IHRoaXMucnVudGltZVBhcmFtZXRlcnM7XG4gICAgfVxuICAgIGlmICh0aGlzLnRhZ3MgIT0gdW5kZWZpbmVkKSB7XG4gICAgICBpbnB1dHMuVGFncyA9IHRoaXMudGFncztcbiAgICB9XG4gICAgaWYgKHRoaXMudGFyZ2V0TG9jYXRpb25zICE9IHVuZGVmaW5lZCkge1xuICAgICAgaW5wdXRzLlRhcmdldExvY2F0aW9ucyA9IHRoaXMudGFyZ2V0TG9jYXRpb25zO1xuICAgIH1cbiAgICBpZiAodGhpcy50YXJnZXRNYXBzICE9IHVuZGVmaW5lZCkge1xuICAgICAgaW5wdXRzLlRhcmdldE1hcHMgPSB0aGlzLnRhcmdldE1hcHM7XG4gICAgfVxuICAgIGlmICh0aGlzLnRhcmdldFBhcmFtZXRlck5hbWUgIT0gdW5kZWZpbmVkKSB7XG4gICAgICBpbnB1dHMuVGFyZ2V0UGFyYW1ldGVyTmFtZSA9IHRoaXMudGFyZ2V0UGFyYW1ldGVyTmFtZTtcbiAgICB9XG4gICAgaWYgKHRoaXMudGFyZ2V0cyAhPSB1bmRlZmluZWQpIHtcbiAgICAgIGlucHV0cy5UYXJnZXRzID0gdGhpcy50YXJnZXRzO1xuICAgIH1cbiAgICBjb25zdCBlbnRpcmVFbnRyeSA9IHN1cGVyLnByZXBhcmVTc21FbnRyeShpbnB1dHMpO1xuICAgIGNvbnN0IHsgb3V0cHV0cywgLi4ubmV3T2JqIH0gPSBlbnRpcmVFbnRyeTtcbiAgICByZXR1cm4gbmV3T2JqO1xuICB9XG5cbn0iXX0=
@@ -35,7 +35,7 @@ class ScriptCode {
35
35
  }
36
36
  exports.ScriptCode = ScriptCode;
37
37
  _a = JSII_RTTI_SYMBOL_1;
38
- ScriptCode[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ScriptCode", version: "0.0.59" };
38
+ ScriptCode[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ScriptCode", version: "0.0.61" };
39
39
  class InlineScriptCode extends ScriptCode {
40
40
  static toFile(data, suffix) {
41
41
  const tempDir = path.join(os.tmpdir(), 'tmp' + new Date().getSeconds() + Math.floor(Math.random() * 100000));
@@ -58,7 +58,7 @@ class InlineScriptCode extends ScriptCode {
58
58
  }
59
59
  exports.InlineScriptCode = InlineScriptCode;
60
60
  _b = JSII_RTTI_SYMBOL_1;
61
- InlineScriptCode[_b] = { fqn: "@cdklabs/cdk-ssm-documents.InlineScriptCode", version: "0.0.59" };
61
+ InlineScriptCode[_b] = { fqn: "@cdklabs/cdk-ssm-documents.InlineScriptCode", version: "0.0.61" };
62
62
  class FileScriptCode extends ScriptCode {
63
63
  constructor(fullPath) {
64
64
  super();
@@ -73,7 +73,7 @@ class FileScriptCode extends ScriptCode {
73
73
  }
74
74
  exports.FileScriptCode = FileScriptCode;
75
75
  _c = JSII_RTTI_SYMBOL_1;
76
- FileScriptCode[_c] = { fqn: "@cdklabs/cdk-ssm-documents.FileScriptCode", version: "0.0.59" };
76
+ FileScriptCode[_c] = { fqn: "@cdklabs/cdk-ssm-documents.FileScriptCode", version: "0.0.61" };
77
77
  /**
78
78
  * Python runtime to use when writing SSM Document.
79
79
  * Simulation will use local python version.
@@ -121,7 +121,7 @@ class ScriptLanguage {
121
121
  }
122
122
  exports.ScriptLanguage = ScriptLanguage;
123
123
  _d = JSII_RTTI_SYMBOL_1;
124
- ScriptLanguage[_d] = { fqn: "@cdklabs/cdk-ssm-documents.ScriptLanguage", version: "0.0.59" };
124
+ ScriptLanguage[_d] = { fqn: "@cdklabs/cdk-ssm-documents.ScriptLanguage", version: "0.0.61" };
125
125
  class PythonScript extends ScriptLanguage {
126
126
  constructor(version, handlerName) {
127
127
  super();
@@ -193,5 +193,5 @@ class ExecuteScriptStep extends automation_step_1.AutomationStep {
193
193
  }
194
194
  exports.ExecuteScriptStep = ExecuteScriptStep;
195
195
  _e = JSII_RTTI_SYMBOL_1;
196
- ExecuteScriptStep[_e] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteScriptStep", version: "0.0.59" };
196
+ ExecuteScriptStep[_e] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteScriptStep", version: "0.0.61" };
197
197
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0ZS1zY3JpcHQtc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9leGVjdXRlLXNjcmlwdC1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEseUJBQXlCO0FBSXpCLDhFQUF5RTtBQUN6RSx3REFBeUU7QUFDekUsMkJBQTJCO0FBQzNCLE1BQU0sSUFBSSxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQztBQUM3QiwyQkFBMkI7QUFDM0IsTUFBTSxFQUFFLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO0FBRXpCOzs7OztHQUtHO0FBQ0gsTUFBc0IsVUFBVTtJQUM5Qjs7O09BR0c7SUFDSCxNQUFNLENBQUMsTUFBTSxDQUFDLElBQVk7UUFDeEIsT0FBTyxJQUFJLGdCQUFnQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3BDLENBQUM7SUFDRDs7OztPQUlHO0lBQ0gsTUFBTSxDQUFDLFFBQVEsQ0FBQyxRQUFnQjtRQUM5QixPQUFPLElBQUksY0FBYyxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ3RDLENBQUM7O0FBZkgsZ0NBNEJDOzs7QUFFRCxNQUFhLGdCQUFpQixTQUFRLFVBQVU7SUFDdEMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFZLEVBQUUsTUFBYztRQUNoRCxNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxNQUFNLEVBQUUsRUFBRSxLQUFLLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQyxVQUFVLEVBQUUsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDO1FBQzdHLEVBQUUsQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDdEIsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsV0FBVyxHQUFHLE1BQU0sQ0FBQyxDQUFDO1FBQzFELEVBQUUsQ0FBQyxhQUFhLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ2pDLE9BQU8sQ0FBQyxHQUFHLENBQUMsOEJBQThCLFFBQVEsRUFBRSxDQUFDLENBQUM7UUFDdEQsT0FBTyxRQUFRLENBQUM7SUFDbEIsQ0FBQztJQUdELFlBQVksVUFBa0I7UUFDNUIsS0FBSyxFQUFFLENBQUM7UUFDUixJQUFJLENBQUMsVUFBVSxHQUFHLFVBQVUsQ0FBQztJQUMvQixDQUFDO0lBRUQsWUFBWTtRQUNWLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQztJQUN6QixDQUFDO0lBRUQsZUFBZSxDQUFDLE1BQWM7UUFDNUIsT0FBTyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxNQUFNLENBQUMsQ0FBQztJQUMxRCxDQUFDOztBQXRCSCw0Q0F1QkM7OztBQUVELE1BQWEsY0FBZSxTQUFRLFVBQVU7SUFFNUMsWUFBWSxRQUFnQjtRQUMxQixLQUFLLEVBQUUsQ0FBQztRQUNSLElBQUksQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO0lBQzNCLENBQUM7SUFDRCxZQUFZO1FBQ1YsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsTUFBTSxDQUFDLENBQUM7SUFDaEQsQ0FBQztJQUVELGVBQWUsQ0FBQyxPQUFlO1FBQzdCLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN2QixDQUFDOztBQVpILHdDQWFDOzs7QUFFRDs7O0dBR0c7QUFDSCxJQUFZLGFBTVg7QUFORCxXQUFZLGFBQWE7SUFDdkIsK0RBQVcsQ0FBQTtJQUNYLCtEQUFXLENBQUE7SUFDWCwrREFBVyxDQUFBO0lBQ1gsaUVBQVksQ0FBQTtJQUNaLGlFQUFZLENBQUE7QUFDZCxDQUFDLEVBTlcsYUFBYSw2QkFBYixhQUFhLFFBTXhCO0FBRUQ7OztHQUdHO0FBQ0gsTUFBc0IsY0FBYztJQUVsQzs7OztPQUlHO0lBQ0gsTUFBTSxDQUFDLE1BQU0sQ0FBQyxPQUFzQixFQUFFLFdBQW1CO1FBQ3ZELE9BQU8sSUFBSSxZQUFZLENBQUMsT0FBTyxFQUFFLFdBQVcsQ0FBQyxDQUFDO0lBQ2hELENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILE1BQU0sQ0FBQyxXQUFXLENBQUMsT0FBZSxFQUFFLFdBQW9CO1FBQ3RELElBQUksT0FBTyxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDO1lBQ2pDLE9BQU8sY0FBYyxDQUFDLE1BQU0sQ0FBQyxjQUFjLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxFQUFFLFdBQVksQ0FBQyxDQUFDO1FBQ3BGLENBQUM7UUFDRCxNQUFNLElBQUksS0FBSyxDQUFDLCtCQUErQixHQUFHLE9BQU8sQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFTyxNQUFNLENBQUMsYUFBYSxDQUFDLE9BQWU7UUFDMUMsTUFBTSxPQUFPLEdBQUcsWUFBWSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRXhELElBQUksT0FBTyxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQzFCLE1BQU0sSUFBSSxLQUFLLENBQUMsOEJBQThCLEdBQUcsT0FBTyxDQUFDLENBQUM7UUFDNUQsQ0FBQztRQUVELE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7O0FBaENILHdDQXNEQzs7O0FBRUQsTUFBTSxZQUFhLFNBQVEsY0FBYztJQUd2QyxZQUFZLE9BQXNCLEVBQUUsV0FBbUI7UUFDckQsS0FBSyxFQUFFLENBQUM7UUFDUixJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztRQUN2QixJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQztJQUNqQyxDQUFDO0lBa0JELE9BQU87UUFDTCxPQUFPLFlBQVksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDdEQsQ0FBQztJQUVELFVBQVU7UUFDUixPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7SUFFRCxTQUFTO1FBQ1AsT0FBTztZQUNMLE9BQU8sRUFBRSxJQUFJLENBQUMsV0FBVztZQUN6QixPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBRTtTQUN4QixDQUFDO0lBQ0osQ0FBQztJQUVELFFBQVEsQ0FBQyxJQUFnQixFQUFFLE1BQStCO1FBQ3hELE1BQU0sU0FBUyxHQUFHLElBQUksMkNBQW1CLEVBQUUsQ0FBQztRQUM1QyxPQUFPLFNBQVMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsRUFBRSxJQUFJLENBQUMsV0FBVyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQzFGLENBQUM7O0FBbENhLDhCQUFpQixHQUFrQztJQUMvRCxXQUFXLEVBQUUsYUFBYSxDQUFDLFdBQVc7SUFDdEMsV0FBVyxFQUFFLGFBQWEsQ0FBQyxXQUFXO0lBQ3RDLFdBQVcsRUFBRSxhQUFhLENBQUMsV0FBVztJQUN0QyxZQUFZLEVBQUUsYUFBYSxDQUFDLFlBQVk7SUFDeEMsWUFBWSxFQUFFLGFBQWEsQ0FBQyxZQUFZO0NBQ3pDLENBQUE7QUFFYSw4QkFBaUIsR0FBa0M7SUFDL0QsQ0FBQyxhQUFhLENBQUMsV0FBVyxDQUFDLEVBQUUsV0FBVztJQUN4QyxDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUMsRUFBRSxXQUFXO0lBQ3hDLENBQUMsYUFBYSxDQUFDLFdBQVcsQ0FBQyxFQUFFLFdBQVc7SUFDeEMsQ0FBQyxhQUFhLENBQUMsWUFBWSxDQUFDLEVBQUUsWUFBWTtJQUMxQyxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUMsRUFBRSxZQUFZO0NBQzNDLENBQUE7QUF1REg7OztHQUdHO0FBQ0gsTUFBYSxpQkFBa0IsU0FBUSxnQ0FBYztJQVFuRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTZCO1FBQ3JFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBSGpCLFdBQU0sR0FBVyxtQkFBbUIsQ0FBQztRQUk1QyxJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQyxRQUFRLENBQUM7UUFDL0IsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDLE9BQU8sSUFBSSxFQUFFLENBQUM7UUFDbkMsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDO1FBQ2pDLE1BQU0saUJBQWlCLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUM7UUFDNUYsSUFBSSxpQkFBaUIsQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUFFLENBQUM7WUFDbEMsTUFBTSxJQUFJLEtBQUssQ0FBQyxzRUFBc0U7Z0JBQ3BGLHNCQUFzQixJQUFJLENBQUMsU0FBUyxDQUFDLGlCQUFpQixDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQy9ELENBQUM7SUFDSCxDQUFDO0lBRU0sZUFBZTtRQUNwQixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUM7SUFDdEIsQ0FBQztJQUVNLFVBQVU7UUFDZixPQUFPLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUM1RSxDQUFDO0lBRU0sVUFBVTtRQUNmLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztZQUMxQixHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxFQUFFO1lBQzVCLE1BQU0sRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRTtZQUNoQyxZQUFZLEVBQUUsSUFBSSxDQUFDLE1BQU07U0FDMUIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7QUFuQ0gsOENBcUNDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgZnMgZnJvbSAnZnMnO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IElHZW5lcmljVmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3ZhcmlhYmxlJztcbmltcG9ydCB7IFB5dGhvblNjcmlwdEhhbmRsZXIgfSBmcm9tICcuLi8uLi9zY3JpcHQvcHl0aG9uLXNjcmlwdC1oYW5kbGVyJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZVxuY29uc3QgcGF0aCA9IHJlcXVpcmUoJ3BhdGgnKTtcbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZVxuY29uc3Qgb3MgPSByZXF1aXJlKCdvcycpO1xuXG4vKipcbiAqIFRoZSBjb2RlIHRvIHJ1biBmb3IgdGhlIGV4ZWN1dGlvbi5cbiAqIFNlZSBcInNjcmlwdFwiIHBhcmFtZXRlciBoZXJlOlxuICogaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWV4ZWN1dGVTY3JpcHQuaHRtbFxuICogQXR0YWNobWVudHMgYXJlIG5vdCB5ZXQgc3VwcG9ydGVkLlxuICovXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgU2NyaXB0Q29kZSB7XG4gIC8qKlxuICAgKiBJbmxpbmUgY29kZSB0byBiZSBleGVjdXRlZC4gU3RyaW5nIHdpbGwgYmUgdXNlZCB0byBwcm9kdWNlIGZ1bmN0aW9uIGluIHlhbWwvanNvbi5cbiAgICogU2ltdWxhdGlvbiB3aWxsIGV4ZWN1dGUgdGhlIGZ1bmN0aW9uIGluIHRoaXMgc3RyaW5nIHVzaW5nIHRoZSBsYW5ndWFnZSBzcGVjaWZpZWQuXG4gICAqL1xuICBzdGF0aWMgaW5saW5lKGNvZGU6IHN0cmluZykge1xuICAgIHJldHVybiBuZXcgSW5saW5lU2NyaXB0Q29kZShjb2RlKTtcbiAgfVxuICAvKipcbiAgICogRnVsbCBwYXRoIHRvIHRoZSBjb2RlIHRvIGV4ZWN1dGUuIEZpbGUgaXMgcGFyc2VkIHRvIHByb2R1Y2UgeWFtbC9qc29uLlxuICAgKiBTaW11bGF0aW9uIHdpbGwgZXhlY3V0ZSB0aGlzIGZpbGUgdXNpbmcgdGhlIGxhbmd1YWdlIHNwZWNpZmllZC5cbiAgICogKEF0dGFjaG1lbnRzIG5vdCB5ZXQgc3VwcG9ydGVkKVxuICAgKi9cbiAgc3RhdGljIGZyb21GaWxlKGZ1bGxQYXRoOiBzdHJpbmcpIHtcbiAgICByZXR1cm4gbmV3IEZpbGVTY3JpcHRDb2RlKGZ1bGxQYXRoKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBAcmV0dXJucyBjb2RlIGFzIGEgc3RyaW5nXG4gICAqL1xuICBhYnN0cmFjdCBjb2RlQXNTdHJpbmcoKTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBJZiB0aGVyZSBpcyBhIGZpbGUgZm9yIHRoaXMgY29kZSwgcmV0dXJuIGl0LlxuICAgKiBPdGhlcndpc2UsIGNyZWF0ZSBhIGZpbGUgd2l0aCB0aGUgc3BlY2lmaWVkIHN1ZmZpeC5cbiAgICogQHBhcmFtIHN1ZmZpeCBvZiB0aGUgZmlsZSB0byBjcmVhdGUgKHN1Y2ggYXMgXCIucHlcIilcbiAgICovXG4gIGFic3RyYWN0IGNyZWF0ZU9yR2V0RmlsZShzdWZmaXg6IHN0cmluZyk6IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIElubGluZVNjcmlwdENvZGUgZXh0ZW5kcyBTY3JpcHRDb2RlIHtcbiAgcHJpdmF0ZSBzdGF0aWMgdG9GaWxlKGRhdGE6IHN0cmluZywgc3VmZml4OiBzdHJpbmcpIHtcbiAgICBjb25zdCB0ZW1wRGlyID0gcGF0aC5qb2luKG9zLnRtcGRpcigpLCAndG1wJyArIG5ldyBEYXRlKCkuZ2V0U2Vjb25kcygpICsgTWF0aC5mbG9vcihNYXRoLnJhbmRvbSgpICogMTAwMDAwKSk7XG4gICAgZnMubWtkaXJTeW5jKHRlbXBEaXIpO1xuICAgIGNvbnN0IHRlbXBGaWxlID0gcGF0aC5qb2luKHRlbXBEaXIsICdleGVjdXRpb24nICsgc3VmZml4KTtcbiAgICBmcy53cml0ZUZpbGVTeW5jKHRlbXBGaWxlLCBkYXRhKTtcbiAgICBjb25zb2xlLmxvZyhgU3VjY2Vzc2Z1bGx5IHdyb3RlIGZpbGUgdG8gJHt0ZW1wRmlsZX1gKTtcbiAgICByZXR1cm4gdGVtcEZpbGU7XG4gIH1cblxuICByZWFkb25seSBpbmxpbmVDb2RlOiBzdHJpbmc7XG4gIGNvbnN0cnVjdG9yKGlubGluZUNvZGU6IHN0cmluZykge1xuICAgIHN1cGVyKCk7XG4gICAgdGhpcy5pbmxpbmVDb2RlID0gaW5saW5lQ29kZTtcbiAgfVxuXG4gIGNvZGVBc1N0cmluZygpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLmlubGluZUNvZGU7XG4gIH1cblxuICBjcmVhdGVPckdldEZpbGUoc3VmZml4OiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiBJbmxpbmVTY3JpcHRDb2RlLnRvRmlsZSh0aGlzLmlubGluZUNvZGUsIHN1ZmZpeCk7XG4gIH1cbn1cblxuZXhwb3J0IGNsYXNzIEZpbGVTY3JpcHRDb2RlIGV4dGVuZHMgU2NyaXB0Q29kZSB7XG4gIHJlYWRvbmx5IGZ1bGxQYXRoOiBzdHJpbmc7XG4gIGNvbnN0cnVjdG9yKGZ1bGxQYXRoOiBzdHJpbmcpIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMuZnVsbFBhdGggPSBmdWxsUGF0aDtcbiAgfVxuICBjb2RlQXNTdHJpbmcoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gZnMucmVhZEZpbGVTeW5jKHRoaXMuZnVsbFBhdGgsICd1dGY4Jyk7XG4gIH1cblxuICBjcmVhdGVPckdldEZpbGUoX3N1ZmZpeDogc3RyaW5nKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5mdWxsUGF0aDtcbiAgfVxufVxuXG4vKipcbiAqIFB5dGhvbiBydW50aW1lIHRvIHVzZSB3aGVuIHdyaXRpbmcgU1NNIERvY3VtZW50LlxuICogU2ltdWxhdGlvbiB3aWxsIHVzZSBsb2NhbCBweXRob24gdmVyc2lvbi5cbiAqL1xuZXhwb3J0IGVudW0gUHl0aG9uVmVyc2lvbiB7XG4gIFZFUlNJT05fM183LFxuICBWRVJTSU9OXzNfOCxcbiAgVkVSU0lPTl8zXzksXG4gIFZFUlNJT05fM18xMCxcbiAgVkVSU0lPTl8zXzExLFxufVxuXG4vKipcbiAqIFNwZWNpZmllcyB0aGUgc2NyaXB0IGxhbmd1YWdlIGFzIGRlc2NyaWJlZCBpbiB0aGUgXCJSdW50aW1lXCIgYXJndW1lbnQgaGVyZTpcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi1leGVjdXRlU2NyaXB0Lmh0bWxcbiAqL1xuZXhwb3J0IGFic3RyYWN0IGNsYXNzIFNjcmlwdExhbmd1YWdlIHtcblxuICAvKipcbiAgICogQ3JlYXRlIGEgbmV3IFNjcmlwdExhbmd1YWdlIGZvciBweXRob24gZXhlY3V0aW9uLlxuICAgKiBAcGFyYW0gdmVyc2lvbiBpcyB0aGUgcHl0aG9uVmVyc2lvbiB0byB1c2Ugd2hlbiB3cml0aW5nIHRoZSBkb2N1bWVudCAoZm9yIHNpbXVsYXRpb24gd2lsbCBub3QgbWF0dGVyKS5cbiAgICogQHBhcmFtIGhhbmRsZXJOYW1lIGlzIHRoZSBmdW5jdGlvbiBuYW1lIGluIGNvZGUgYXMgZW50cnkgcG9pbnQgZm9yIHNjcmlwdCBoYW5kbGVyLlxuICAgKi9cbiAgc3RhdGljIHB5dGhvbih2ZXJzaW9uOiBQeXRob25WZXJzaW9uLCBoYW5kbGVyTmFtZTogc3RyaW5nKTogU2NyaXB0TGFuZ3VhZ2Uge1xuICAgIHJldHVybiBuZXcgUHl0aG9uU2NyaXB0KHZlcnNpb24sIGhhbmRsZXJOYW1lKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDcmVhdGVzIGEgU2NyaXB0TGFuZ3VhZ2UgYmFzZWQgb24gdGhlIHByb3ZpZGVkIHJ1bnRpbWUuXG4gICAqIFByZWZlciBvbmUgb2YgdGhlIG90aGVyIHN0YXRpYyBjb25zdHJ1Y3RvcnMgaWYgcG9zc2libGUuXG4gICAqIEBwYXJhbSBydW50aW1lIGlzIHRoZSBydW50aW1lIG5hbWUgKHN1Y2ggYXMgXCJweXRob24zLjExXCIpLlxuICAgKiBAcGFyYW0gaGFuZGxlck5hbWUgdG8gYmUgcHJvdmlkZWQgZm9yIHB5dGhvbiBleGVjdXRpb25zLlxuICAgKi9cbiAgc3RhdGljIGZyb21SdW50aW1lKHJ1bnRpbWU6IHN0cmluZywgaGFuZGxlck5hbWU/OiBzdHJpbmcpOiBTY3JpcHRMYW5ndWFnZSB7XG4gICAgaWYgKHJ1bnRpbWUuc3RhcnRzV2l0aCgncHl0aG9uJykpIHtcbiAgICAgIHJldHVybiBTY3JpcHRMYW5ndWFnZS5weXRob24oU2NyaXB0TGFuZ3VhZ2UucHl0aG9uVmVyc2lvbihydW50aW1lKSwgaGFuZGxlck5hbWUhKTtcbiAgICB9XG4gICAgdGhyb3cgbmV3IEVycm9yKCdVbnJlY29nbml6ZWQgcnVudGltZSB2ZXJzaW9uICcgKyBydW50aW1lKTtcbiAgfVxuICBcbiAgcHJpdmF0ZSBzdGF0aWMgcHl0aG9uVmVyc2lvbihydW50aW1lOiBzdHJpbmcpIHtcbiAgICBjb25zdCB2ZXJzaW9uID0gUHl0aG9uU2NyaXB0LlNUUklOR19UT19WRVJTSU9OW3J1bnRpbWVdO1xuXG4gICAgaWYgKHZlcnNpb24gPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdVbnJlY29nbml6ZWQgcHl0aG9uIHZlcnNpb24gJyArIHJ1bnRpbWUpO1xuICAgIH1cblxuICAgIHJldHVybiB2ZXJzaW9uO1xuICB9XG5cbiAgLyoqXG4gICAqIEJ1aWxkcyB0aGUgc3NtIGlucHV0cy5cbiAgICovXG4gIGFic3RyYWN0IHNzbUlucHV0cygpOiB7IFtuYW1lOiBzdHJpbmddOiBzdHJpbmcgfTtcblxuICAvKipcbiAgICogVGhlIGFzc29jaWF0ZWQgcnVudGltZSBvZiB0aGlzIFNjcmlwdExhbmd1YWdlLlxuICAgKi9cbiAgYWJzdHJhY3QgcnVudGltZSgpOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSBzdWZmaXggdG8gYXBwbHkgdG8gZmlsZSBuYW1lcyBvZiB0aGlzIHR5cGUgb2YgZXhlY3V0aW9uLlxuICAgKi9cbiAgYWJzdHJhY3QgZmlsZVN1ZmZpeCgpOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFNpbXVsYXRlIGFuIGV4ZWN1dGlvbiBvZiB0aGlzIFNjcmlwdExhbmd1YWdlLlxuICAgKiBQcm92aWRlIHRoZSBpbnB1dHMgYWZ0ZXIgcmVwbGFjZWQgd2l0aCB0aGUgYWN0dWFsIHZhbHVlcyAobm90IHZhcmlhYmxlcykuXG4gICAqL1xuICBhYnN0cmFjdCBzaW11bGF0ZShjb2RlOiBTY3JpcHRDb2RlLCBpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IHN0cmluZyB9ICk6IHsgW25hbWU6IHN0cmluZ106IHN0cmluZyB9O1xufVxuXG5jbGFzcyBQeXRob25TY3JpcHQgZXh0ZW5kcyBTY3JpcHRMYW5ndWFnZSB7XG4gIHJlYWRvbmx5IHZlcnNpb246IFB5dGhvblZlcnNpb247XG4gIHJlYWRvbmx5IGhhbmRsZXJOYW1lOiBzdHJpbmc7XG4gIGNvbnN0cnVjdG9yKHZlcnNpb246IFB5dGhvblZlcnNpb24sIGhhbmRsZXJOYW1lOiBzdHJpbmcpIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMudmVyc2lvbiA9IHZlcnNpb247XG4gICAgdGhpcy5oYW5kbGVyTmFtZSA9IGhhbmRsZXJOYW1lO1xuICB9XG5cbiAgcHVibGljIHN0YXRpYyBTVFJJTkdfVE9fVkVSU0lPTjogUmVjb3JkPHN0cmluZywgUHl0aG9uVmVyc2lvbj4gPSB7XG4gICAgJ3B5dGhvbjMuNyc6IFB5dGhvblZlcnNpb24uVkVSU0lPTl8zXzcsXG4gICAgJ3B5dGhvbjMuOCc6IFB5dGhvblZlcnNpb24uVkVSU0lPTl8zXzgsXG4gICAgJ3B5dGhvbjMuOSc6IFB5dGhvblZlcnNpb24uVkVSU0lPTl8zXzksXG4gICAgJ3B5dGhvbjMuMTAnOiBQeXRob25WZXJzaW9uLlZFUlNJT05fM18xMCxcbiAgICAncHl0aG9uMy4xMSc6IFB5dGhvblZlcnNpb24uVkVSU0lPTl8zXzExLFxuICB9XG5cbiAgcHVibGljIHN0YXRpYyBWRVJTSU9OX1RPX1NUUklORzogUmVjb3JkPFB5dGhvblZlcnNpb24sIHN0cmluZz4gPSB7XG4gICAgW1B5dGhvblZlcnNpb24uVkVSU0lPTl8zXzddOiAncHl0aG9uMy43JyxcbiAgICBbUHl0aG9uVmVyc2lvbi5WRVJTSU9OXzNfOF06ICdweXRob24zLjgnLFxuICAgIFtQeXRob25WZXJzaW9uLlZFUlNJT05fM185XTogJ3B5dGhvbjMuOScsXG4gICAgW1B5dGhvblZlcnNpb24uVkVSU0lPTl8zXzEwXTogJ3B5dGhvbjMuMTAnLFxuICAgIFtQeXRob25WZXJzaW9uLlZFUlNJT05fM18xMV06ICdweXRob24zLjExJyxcbiAgfVxuXG4gIHJ1bnRpbWUoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gUHl0aG9uU2NyaXB0LlZFUlNJT05fVE9fU1RSSU5HW3RoaXMudmVyc2lvbl07XG4gIH1cblxuICBmaWxlU3VmZml4KCk6IHN0cmluZyB7XG4gICAgcmV0dXJuICcucHknO1xuICB9XG5cbiAgc3NtSW5wdXRzKCk6IHsgW25hbWU6IHN0cmluZ106IHN0cmluZyB9IHtcbiAgICByZXR1cm4ge1xuICAgICAgSGFuZGxlcjogdGhpcy5oYW5kbGVyTmFtZSxcbiAgICAgIFJ1bnRpbWU6IHRoaXMucnVudGltZSgpLFxuICAgIH07XG4gIH1cblxuICBzaW11bGF0ZShjb2RlOiBTY3JpcHRDb2RlLCBpbnB1dHM6IHsgW3A6IHN0cmluZ106IHN0cmluZyB9KTogeyBbcDogc3RyaW5nXTogc3RyaW5nIH0ge1xuICAgIGNvbnN0IHB5SGFuZGxlciA9IG5ldyBQeXRob25TY3JpcHRIYW5kbGVyKCk7XG4gICAgcmV0dXJuIHB5SGFuZGxlci5ydW4oY29kZS5jcmVhdGVPckdldEZpbGUodGhpcy5maWxlU3VmZml4KCkpLCB0aGlzLmhhbmRsZXJOYW1lLCBpbnB1dHMpO1xuICB9XG59XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgRXhlY3V0ZVNjcmlwdFN0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBFeGVjdXRlU2NyaXB0U3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAqIChSZXF1aXJlZCkgTGFuZ3VhZ2UgdXNlZCB0byBleGVjdXRlIHRoZSBzY3JpcHQuXG4gICAqL1xuICByZWFkb25seSBsYW5ndWFnZTogU2NyaXB0TGFuZ3VhZ2U7XG5cbiAgLyoqXG4gICAqIElubGluZSBjb2RlIHRvIGJlIGV4ZWN1dGVkLiBTdHJpbmcgd2lsbCBiZSB1c2VkIHRvIHByb2R1Y2UgZnVuY3Rpb24gaW4geWFtbC9qc29uLlxuICAgKiBTaW11bGF0aW9uIHdpbGwgZXhlY3V0ZSB0aGUgZnVuY3Rpb24gaW4gdGhpcyBjb2RlIHVzaW5nIHRoZSBsYW5ndWFnZSBzcGVjaWZpZWQuXG4gICAqL1xuICByZWFkb25seSBjb2RlOiBTY3JpcHRDb2RlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIE91dHB1dHMgdGhhdCB0aGUgZnVuY3Rpb24gaXMgZXhwZWN0ZWQgdG8gcmV0dXJuLlxuICAgKiBCZSBzdXJlIHRvIHByZWZpeCB0aGUgc2VsZWN0b3IgZm9yIHRoZXNlIG91dHB1dHMgd2l0aCBcIiQuUGF5bG9hZC5cIiBmb3IgZXhlY3V0ZVNjcmlwdCBzdGVwIG91dHB1dHMuXG4gICAqIEBkZWZhdWx0IFtdXG4gICAqL1xuICByZWFkb25seSBvdXRwdXRzPzogT3V0cHV0W107XG5cbiAgLyoqXG4gICAqIElucHV0UGF5bG9hZCB0aGF0IHdpbGwgYmUgcGFzc2VkIHRvIHRoZSBmaXJzdCBwYXJhbWV0ZXIgb2YgdGhlIGhhbmRsZXIuXG4gICAqIFRoaXMgY2FuIGJlIHVzZWQgdG8gcGFzcyBpbnB1dCBkYXRhIHRvIHRoZSBzY3JpcHQuXG4gICAqIFRoZSBrZXkgb2YgdGhpcyBkaWN0IGlzIHRoZSB2YXJpYWJsZSBuYW1lIHRoYXQgd2lsbCBiZSBhdmFpbGFibGUgdG8gdGhlIGNvZGUuXG4gICAqIFRoZSB2YWx1ZSBpcyB0aGUgVmFyaWFibGUgb2JqZWN0LlxuICAgKi9cbiAgcmVhZG9ubHkgaW5wdXRQYXlsb2FkOiB7IFtuYW1lOiBzdHJpbmddOiBJR2VuZXJpY1ZhcmlhYmxlIH07XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW50YXRpb24gZm9yIGF3czpleGVjdXRlU2NyaXB0XG4gKiBodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvYXV0b21hdGlvbi1hY3Rpb24tZXhlY3V0ZVNjcmlwdC5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBFeGVjdXRlU2NyaXB0U3RlcCBleHRlbmRzIEF1dG9tYXRpb25TdGVwIHtcblxuICByZWFkb25seSBsYW5ndWFnZTogU2NyaXB0TGFuZ3VhZ2U7XG4gIHJlYWRvbmx5IGNvZGU6IFNjcmlwdENvZGU7XG4gIHJlYWRvbmx5IG91dHB1dHM6IE91dHB1dFtdO1xuICByZWFkb25seSBpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IElHZW5lcmljVmFyaWFibGUgfTtcbiAgcmVhZG9ubHkgYWN0aW9uOiBzdHJpbmcgPSAnYXdzOmV4ZWN1dGVTY3JpcHQnO1xuXG4gIGNvbnN0cnVjdG9yKHN0YWdlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBFeGVjdXRlU2NyaXB0U3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc3RhZ2UsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5sYW5ndWFnZSA9IHByb3BzLmxhbmd1YWdlO1xuICAgIHRoaXMuY29kZSA9IHByb3BzLmNvZGU7XG4gICAgdGhpcy5vdXRwdXRzID0gcHJvcHMub3V0cHV0cyA/PyBbXTtcbiAgICB0aGlzLmlucHV0cyA9IHByb3BzLmlucHV0UGF5bG9hZDtcbiAgICBjb25zdCBub25QYXlsb2FkT3V0cHV0cyA9IHRoaXMub3V0cHV0cy5maWx0ZXIob3V0ID0+ICFvdXQuc2VsZWN0b3Iuc3RhcnRzV2l0aCgnJC5QYXlsb2FkJykpO1xuICAgIGlmIChub25QYXlsb2FkT3V0cHV0cy5sZW5ndGggIT0gMCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdBbGwgc2NyaXB0IG91dHB1dHMgbXVzdCBzcGVjaWZ5IHNlbGVjdG9yIHN0YXJ0aW5nIHdpdGggXCIkLlBheWxvYWRcIiwgJyArXG4gICAgICAgIGBidXQgdGhlc2UgZGlkIG5vdDogJHtKU09OLnN0cmluZ2lmeShub25QYXlsb2FkT3V0cHV0cyl9YCk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGxpc3RVc2VyT3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIHRoaXMub3V0cHV0cztcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICByZXR1cm4gT2JqZWN0LnZhbHVlcyh0aGlzLmlucHV0cykuZmxhdE1hcChpID0+IGk/LnJlcXVpcmVkSW5wdXRzKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogeyBbbmFtZTogc3RyaW5nXTogYW55IH0ge1xuICAgIHJldHVybiB0aGlzLnByZXBhcmVTc21FbnRyeSh7XG4gICAgICAuLi50aGlzLmxhbmd1YWdlLnNzbUlucHV0cygpLFxuICAgICAgU2NyaXB0OiB0aGlzLmNvZGUuY29kZUFzU3RyaW5nKCksXG4gICAgICBJbnB1dFBheWxvYWQ6IHRoaXMuaW5wdXRzLFxuICAgIH0pO1xuICB9XG5cbn0iXX0=
@@ -41,5 +41,5 @@ class ExecuteStateMachineStep extends automation_step_1.AutomationStep {
41
41
  }
42
42
  exports.ExecuteStateMachineStep = ExecuteStateMachineStep;
43
43
  _a = JSII_RTTI_SYMBOL_1;
44
- ExecuteStateMachineStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteStateMachineStep", version: "0.0.59" };
44
+ ExecuteStateMachineStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ExecuteStateMachineStep", version: "0.0.61" };
45
45
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0ZS1zdGF0ZS1tYWNoaW5lLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vZXhlY3V0ZS1zdGF0ZS1tYWNoaW5lLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFHQSx1RkFBaUY7QUFDakYsd0RBQXlFO0FBdUJ6RTs7R0FFRztBQUNILE1BQWEsdUJBQXdCLFNBQVEsZ0NBQWM7SUFNekQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUFtQztRQUMzRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRSxLQUFLLENBQUMsQ0FBQztRQU5qQixXQUFNLEdBQVcseUJBQXlCLENBQUM7UUFPbEQsSUFBSSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUMsZUFBZSxDQUFDO1FBQzdDLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUN6QyxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7SUFDM0IsQ0FBQztJQUVEOzs7U0FHSztJQUNFLFdBQVc7UUFDaEIsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUFHO1lBQ2IsSUFBSSxDQUFDLGVBQWU7WUFDcEIsSUFBSSxDQUFDLGFBQWE7WUFDbEIsSUFBSSxDQUFDLEtBQUs7U0FDWCxDQUFDO1FBRUYsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxVQUFVO1FBQ2YsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUEsb0RBQXVCLEVBQUM7WUFDbEQsZUFBZSxFQUFFLElBQUksQ0FBQyxlQUFlO1lBQ3JDLElBQUksRUFBRSxJQUFJLENBQUMsYUFBYTtZQUN4QixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7U0FDbEIsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdEIsQ0FBQzs7QUFyQ0gsMERBc0NDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkIH0gZnJvbSAnLi4vLi4vdXRpbHMvcHJ1bmUtYW5kLXRyYW5zZm9ybS1yZWNvcmQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAsIEF1dG9tYXRpb25TdGVwUHJvcHMgfSBmcm9tICcuLi9hdXRvbWF0aW9uLXN0ZXAnO1xuXG4vKipcbiAqIFByb3BzIGZvciBFeGVjdXRlU3RhdGVNYWNoaW5lIHN0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBFeGVjdXRlU3RhdGVNYWNoaW5lU3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAqIFRoZSBBbWF6b24gUmVzb3VyY2UgTmFtZSAoQVJOKSBvZiB0aGUgU3RlcCBGdW5jdGlvbnMgc3RhdGUgbWFjaGluZS5cbiAgICovXG4gIHJlYWRvbmx5IHN0YXRlTWFjaGluZUFybjogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBuYW1lIG9mIHRoZSBleGVjdXRpb24uXG4gICAqL1xuICByZWFkb25seSBleGVjdXRpb25OYW1lPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIEEgc3RyaW5nIHRoYXQgY29udGFpbnMgdGhlIEpTT04gaW5wdXQgZGF0YSBmb3IgdGhlIGV4ZWN1dGlvbi5cbiAgICovXG4gIHJlYWRvbmx5IGlucHV0PzogSVN0cmluZ1ZhcmlhYmxlO1xufVxuXG4vKipcbiAqIEF1dG9tYXRpb25TdGVwIGltcGxlbWVudGF0aW9uIG9mIFthd3M6ZXhlY3V0ZVN0YXRlTWFjaGluZV0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL2F1dG9tYXRpb24tYWN0aW9uLWV4ZWN1dGVTdGF0ZU1hY2hpbmUuaHRtbClcbiAqL1xuZXhwb3J0IGNsYXNzIEV4ZWN1dGVTdGF0ZU1hY2hpbmVTdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuICByZWFkb25seSBhY3Rpb246IHN0cmluZyA9ICdhd3M6ZXhlY3V0ZVN0YXRlTWFjaGluZSc7XG4gIHJlYWRvbmx5IHN0YXRlTWFjaGluZUFybjogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBleGVjdXRpb25OYW1lPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBpbnB1dD86IElTdHJpbmdWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogRXhlY3V0ZVN0YXRlTWFjaGluZVN0ZXBQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICAgIHRoaXMuc3RhdGVNYWNoaW5lQXJuID0gcHJvcHMuc3RhdGVNYWNoaW5lQXJuO1xuICAgIHRoaXMuZXhlY3V0aW9uTmFtZSA9IHByb3BzLmV4ZWN1dGlvbk5hbWU7XG4gICAgdGhpcy5pbnB1dCA9IHByb3BzLmlucHV0O1xuICB9XG5cbiAgLyoqXG4gICAgICogTm8gb3V0cHV0cyBlbWl0dGVkIGZyb20gRGVsZXRlIFN0YWNrIHN0ZXBcbiAgICAgKiBAcmV0dXJucyBbXVxuICAgICAqL1xuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbXTtcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLnN0YXRlTWFjaGluZUFybixcbiAgICAgIHRoaXMuZXhlY3V0aW9uTmFtZSxcbiAgICAgIHRoaXMuaW5wdXQsXG4gICAgXTtcblxuICAgIHJldHVybiBpbnB1dHMuZmxhdE1hcChpID0+IGk/LnJlcXVpcmVkSW5wdXRzKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogUmVjb3JkPHN0cmluZywgYW55PiB7XG4gICAgcmV0dXJuIHRoaXMucHJlcGFyZVNzbUVudHJ5KHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkKHtcbiAgICAgIHN0YXRlTWFjaGluZUFybjogdGhpcy5zdGF0ZU1hY2hpbmVBcm4sXG4gICAgICBuYW1lOiB0aGlzLmV4ZWN1dGlvbk5hbWUsXG4gICAgICBpbnB1dDogdGhpcy5pbnB1dCxcbiAgICB9LCB4ID0+IHgucHJpbnQoKSkpO1xuICB9XG59Il19
@@ -69,5 +69,5 @@ class InvokeLambdaFunctionStep extends automation_step_1.AutomationStep {
69
69
  }
70
70
  exports.InvokeLambdaFunctionStep = InvokeLambdaFunctionStep;
71
71
  _a = JSII_RTTI_SYMBOL_1;
72
- InvokeLambdaFunctionStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.InvokeLambdaFunctionStep", version: "0.0.59" };
72
+ InvokeLambdaFunctionStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.InvokeLambdaFunctionStep", version: "0.0.61" };
73
73
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52b2tlLWxhbWJkYS1mdW5jdGlvbi1zdGVwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3BhcmVudC1zdGVwcy9hdXRvbWF0aW9uL2ludm9rZS1sYW1iZGEtZnVuY3Rpb24tc3RlcC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUNBLHNEQUFzRDtBQUt0RCx1RkFBaUY7QUFDakYsd0RBQXlFO0FBc0N6RTs7O0dBR0c7QUFDSCxNQUFhLHdCQUF5QixTQUFRLGdDQUFjO0lBVTFELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBb0M7UUFDNUUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFWakIsV0FBTSxHQUFXLDBCQUEwQixDQUFDO1FBV25ELElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQztRQUN2QyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLGNBQWMsR0FBRyxLQUFLLENBQUMsY0FBYyxDQUFDO1FBQzNDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQztRQUM3QixJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQyxhQUFhLENBQUM7UUFDekMsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDO0lBQy9CLENBQUM7SUFFTSxXQUFXO1FBQ2hCLE9BQU8sQ0FBQztnQkFDTixVQUFVLEVBQUUsd0JBQVksQ0FBQyxPQUFPO2dCQUNoQyxJQUFJLEVBQUUsWUFBWTtnQkFDbEIsUUFBUSxFQUFFLGNBQWM7YUFDekIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixJQUFJLEVBQUUsZUFBZTtnQkFDckIsUUFBUSxFQUFFLGlCQUFpQjthQUM1QixFQUFFO2dCQUNELFVBQVUsRUFBRSx3QkFBWSxDQUFDLE1BQU07Z0JBQy9CLElBQUksRUFBRSxXQUFXO2dCQUNqQixRQUFRLEVBQUUsYUFBYTthQUN4QixFQUFFO2dCQUNELFVBQVUsRUFBRSx3QkFBWSxDQUFDLE1BQU07Z0JBQy9CLElBQUksRUFBRSxTQUFTO2dCQUNmLFFBQVEsRUFBRSxXQUFXO2FBQ3RCLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxNQUFNLEdBQUc7WUFDYixJQUFJLENBQUMsWUFBWTtZQUNqQixJQUFJLENBQUMsU0FBUztZQUNkLElBQUksQ0FBQyxjQUFjO1lBQ25CLElBQUksQ0FBQyxPQUFPO1lBQ1osSUFBSSxDQUFDLGFBQWE7WUFDbEIsSUFBSSxDQUFDLE9BQU87U0FDYixDQUFDO1FBRUYsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZDLE1BQU0sT0FBTyxHQUFHLElBQUEsb0RBQXVCLEVBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7UUFDbEUsT0FBTyxLQUFLLENBQUMsZUFBZSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3hDLENBQUM7SUFFTyxjQUFjO1FBQ3BCLE9BQU87WUFDTCxZQUFZLEVBQUUsSUFBSSxDQUFDLFlBQVk7WUFDL0IsU0FBUyxFQUFFLElBQUksQ0FBQyxTQUFTO1lBQ3pCLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztZQUNuQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU87WUFDckIsYUFBYSxFQUFFLElBQUksQ0FBQyxhQUFhO1lBQ2pDLFlBQVksRUFBRSxJQUFJLENBQUMsT0FBTztTQUMzQixDQUFDO0lBQ0osQ0FBQzs7QUFwRUgsNERBcUVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLi9kb21haW4vZGF0YS10eXBlJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgSUF3c0ludm9rZXIgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvYXdzLWludm9rZXInO1xuaW1wb3J0IHsgSVN0cmluZ01hcFZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy9zdHJpbmctbWFwLXZhcmlhYmxlJztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkIH0gZnJvbSAnLi4vLi4vdXRpbHMvcHJ1bmUtYW5kLXRyYW5zZm9ybS1yZWNvcmQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAsIEF1dG9tYXRpb25TdGVwUHJvcHMgfSBmcm9tICcuLi9hdXRvbWF0aW9uLXN0ZXAnO1xuXG4vKipcbiAqIFByb3BlcnRpZXMgZm9yIEludm9rZUxhbWJkYUZ1bmN0aW9uU3RlcFxuICovXG5leHBvcnQgaW50ZXJmYWNlIEludm9rZUxhbWJkYUZ1bmN0aW9uU3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAgICogVGhlIG5hbWUgb2YgdGhlIExhbWJkYSBmdW5jdGlvbi4gVGhpcyBmdW5jdGlvbiBtdXN0IGV4aXN0LlxuICAgICAqL1xuICByZWFkb25seSBmdW5jdGlvbk5hbWU6IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBmdW5jdGlvbiB2ZXJzaW9uIG9yIGFsaWFzIG5hbWUuXG4gICAgICovXG4gIHJlYWRvbmx5IHF1YWxpZmllcj86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBpbnZvY2F0aW9uIHR5cGUuIFRoZSBkZWZhdWx0IHZhbHVlIGlzIFJlcXVlc3RSZXNwb25zZS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgaW52b2NhdGlvblR5cGU/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBJZiB0aGUgZGVmYXVsdCB2YWx1ZSBpcyBUYWlsLCB0aGUgaW52b2NhdGlvbiB0eXBlIG11c3QgYmUgUmVxdWVzdFJlc3BvbnNlLiBMYW1iZGEgcmV0dXJucyB0aGUgbGFzdCA0IEtCIG9mIGxvZyBkYXRhIHByb2R1Y2VkIGJ5IHlvdXIgTGFtYmRhIGZ1bmN0aW9uLCBiYXNlNjQtZW5jb2RlZC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgbG9nVHlwZT86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBjbGllbnQtc3BlY2lmaWMgaW5mb3JtYXRpb24uXG4gICAgICovXG4gIHJlYWRvbmx5IGNsaWVudENvbnRleHQ/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgSlNPTiBpbnB1dCBmb3IgeW91ciBMYW1iZGEgZnVuY3Rpb24uXG4gICAgICovXG4gIHJlYWRvbmx5IHBheWxvYWQ/OiBJU3RyaW5nTWFwVmFyaWFibGU7XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW5hdGlvbiBmb3IgYXdzOmludm9rZUxhbWJkYUZ1bmN0aW9uXG4gKiBodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvYXV0b21hdGlvbi1hY3Rpb24tbGFtYi5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBJbnZva2VMYW1iZGFGdW5jdGlvblN0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG4gIHJlYWRvbmx5IGFjdGlvbjogc3RyaW5nID0gJ2F3czppbnZva2VMYW1iZGFGdW5jdGlvbic7XG4gIHJlYWRvbmx5IGF3c0ludm9rZXI/OiBJQXdzSW52b2tlcjtcbiAgcmVhZG9ubHkgZnVuY3Rpb25OYW1lOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHF1YWxpZmllcj86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgaW52b2NhdGlvblR5cGU/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGxvZ1R5cGU/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGNsaWVudENvbnRleHQ/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHBheWxvYWQ/OiBJU3RyaW5nTWFwVmFyaWFibGU7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IEludm9rZUxhbWJkYUZ1bmN0aW9uU3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5mdW5jdGlvbk5hbWUgPSBwcm9wcy5mdW5jdGlvbk5hbWU7XG4gICAgdGhpcy5xdWFsaWZpZXIgPSBwcm9wcy5xdWFsaWZpZXI7XG4gICAgdGhpcy5pbnZvY2F0aW9uVHlwZSA9IHByb3BzLmludm9jYXRpb25UeXBlO1xuICAgIHRoaXMubG9nVHlwZSA9IHByb3BzLmxvZ1R5cGU7XG4gICAgdGhpcy5jbGllbnRDb250ZXh0ID0gcHJvcHMuY2xpZW50Q29udGV4dDtcbiAgICB0aGlzLnBheWxvYWQgPSBwcm9wcy5wYXlsb2FkO1xuICB9XG5cbiAgcHVibGljIGxpc3RPdXRwdXRzKCk6IE91dHB1dFtdIHtcbiAgICByZXR1cm4gW3tcbiAgICAgIG91dHB1dFR5cGU6IERhdGFUeXBlRW51bS5JTlRFR0VSLFxuICAgICAgbmFtZTogJ1N0YXR1c0NvZGUnLFxuICAgICAgc2VsZWN0b3I6ICckLlN0YXR1c0NvZGUnLFxuICAgIH0sIHtcbiAgICAgIG91dHB1dFR5cGU6IERhdGFUeXBlRW51bS5TVFJJTkcsXG4gICAgICBuYW1lOiAnRnVuY3Rpb25FcnJvcicsXG4gICAgICBzZWxlY3RvcjogJyQuRnVuY3Rpb25FcnJvcicsXG4gICAgfSwge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdMb2dSZXN1bHQnLFxuICAgICAgc2VsZWN0b3I6ICckLkxvZ1Jlc3VsdCcsXG4gICAgfSwge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIG5hbWU6ICdQYXlsb2FkJyxcbiAgICAgIHNlbGVjdG9yOiAnJC5QYXlsb2FkJyxcbiAgICB9XTtcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLmZ1bmN0aW9uTmFtZSxcbiAgICAgIHRoaXMucXVhbGlmaWVyLFxuICAgICAgdGhpcy5pbnZvY2F0aW9uVHlwZSxcbiAgICAgIHRoaXMubG9nVHlwZSxcbiAgICAgIHRoaXMuY2xpZW50Q29udGV4dCxcbiAgICAgIHRoaXMucGF5bG9hZCxcbiAgICBdO1xuXG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiBSZWNvcmQ8c3RyaW5nLCBhbnk+IHtcbiAgICBjb25zdCBlbnRyeU1hcCA9IHRoaXMuZm9ybWF0SW5wdXRNYXAoKTtcbiAgICBjb25zdCBlbnRyaWVzID0gcHJ1bmVBbmRUcmFuc2Zvcm1SZWNvcmQoZW50cnlNYXAsIHggPT4geC5wcmludCgpKTtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGVudHJpZXMpO1xuICB9XG5cbiAgcHJpdmF0ZSBmb3JtYXRJbnB1dE1hcCgpOiBSZWNvcmQ8c3RyaW5nLCBhbnk+IHtcbiAgICByZXR1cm4ge1xuICAgICAgRnVuY3Rpb25OYW1lOiB0aGlzLmZ1bmN0aW9uTmFtZSxcbiAgICAgIFF1YWxpZmllcjogdGhpcy5xdWFsaWZpZXIsXG4gICAgICBJbnZvY2F0aW9uVHlwZTogdGhpcy5pbnZvY2F0aW9uVHlwZSxcbiAgICAgIExvZ1R5cGU6IHRoaXMubG9nVHlwZSxcbiAgICAgIENsaWVudENvbnRleHQ6IHRoaXMuY2xpZW50Q29udGV4dCxcbiAgICAgIElucHV0UGF5bG9hZDogdGhpcy5wYXlsb2FkLFxuICAgIH07XG4gIH1cbn0iXX0=
@@ -43,5 +43,5 @@ class InvokeWebhookStep extends automation_step_1.AutomationStep {
43
43
  }
44
44
  exports.InvokeWebhookStep = InvokeWebhookStep;
45
45
  _a = JSII_RTTI_SYMBOL_1;
46
- InvokeWebhookStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.InvokeWebhookStep", version: "0.0.59" };
46
+ InvokeWebhookStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.InvokeWebhookStep", version: "0.0.61" };
47
47
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52b2tlLXdlYmhvb2stc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9pbnZva2Utd2ViaG9vay1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBRUEsc0RBQXNEO0FBRXRELHVGQUFpRjtBQUNqRix3REFBeUU7QUFnRHpFOztHQUVHO0FBQ0gsTUFBYSxpQkFBa0IsU0FBUSxnQ0FBYztJQUtuRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTZCO1FBQ3JFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBTGpCLFdBQU0sR0FBRyxtQkFBbUIsQ0FBQztRQU1wQyxJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQyxlQUFlLENBQUM7UUFDN0MsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxXQUFXO1FBQ2hCLE9BQU8sQ0FBQztnQkFDTixVQUFVLEVBQUUsd0JBQVksQ0FBQyxNQUFNO2dCQUMvQixRQUFRLEVBQUUsWUFBWTtnQkFDdEIsSUFBSSxFQUFFLFVBQVU7YUFDakIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsd0JBQVksQ0FBQyxPQUFPO2dCQUNoQyxRQUFRLEVBQUUsZ0JBQWdCO2dCQUMxQixJQUFJLEVBQUUsY0FBYzthQUNyQixDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUFHO1lBQ2IsSUFBSSxDQUFDLGVBQWU7WUFDcEIsSUFBSSxDQUFDLElBQUk7U0FDVixDQUFDO1FBRUYsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxVQUFVO1FBQ2YsT0FBTyxLQUFLLENBQUMsZUFBZSxDQUFDLElBQUEsb0RBQXVCLEVBQUM7WUFDbkQsZUFBZSxFQUFFLElBQUksQ0FBQyxlQUFlO1lBQ3JDLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtTQUNoQixFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUN0QixDQUFDOztBQXJDSCw4Q0FzQ0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uJztcbmltcG9ydCB7IERhdGFUeXBlRW51bSB9IGZyb20gJy4uLy4uL2RvbWFpbi9kYXRhLXR5cGUnO1xuaW1wb3J0IHsgT3V0cHV0IH0gZnJvbSAnLi4vLi4vZG9tYWluL291dHB1dCc7XG5pbXBvcnQgeyBwcnVuZUFuZFRyYW5zZm9ybVJlY29yZCB9IGZyb20gJy4uLy4uL3V0aWxzL3BydW5lLWFuZC10cmFuc2Zvcm0tcmVjb3JkJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBSZXNwb25zZSBmcm9tIElXZWJob29rLkludm9rZVxuICovXG5leHBvcnQgaW50ZXJmYWNlIEludm9rZVdlYmhvb2tSZXN1bHQge1xuICAvKipcbiAgICAgKiBUaGUgdGV4dCByZWNlaXZlZCBmcm9tIHRoZSB3ZWJob29rIHByb3ZpZGVyIHJlc3BvbnNlLlxuICAgICAqL1xuICByZWFkb25seSByZXNwb25zZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgICAqIFRoZSBIVFRQIHN0YXR1cyBjb2RlIHJlY2VpdmVkIGZyb20gdGhlIHdlYmhvb2sgcHJvdmlkZXIgcmVzcG9uc2UuXG4gICAgICovXG4gIHJlYWRvbmx5IHJlc3BvbnNlQ29kZTogbnVtYmVyO1xufVxuXG4vKipcbiAqIFRoZSBwcm9wZXJ0aWVzIGZvciBJV2ViaG9vay5JbnZva2VcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbnZva2VXZWJob29rUHJvcHMge1xuICAvKipcbiAgICAgKiBUaGUgbmFtZSBvZiB0aGUgQXV0b21hdGlvbiBpbnRlZ3JhdGlvbi4gRm9yIGV4YW1wbGUsIGV4YW1wbGVJbnRlZ3JhdGlvbi4gVGhlIGludGVncmF0aW9uIHlvdSBzcGVjaWZ5IG11c3QgYWxyZWFkeSBleGlzdC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgaW50ZWdyYXRpb25OYW1lOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgcGF5bG9hZCB5b3Ugd2FudCB0byBzZW5kIHdoZW4geW91ciB3ZWJob29rIGludGVncmF0aW9uIGlzIGludm9rZWQuXG4gICAgICovXG4gIHJlYWRvbmx5IGJvZHk/OiBzdHJpbmc7XG59XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgSW52b2tlV2ViaG9va1N0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbnZva2VXZWJob29rU3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBBdXRvbWF0aW9uIGludGVncmF0aW9uLiBGb3IgZXhhbXBsZSwgZXhhbXBsZUludGVncmF0aW9uLiBUaGUgaW50ZWdyYXRpb24geW91IHNwZWNpZnkgbXVzdCBhbHJlYWR5IGV4aXN0LlxuICAgKi9cbiAgcmVhZG9ubHkgaW50ZWdyYXRpb25OYW1lOiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIHBheWxvYWQgeW91IHdhbnQgdG8gc2VuZCB3aGVuIHlvdXIgd2ViaG9vayBpbnRlZ3JhdGlvbiBpcyBpbnZva2VkLlxuICAgKi9cbiAgcmVhZG9ubHkgYm9keT86IElTdHJpbmdWYXJpYWJsZTtcbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbnRhdGlvbiBmb3IgW2F3czppbnZva2VXZWJob29rXShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvaW52b2tlLXdlYmhvb2suaHRtbClcbiAqL1xuZXhwb3J0IGNsYXNzIEludm9rZVdlYmhvb2tTdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuICByZWFkb25seSBhY3Rpb24gPSAnYXdzOmludm9rZVdlYmhvb2snO1xuICByZWFkb25seSBpbnRlZ3JhdGlvbk5hbWU6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgYm9keT86IElTdHJpbmdWYXJpYWJsZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogSW52b2tlV2ViaG9va1N0ZXBQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICAgIHRoaXMuaW50ZWdyYXRpb25OYW1lID0gcHJvcHMuaW50ZWdyYXRpb25OYW1lO1xuICAgIHRoaXMuYm9keSA9IHByb3BzLmJvZHk7XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbe1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIHNlbGVjdG9yOiAnJC5SZXNwb25zZScsXG4gICAgICBuYW1lOiAnUmVzcG9uc2UnLFxuICAgIH0sIHtcbiAgICAgIG91dHB1dFR5cGU6IERhdGFUeXBlRW51bS5JTlRFR0VSLFxuICAgICAgc2VsZWN0b3I6ICckLlJlc3BvbnNlQ29kZScsXG4gICAgICBuYW1lOiAnUmVzcG9uc2VDb2RlJyxcbiAgICB9XTtcbiAgfVxuXG4gIHB1YmxpYyBsaXN0SW5wdXRzKCk6IHN0cmluZ1tdIHtcbiAgICBjb25zdCBpbnB1dHMgPSBbXG4gICAgICB0aGlzLmludGVncmF0aW9uTmFtZSxcbiAgICAgIHRoaXMuYm9keSxcbiAgICBdO1xuXG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiBSZWNvcmQ8c3RyaW5nLCBhbnk+IHtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkKHtcbiAgICAgIEludGVncmF0aW9uTmFtZTogdGhpcy5pbnRlZ3JhdGlvbk5hbWUsXG4gICAgICBCb2R5OiB0aGlzLmJvZHksXG4gICAgfSwgeCA9PiB4LnByaW50KCkpKTtcbiAgfVxufSJdfQ==
@@ -33,5 +33,5 @@ class PauseStep extends automation_step_1.AutomationStep {
33
33
  }
34
34
  exports.PauseStep = PauseStep;
35
35
  _a = JSII_RTTI_SYMBOL_1;
36
- PauseStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.PauseStep", version: "0.0.59" };
36
+ PauseStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.PauseStep", version: "0.0.61" };
37
37
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF1c2Utc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9wYXVzZS1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBRUEsd0RBQXlFO0FBRXpFOzs7R0FHRztBQUNILE1BQWEsU0FBVSxTQUFRLGdDQUFjO0lBSTNDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBMEI7UUFDbEUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFIakIsV0FBTSxHQUFXLFdBQVcsQ0FBQztJQUl0QyxDQUFDO0lBRUQ7OztPQUdHO0lBQ0ksV0FBVztRQUNoQixPQUFPLEVBQUUsQ0FBQztJQUNaLENBQUM7SUFFRDs7O09BR0c7SUFDSSxVQUFVO1FBQ2YsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU0sVUFBVTtRQUNmLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNuQyxDQUFDOztBQTFCSCw4QkE0QkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uLy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAsIEF1dG9tYXRpb25TdGVwUHJvcHMgfSBmcm9tICcuLi9hdXRvbWF0aW9uLXN0ZXAnO1xuXG4vKipcbiAqIEF1dG9tYXRpb25TdGVwIGltcGxlbWVudGF0aW9uIGZvciBhd3M6cGF1c2VcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi1wYXVzZS5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBQYXVzZVN0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG5cbiAgcmVhZG9ubHkgYWN0aW9uOiBzdHJpbmcgPSAnYXdzOnBhdXNlJztcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogQXV0b21hdGlvblN0ZXBQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICB9XG5cbiAgLyoqXG4gICAqIE5vIG91dHB1dHMgZW1pdHRlZCBmcm9tIFBhdXNlIHN0ZXBcbiAgICogQHJldHVybnMgW11cbiAgICovXG4gIHB1YmxpYyBsaXN0T3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIFtdO1xuICB9XG5cbiAgLyoqXG4gICAqIE5vIGlucHV0cyByZXF1aXJlZCBmb3IgUGF1c2Ugc3RlcFxuICAgKiBAcmV0dXJucyBbXVxuICAgKi9cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIHJldHVybiBbXTtcbiAgfVxuXG4gIHB1YmxpYyB0b1NzbUVudHJ5KCk6IHsgW25hbWU6IHN0cmluZ106IGFueSB9IHtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KHt9KTtcbiAgfVxuXG59XG4iXX0=
@@ -14,7 +14,7 @@ class HardCodedDocumentHashType extends string_variable_1.HardCodedString {
14
14
  }
15
15
  exports.HardCodedDocumentHashType = HardCodedDocumentHashType;
16
16
  _a = JSII_RTTI_SYMBOL_1;
17
- HardCodedDocumentHashType[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedDocumentHashType", version: "0.0.59" };
17
+ HardCodedDocumentHashType[_a] = { fqn: "@cdklabs/cdk-ssm-documents.HardCodedDocumentHashType", version: "0.0.61" };
18
18
  HardCodedDocumentHashType.SHA256 = new HardCodedDocumentHashType('Sha256');
19
19
  HardCodedDocumentHashType.SHA1 = new HardCodedDocumentHashType('Sha1');
20
20
  class DocumentHashTypeVariable extends string_variable_1.StringVariable {
@@ -31,7 +31,7 @@ class DocumentHashTypeVariable extends string_variable_1.StringVariable {
31
31
  }
32
32
  exports.DocumentHashTypeVariable = DocumentHashTypeVariable;
33
33
  _b = JSII_RTTI_SYMBOL_1;
34
- DocumentHashTypeVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.DocumentHashTypeVariable", version: "0.0.59" };
34
+ DocumentHashTypeVariable[_b] = { fqn: "@cdklabs/cdk-ssm-documents.DocumentHashTypeVariable", version: "0.0.61" };
35
35
  /**
36
36
  * AutomationStep implementation of [aws:runCommand](https://docs.aws.amazon.com/systems-manager/latest/userguide/automation-action-runcommand.html)
37
37
  */
@@ -119,5 +119,5 @@ class RunCommandStep extends automation_step_1.AutomationStep {
119
119
  }
120
120
  exports.RunCommandStep = RunCommandStep;
121
121
  _c = JSII_RTTI_SYMBOL_1;
122
- RunCommandStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.RunCommandStep", version: "0.0.59" };
122
+ RunCommandStep[_c] = { fqn: "@cdklabs/cdk-ssm-documents.RunCommandStep", version: "0.0.61" };
123
123
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicnVuLWNvbW1hbmQtc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9ydW4tY29tbWFuZC1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQXVDLDZCQUFxQztBQU01RSwrRUFBMkg7QUFDM0gsdUZBQWlGO0FBQ2pGLHdEQUF5RTtBQUt6RSxNQUFhLHlCQUEwQixTQUFRLGlDQUFlO0lBRzVELFlBQW9CLEdBQVc7UUFDN0IsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ2IsQ0FBQzs7QUFMSCw4REFNQzs7O0FBTHdCLGdDQUFNLEdBQUcsSUFBSSx5QkFBeUIsQ0FBQyxRQUFRLENBQUMsQ0FBQztBQUNqRCw4QkFBSSxHQUFHLElBQUkseUJBQXlCLENBQUMsTUFBTSxDQUFDLENBQUM7QUFNdEUsTUFBYSx3QkFBeUIsU0FBUSxnQ0FBYztJQUE1RDs7UUFDVyxnQkFBVyxHQUFHLENBQUMsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0tBUTNDO0lBTlcsVUFBVSxDQUFDLEtBQVU7UUFDN0IsSUFBQSw4QkFBWSxFQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3BCLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDO1lBQ3RDLE1BQU0sSUFBSSxLQUFLLENBQUMsR0FBRyxLQUFLLDRCQUE0QixDQUFDLENBQUM7UUFDeEQsQ0FBQztJQUNILENBQUM7O0FBUkgsNERBU0M7OztBQWlGRDs7R0FFRztBQUNILE1BQWEsY0FBZSxTQUFRLGdDQUFjO0lBaUJoRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTBCO1FBQ2xFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBakJqQixXQUFNLEdBQUcsZ0JBQWdCLENBQUM7UUFrQmpDLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQztRQUN2QyxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUM7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDO1FBQ25DLElBQUksQ0FBQyxzQkFBc0IsR0FBRyxLQUFLLENBQUMsc0JBQXNCLENBQUM7UUFDM0QsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDO1FBQzdCLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQztRQUN2QyxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsS0FBSyxDQUFDLGdCQUFnQixDQUFDO1FBQy9DLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUM7UUFDbkQsSUFBSSxDQUFDLGtCQUFrQixHQUFHLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQztRQUNuRCxJQUFJLENBQUMsaUJBQWlCLEdBQUcsS0FBSyxDQUFDLGlCQUFpQixDQUFDO1FBQ2pELElBQUksQ0FBQyxjQUFjLEdBQUcsS0FBSyxDQUFDLGNBQWMsQ0FBQztRQUMzQyxJQUFJLENBQUMscUJBQXFCLEdBQUcsS0FBSyxDQUFDLHFCQUFxQixDQUFDO1FBQ3pELElBQUksQ0FBQyxjQUFjLEdBQUcsS0FBSyxDQUFDLGNBQWMsQ0FBQztRQUMzQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7SUFDbkMsQ0FBQztJQUVNLFdBQVc7UUFDaEIsT0FBTyxDQUFDO2dCQUNOLFVBQVUsRUFBRSxnQkFBWSxDQUFDLE1BQU07Z0JBQy9CLFFBQVEsRUFBRSxhQUFhO2dCQUN2QixJQUFJLEVBQUUsV0FBVzthQUNsQixFQUFFO2dCQUNELFVBQVUsRUFBRSxnQkFBWSxDQUFDLE1BQU07Z0JBQy9CLFFBQVEsRUFBRSxVQUFVO2dCQUNwQixJQUFJLEVBQUUsUUFBUTthQUNmLEVBQUU7Z0JBQ0QsVUFBVSxFQUFFLGdCQUFZLENBQUMsT0FBTztnQkFDaEMsUUFBUSxFQUFFLGdCQUFnQjtnQkFDMUIsSUFBSSxFQUFFLGNBQWM7YUFDckIsRUFBRTtnQkFDRCxVQUFVLEVBQUUsZ0JBQVksQ0FBQyxNQUFNO2dCQUMvQixRQUFRLEVBQUUsVUFBVTtnQkFDcEIsSUFBSSxFQUFFLFFBQVE7YUFDZixDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUFHO1lBQ2IsSUFBSSxDQUFDLFlBQVk7WUFDakIsSUFBSSxDQUFDLE9BQU87WUFDWixJQUFJLENBQUMsVUFBVTtZQUNmLElBQUksQ0FBQyxzQkFBc0I7WUFDM0IsSUFBSSxDQUFDLE9BQU87WUFDWixJQUFJLENBQUMsWUFBWTtZQUNqQixJQUFJLENBQUMsZ0JBQWdCO1lBQ3JCLElBQUksQ0FBQyxrQkFBa0I7WUFDdkIsSUFBSSxDQUFDLGtCQUFrQjtZQUN2QixJQUFJLENBQUMsaUJBQWlCO1lBQ3RCLElBQUksQ0FBQyxjQUFjO1lBQ25CLElBQUksQ0FBQyxxQkFBcUI7WUFDMUIsSUFBSSxDQUFDLGNBQWM7WUFDbkIsSUFBSSxDQUFDLFNBQVM7U0FDZixDQUFDO1FBRUYsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxRQUFRLEdBQXdCO1lBQ3BDLFlBQVksRUFBRSxJQUFJLENBQUMsWUFBWTtZQUMvQixVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVU7WUFDM0Isc0JBQXNCLEVBQUUsSUFBSSxDQUFDLHNCQUFzQjtZQUNuRCxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU87WUFDckIsWUFBWSxFQUFFLElBQUksQ0FBQyxZQUFZO1lBQy9CLGdCQUFnQixFQUFFLElBQUksQ0FBQyxnQkFBZ0I7WUFDdkMsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGtCQUFrQjtZQUMzQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsa0JBQWtCO1lBQzNDLGlCQUFpQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7WUFDekMsY0FBYyxFQUFFLElBQUksQ0FBQyxjQUFjO1lBQ25DLGNBQWMsRUFBRSxJQUFJLENBQUMscUJBQXFCO1lBQzFDLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztZQUNuQyxTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7U0FDMUIsQ0FBQztRQUNGLElBQUssSUFBSSxDQUFDLE9BQWUsRUFBRSxtQkFBbUIsRUFBRSxDQUFDO1lBQy9DLFFBQVEsQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztRQUN0QyxDQUFDO2FBQU0sQ0FBQztZQUNOLFFBQVEsQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztRQUNsQyxDQUFDO1FBRUQsT0FBTyxLQUFLLENBQUMsZUFBZSxDQUFDLElBQUEsb0RBQXVCLEVBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNsRixDQUFDOztBQW5HSCx3Q0FvR0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztpbXBvcnQgeyBEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLic7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IElNYXBMaXN0VmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL21hcC1saXN0LXZhcmlhYmxlJztcbmltcG9ydCB7IElOdW1iZXJWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvbnVtYmVyLXZhcmlhYmxlJztcbmltcG9ydCB7IElTdHJpbmdMaXN0VmFyaWFibGUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvdmFyaWFibGVzL3N0cmluZy1saXN0LXZhcmlhYmxlJztcbmltcG9ydCB7IElTdHJpbmdNYXBWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLW1hcC12YXJpYWJsZSc7XG5pbXBvcnQgeyBhc3NlcnRTdHJpbmcsIEhhcmRDb2RlZFN0cmluZywgSVN0cmluZ1ZhcmlhYmxlLCBTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkIH0gZnJvbSAnLi4vLi4vdXRpbHMvcHJ1bmUtYW5kLXRyYW5zZm9ybS1yZWNvcmQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAsIEF1dG9tYXRpb25TdGVwUHJvcHMgfSBmcm9tICcuLi9hdXRvbWF0aW9uLXN0ZXAnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElEb2N1bWVudEhhc2hUeXBlVmFyaWFibGUgZXh0ZW5kcyBJU3RyaW5nVmFyaWFibGUge1xufVxuXG5leHBvcnQgY2xhc3MgSGFyZENvZGVkRG9jdW1lbnRIYXNoVHlwZSBleHRlbmRzIEhhcmRDb2RlZFN0cmluZyBpbXBsZW1lbnRzIElEb2N1bWVudEhhc2hUeXBlVmFyaWFibGUge1xuICBwdWJsaWMgc3RhdGljIHJlYWRvbmx5IFNIQTI1NiA9IG5ldyBIYXJkQ29kZWREb2N1bWVudEhhc2hUeXBlKCdTaGEyNTYnKTtcbiAgcHVibGljIHN0YXRpYyByZWFkb25seSBTSEExID0gbmV3IEhhcmRDb2RlZERvY3VtZW50SGFzaFR5cGUoJ1NoYTEnKTtcbiAgcHJpdmF0ZSBjb25zdHJ1Y3Rvcih2YWw6IHN0cmluZykge1xuICAgIHN1cGVyKHZhbCk7XG4gIH1cbn1cblxuZXhwb3J0IGNsYXNzIERvY3VtZW50SGFzaFR5cGVWYXJpYWJsZSBleHRlbmRzIFN0cmluZ1ZhcmlhYmxlIGltcGxlbWVudHMgSURvY3VtZW50SGFzaFR5cGVWYXJpYWJsZSB7XG4gIHJlYWRvbmx5IHZhbGlkVmFsdWVzID0gWydTaGEyNTYnLCAnU2hhMSddO1xuXG4gIHByb3RlY3RlZCBhc3NlcnRUeXBlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICBhc3NlcnRTdHJpbmcodmFsdWUpO1xuICAgIGlmICghdGhpcy52YWxpZFZhbHVlcy5pbmNsdWRlcyh2YWx1ZSkpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihgJHt2YWx1ZX0gaXMgbm90IGEgdmFsaWQgZW51bSB2YWx1ZWApO1xuICAgIH1cbiAgfVxufVxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBSdW5Db21tYW5kU3RlcFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFJ1bkNvbW1hbmRTdGVwUHJvcHMgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcFByb3BzIHtcblxuICAvKipcbiAgICAgKiBJZiB0aGUgQ29tbWFuZCB0eXBlIGRvY3VtZW50IGlzIG93bmVkIGJ5IHlvdSBvciBBV1MsIHNwZWNpZnkgdGhlIG5hbWUgb2YgdGhlIGRvY3VtZW50LiBJZiB5b3UncmUgdXNpbmcgYSBkb2N1bWVudCBzaGFyZWQgd2l0aCB5b3UgYnkgYSBkaWZmZXJlbnQgQVdTIGFjY291bnQsIHNwZWNpZnkgdGhlIEFtYXpvbiBSZXNvdXJjZSBOYW1lIChBUk4pIG9mIHRoZSBkb2N1bWVudC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgZG9jdW1lbnROYW1lOiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogVGhlIGluc3RhbmNlIElEcyB3aGVyZSB5b3Ugd2FudCB0aGUgY29tbWFuZCB0byBydW4uIFlvdSBjYW4gc3BlY2lmeSBhIG1heGltdW0gb2YgNTAgSURzLlxuICAgICAqXG4gICAgICogWW91IGNhbiBhbHNvIHVzZSB0aGUgcHNldWRvIHBhcmFtZXRlciB7eyBSRVNPVVJDRV9JRCB9fSBpbiBwbGFjZSBvZiBpbnN0YW5jZSBJRHMgdG8gcnVuIHRoZSBjb21tYW5kIG9uIGFsbCBpbnN0YW5jZXMgaW4gdGhlIHRhcmdldCBncm91cC4gRm9yIG1vcmUgaW5mb3JtYXRpb24gYWJvdXQgcHNldWRvIHBhcmFtZXRlcnMsIHNlZSBbQWJvdXQgcHNldWRvIHBhcmFtZXRlcnNdKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9tdy1jbGktcmVnaXN0ZXItdGFza3MtcGFyYW1ldGVycy5odG1sKS5cbiAgICAgKlxuICAgICAqIEFub3RoZXIgYWx0ZXJuYXRpdmUgaXMgdG8gc2VuZCBjb21tYW5kcyB0byBhIGZsZWV0IG9mIGluc3RhbmNlcyBieSB1c2luZyB0aGUgVGFyZ2V0cyBwYXJhbWV0ZXIuIFRoZSBUYXJnZXRzIHBhcmFtZXRlciBhY2NlcHRzIEFtYXpvbiBFbGFzdGljIENvbXB1dGUgQ2xvdWQgKEFtYXpvbiBFQzIpIHRhZ3MuIEZvciBtb3JlIGluZm9ybWF0aW9uIGFib3V0IGhvdyB0byB1c2UgdGhlIFRhcmdldHMgcGFyYW1ldGVyLCBzZWUgW1VzaW5nIHRhcmdldHMgYW5kIHJhdGUgY29udHJvbHMgdG8gc2VuZCBjb21tYW5kcyB0byBhIGZsZWV0XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvc2VuZC1jb21tYW5kcy1tdWx0aXBsZS5odG1sKS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgdGFyZ2V0czogSVN0cmluZ0xpc3RWYXJpYWJsZSB8IElNYXBMaXN0VmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgcmVxdWlyZWQgYW5kIG9wdGlvbmFsIHBhcmFtZXRlcnMgc3BlY2lmaWVkIGluIHRoZSBkb2N1bWVudC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgcGFyYW1ldGVycz86IElTdHJpbmdNYXBWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIENvbmZpZ3VyYXRpb24gb3B0aW9ucyBmb3Igc2VuZGluZyBjb21tYW5kIG91dHB1dCB0byBBbWF6b24gQ2xvdWRXYXRjaCBMb2dzLiBGb3IgbW9yZSBpbmZvcm1hdGlvbiBhYm91dCBzZW5kaW5nIGNvbW1hbmQgb3V0cHV0IHRvIENsb3VkV2F0Y2ggTG9ncywgc2VlIFtDb25maWd1cmluZyBBbWF6b24gQ2xvdWRXYXRjaCBMb2dzIGZvciBSdW4gQ29tbWFuZF0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N5c3RlbXMtbWFuYWdlci9sYXRlc3QvdXNlcmd1aWRlL3N5c21hbi1yYy1zZXR0aW5nLXVwLWN3bG9ncy5odG1sKS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgY2xvdWRXYXRjaE91dHB1dENvbmZpZz86IElTdHJpbmdNYXBWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFVzZXItZGVmaW5lZCBpbmZvcm1hdGlvbiBhYm91dCB0aGUgY29tbWFuZC5cbiAgICAgKi9cbiAgcmVhZG9ubHkgY29tbWVudD86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBoYXNoIGZvciB0aGUgZG9jdW1lbnQuXG4gICAgICovXG4gIHJlYWRvbmx5IGRvY3VtZW50SGFzaD86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSB0eXBlIG9mIHRoZSBoYXNoLlxuICAgICAqL1xuICByZWFkb25seSBkb2N1bWVudEhhc2hUeXBlPzogSURvY3VtZW50SGFzaFR5cGVWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBjb25maWd1cmF0aW9ucyBmb3Igc2VuZGluZyBub3RpZmljYXRpb25zLlxuICAgICAqL1xuICByZWFkb25seSBub3RpZmljYXRpb25Db25maWc/OiBJU3RyaW5nTWFwVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgbmFtZSBvZiB0aGUgUzMgYnVja2V0IGZvciBjb21tYW5kIG91dHB1dCByZXNwb25zZXMuXG4gICAgICovXG4gIHJlYWRvbmx5IG91dHB1dFMzQnVja2V0TmFtZT86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBwcmVmaXguXG4gICAgICovXG4gIHJlYWRvbmx5IG91dHB1dFMzS2V5UHJlZml4PzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgVGhlIEFSTiBvZiB0aGUgQVdTIElkZW50aXR5IGFuZCBBY2Nlc3MgTWFuYWdlbWVudCAoSUFNKSByb2xlLlxuICAgICAqL1xuICByZWFkb25seSBzZXJ2aWNlUm9sZUFybj86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICAgKiAoT3B0aW9uYWwpIFRoZSBhbW91bnQgb2YgdGltZSBpbiBzZWNvbmRzIHRvIHdhaXQgZm9yIGEgY29tbWFuZCB0byBkZWxpdmVyIHRvIHRoZSBBV1MgU3lzdGVtcyBNYW5hZ2VyIFNTTSBBZ2VudCBvbiBhbiBpbnN0YW5jZS4gSWYgdGhlIGNvbW1hbmQgaXNuJ3QgcmVjZWl2ZWQgYnkgdGhlIFNTTSBBZ2VudCBvbiB0aGUgaW5zdGFuY2UgYmVmb3JlIHRoZSB2YWx1ZSBzcGVjaWZpZWQgaXMgcmVhY2hlZCwgdGhlbiB0aGUgc3RhdHVzIG9mIHRoZSBjb21tYW5kIGNoYW5nZXMgdG8gRGVsaXZlcnkgVGltZWQgT3V0LlxuICAgICAqL1xuICByZWFkb25seSBjb21tYW5kVGltZW91dFNlY29uZHM/OiBJTnVtYmVyVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgbWF4aW11bSBjb25jdXJyZW5jeS5cbiAgICAgKi9cbiAgcmVhZG9ubHkgbWF4Q29uY3VycmVuY3k/OiBJTnVtYmVyVmFyaWFibGU7XG5cbiAgLyoqXG4gICAgICogKE9wdGlvbmFsKSBUaGUgbWF4aW11bSBlcnJvcnMuXG4gICAgICovXG4gIHJlYWRvbmx5IG1heEVycm9ycz86IElOdW1iZXJWYXJpYWJsZTtcbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbnRhdGlvbiBvZiBbYXdzOnJ1bkNvbW1hbmRdKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi1ydW5jb21tYW5kLmh0bWwpXG4gKi9cbmV4cG9ydCBjbGFzcyBSdW5Db21tYW5kU3RlcCBleHRlbmRzIEF1dG9tYXRpb25TdGVwIHtcbiAgcmVhZG9ubHkgYWN0aW9uID0gJ2F3czpydW5Db21tYW5kJztcbiAgcmVhZG9ubHkgZG9jdW1lbnROYW1lOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHRhcmdldHM6IElTdHJpbmdMaXN0VmFyaWFibGUgfCBJTWFwTGlzdFZhcmlhYmxlO1xuICByZWFkb25seSBwYXJhbWV0ZXJzPzogSVN0cmluZ01hcFZhcmlhYmxlO1xuICByZWFkb25seSBjbG91ZFdhdGNoT3V0cHV0Q29uZmlnPzogSVN0cmluZ01hcFZhcmlhYmxlO1xuICByZWFkb25seSBjb21tZW50PzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBkb2N1bWVudEhhc2g/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGRvY3VtZW50SGFzaFR5cGU/OiBJRG9jdW1lbnRIYXNoVHlwZVZhcmlhYmxlO1xuICByZWFkb25seSBub3RpZmljYXRpb25Db25maWc/OiBJU3RyaW5nTWFwVmFyaWFibGU7XG4gIHJlYWRvbmx5IG91dHB1dFMzQnVja2V0TmFtZT86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgb3V0cHV0UzNLZXlQcmVmaXg/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHNlcnZpY2VSb2xlQXJuPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBjb21tYW5kVGltZW91dFNlY29uZHM/OiBJTnVtYmVyVmFyaWFibGU7XG4gIHJlYWRvbmx5IG1heENvbmN1cnJlbmN5PzogSU51bWJlclZhcmlhYmxlO1xuICByZWFkb25seSBtYXhFcnJvcnM/OiBJTnVtYmVyVmFyaWFibGU7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFJ1bkNvbW1hbmRTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLmRvY3VtZW50TmFtZSA9IHByb3BzLmRvY3VtZW50TmFtZTtcbiAgICB0aGlzLnRhcmdldHMgPSBwcm9wcy50YXJnZXRzO1xuICAgIHRoaXMucGFyYW1ldGVycyA9IHByb3BzLnBhcmFtZXRlcnM7XG4gICAgdGhpcy5jbG91ZFdhdGNoT3V0cHV0Q29uZmlnID0gcHJvcHMuY2xvdWRXYXRjaE91dHB1dENvbmZpZztcbiAgICB0aGlzLmNvbW1lbnQgPSBwcm9wcy5jb21tZW50O1xuICAgIHRoaXMuZG9jdW1lbnRIYXNoID0gcHJvcHMuZG9jdW1lbnRIYXNoO1xuICAgIHRoaXMuZG9jdW1lbnRIYXNoVHlwZSA9IHByb3BzLmRvY3VtZW50SGFzaFR5cGU7XG4gICAgdGhpcy5ub3RpZmljYXRpb25Db25maWcgPSBwcm9wcy5ub3RpZmljYXRpb25Db25maWc7XG4gICAgdGhpcy5vdXRwdXRTM0J1Y2tldE5hbWUgPSBwcm9wcy5vdXRwdXRTM0J1Y2tldE5hbWU7XG4gICAgdGhpcy5vdXRwdXRTM0tleVByZWZpeCA9IHByb3BzLm91dHB1dFMzS2V5UHJlZml4O1xuICAgIHRoaXMuc2VydmljZVJvbGVBcm4gPSBwcm9wcy5zZXJ2aWNlUm9sZUFybjtcbiAgICB0aGlzLmNvbW1hbmRUaW1lb3V0U2Vjb25kcyA9IHByb3BzLmNvbW1hbmRUaW1lb3V0U2Vjb25kcztcbiAgICB0aGlzLm1heENvbmN1cnJlbmN5ID0gcHJvcHMubWF4Q29uY3VycmVuY3k7XG4gICAgdGhpcy5tYXhFcnJvcnMgPSBwcm9wcy5tYXhFcnJvcnM7XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiBbe1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIHNlbGVjdG9yOiAnJC5Db21tYW5kSWQnLFxuICAgICAgbmFtZTogJ0NvbW1hbmRJZCcsXG4gICAgfSwge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLlNUUklORyxcbiAgICAgIHNlbGVjdG9yOiAnJC5TdGF0dXMnLFxuICAgICAgbmFtZTogJ1N0YXR1cycsXG4gICAgfSwge1xuICAgICAgb3V0cHV0VHlwZTogRGF0YVR5cGVFbnVtLklOVEVHRVIsXG4gICAgICBzZWxlY3RvcjogJyQuUmVzcG9uc2VDb2RlJyxcbiAgICAgIG5hbWU6ICdSZXNwb25zZUNvZGUnLFxuICAgIH0sIHtcbiAgICAgIG91dHB1dFR5cGU6IERhdGFUeXBlRW51bS5TVFJJTkcsXG4gICAgICBzZWxlY3RvcjogJyQuT3V0cHV0JyxcbiAgICAgIG5hbWU6ICdPdXRwdXQnLFxuICAgIH1dO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuZG9jdW1lbnROYW1lLFxuICAgICAgdGhpcy50YXJnZXRzLFxuICAgICAgdGhpcy5wYXJhbWV0ZXJzLFxuICAgICAgdGhpcy5jbG91ZFdhdGNoT3V0cHV0Q29uZmlnLFxuICAgICAgdGhpcy5jb21tZW50LFxuICAgICAgdGhpcy5kb2N1bWVudEhhc2gsXG4gICAgICB0aGlzLmRvY3VtZW50SGFzaFR5cGUsXG4gICAgICB0aGlzLm5vdGlmaWNhdGlvbkNvbmZpZyxcbiAgICAgIHRoaXMub3V0cHV0UzNCdWNrZXROYW1lLFxuICAgICAgdGhpcy5vdXRwdXRTM0tleVByZWZpeCxcbiAgICAgIHRoaXMuc2VydmljZVJvbGVBcm4sXG4gICAgICB0aGlzLmNvbW1hbmRUaW1lb3V0U2Vjb25kcyxcbiAgICAgIHRoaXMubWF4Q29uY3VycmVuY3ksXG4gICAgICB0aGlzLm1heEVycm9ycyxcbiAgICBdO1xuXG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiBSZWNvcmQ8c3RyaW5nLCBhbnk+IHtcbiAgICBjb25zdCBlbnRyeU1hcDogUmVjb3JkPHN0cmluZywgYW55PiA9IHtcbiAgICAgIERvY3VtZW50TmFtZTogdGhpcy5kb2N1bWVudE5hbWUsXG4gICAgICBQYXJhbWV0ZXJzOiB0aGlzLnBhcmFtZXRlcnMsXG4gICAgICBDbG91ZFdhdGNoT3V0cHV0Q29uZmlnOiB0aGlzLmNsb3VkV2F0Y2hPdXRwdXRDb25maWcsXG4gICAgICBDb21tZW50OiB0aGlzLmNvbW1lbnQsXG4gICAgICBEb2N1bWVudEhhc2g6IHRoaXMuZG9jdW1lbnRIYXNoLFxuICAgICAgRG9jdW1lbnRIYXNoVHlwZTogdGhpcy5kb2N1bWVudEhhc2hUeXBlLFxuICAgICAgTm90aWZpY2F0aW9uQ29uZmlnOiB0aGlzLm5vdGlmaWNhdGlvbkNvbmZpZyxcbiAgICAgIE91dHB1dFMzQnVja2V0TmFtZTogdGhpcy5vdXRwdXRTM0J1Y2tldE5hbWUsXG4gICAgICBPdXRwdXRTM0tleVByZWZpeDogdGhpcy5vdXRwdXRTM0tleVByZWZpeCxcbiAgICAgIFNlcnZpY2VSb2xlQXJuOiB0aGlzLnNlcnZpY2VSb2xlQXJuLFxuICAgICAgVGltZW91dFNlY29uZHM6IHRoaXMuY29tbWFuZFRpbWVvdXRTZWNvbmRzLFxuICAgICAgTWF4Q29uY3VycmVuY3k6IHRoaXMubWF4Q29uY3VycmVuY3ksXG4gICAgICBNYXhFcnJvcnM6IHRoaXMubWF4RXJyb3JzLFxuICAgIH07XG4gICAgaWYgKCh0aGlzLnRhcmdldHMgYXMgYW55KT8ucmVzb2x2ZVRvU3RyaW5nTGlzdCkge1xuICAgICAgZW50cnlNYXAuSW5zdGFuY2VJZHMgPSB0aGlzLnRhcmdldHM7XG4gICAgfSBlbHNlIHtcbiAgICAgIGVudHJ5TWFwLlRhcmdldHMgPSB0aGlzLnRhcmdldHM7XG4gICAgfVxuXG4gICAgcmV0dXJuIHN1cGVyLnByZXBhcmVTc21FbnRyeShwcnVuZUFuZFRyYW5zZm9ybVJlY29yZChlbnRyeU1hcCwgeCA9PiB4LnByaW50KCkpKTtcbiAgfVxufSJdfQ==
@@ -123,5 +123,5 @@ class RunInstanceStep extends automation_step_1.AutomationStep {
123
123
  }
124
124
  exports.RunInstanceStep = RunInstanceStep;
125
125
  _a = JSII_RTTI_SYMBOL_1;
126
- RunInstanceStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.RunInstanceStep", version: "0.0.59" };
126
+ RunInstanceStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.RunInstanceStep", version: "0.0.61" };
127
127
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicnVuLWluc3RhbmNlLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vcnVuLWluc3RhbmNlLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFDQSw2QkFBb0o7QUFFcEosdUZBQWlGO0FBQ2pGLHdEQUF5RTtBQWlJekU7OztHQUdHO0FBQ0gsTUFBYSxlQUFnQixTQUFRLGdDQUFjO0lBNEJqRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTJCO1FBQ25FLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBSGpCLFdBQU0sR0FBVyxrQkFBa0IsQ0FBQztRQUkzQyxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUM7UUFDN0IsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUMsZ0JBQWdCLENBQUM7UUFDL0MsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQyxJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQyxjQUFjLENBQUM7UUFDM0MsSUFBSSxDQUFDLG1CQUFtQixHQUFHLEtBQUssQ0FBQyxtQkFBbUIsQ0FBQztRQUNyRCxJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQyxXQUFXLENBQUM7UUFDckMsSUFBSSxDQUFDLHFCQUFxQixHQUFHLEtBQUssQ0FBQyxxQkFBcUIsQ0FBQztRQUN6RCxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQyxZQUFZLENBQUM7UUFDdkMsSUFBSSxDQUFDLHFCQUFxQixHQUFHLEtBQUssQ0FBQyxxQkFBcUIsQ0FBQztRQUN6RCxJQUFJLENBQUMsc0JBQXNCLEdBQUcsS0FBSyxDQUFDLHNCQUFzQixDQUFDO1FBQzNELElBQUksQ0FBQyxpQ0FBaUMsR0FBRyxLQUFLLENBQUMsaUNBQWlDLENBQUM7UUFDakYsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsUUFBUSxDQUFDO1FBQy9CLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQztRQUM3QixJQUFJLENBQUMsVUFBVSxHQUFHLEtBQUssQ0FBQyxVQUFVLENBQUM7UUFDbkMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQztRQUNqRCxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztRQUMvQyxJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQyxjQUFjLENBQUM7UUFDM0MsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsUUFBUSxDQUFDO1FBQy9CLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUMsaUJBQWlCLENBQUM7UUFDakQsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsUUFBUSxDQUFDO0lBQ2pDLENBQUM7SUFFRDs7U0FFSztJQUNFLFdBQVc7UUFDaEIsT0FBTyxDQUFDO2dCQUNOLFVBQVUsRUFBRSxnQkFBWSxDQUFDLFdBQVc7Z0JBQ3BDLElBQUksRUFBRSxhQUFhO2dCQUNuQixRQUFRLEVBQUUsZUFBZTthQUMxQixFQUFFO2dCQUNELFVBQVUsRUFBRSxnQkFBWSxDQUFDLFdBQVc7Z0JBQ3BDLElBQUksRUFBRSxnQkFBZ0I7Z0JBQ3RCLFFBQVEsRUFBRSxrQkFBa0I7YUFDN0IsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVEOzs7U0FHSztJQUNFLFVBQVU7UUFDZixNQUFNLE1BQU0sR0FBRztZQUNiLElBQUksQ0FBQyxPQUFPO1lBQ1osSUFBSSxDQUFDLFlBQVk7WUFDakIsSUFBSSxDQUFDLGdCQUFnQjtZQUNyQixJQUFJLENBQUMsZ0JBQWdCO1lBQ3JCLElBQUksQ0FBQyxjQUFjO1lBQ25CLElBQUksQ0FBQyxtQkFBbUI7WUFDeEIsSUFBSSxDQUFDLFdBQVc7WUFDaEIsSUFBSSxDQUFDLHFCQUFxQjtZQUMxQixJQUFJLENBQUMsWUFBWTtZQUNqQixJQUFJLENBQUMscUJBQXFCO1lBQzFCLElBQUksQ0FBQyxzQkFBc0I7WUFDM0IsSUFBSSxDQUFDLGlDQUFpQztZQUN0QyxJQUFJLENBQUMsUUFBUTtZQUNiLElBQUksQ0FBQyxPQUFPO1lBQ1osSUFBSSxDQUFDLFVBQVU7WUFDZixJQUFJLENBQUMsaUJBQWlCO1lBQ3RCLElBQUksQ0FBQyxTQUFTO1lBQ2QsSUFBSSxDQUFDLGdCQUFnQjtZQUNyQixJQUFJLENBQUMsU0FBUztZQUNkLElBQUksQ0FBQyxnQkFBZ0I7WUFDckIsSUFBSSxDQUFDLGNBQWM7WUFDbkIsSUFBSSxDQUFDLFFBQVE7WUFDYixJQUFJLENBQUMsaUJBQWlCO1lBQ3RCLElBQUksQ0FBQyxRQUFRO1NBQ2QsQ0FBQztRQUVGLE1BQU0sY0FBYyxHQUFhLEVBQUUsQ0FBQztRQUNwQyxLQUFLLE1BQU0sS0FBSyxJQUFJLE1BQU0sRUFBRSxDQUFDO1lBQzNCLGNBQWMsQ0FBQyxJQUFJLENBQUMsR0FBRyxLQUFLLEVBQUUsY0FBYyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7UUFDeEQsQ0FBQztRQUNELE9BQU8sY0FBYyxDQUFDO0lBQ3hCLENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxRQUFRLEdBQXdCO1lBQ3BDLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTztZQUNyQixZQUFZLEVBQUUsSUFBSSxDQUFDLFlBQVk7WUFDL0IsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGdCQUFnQjtZQUN2QyxnQkFBZ0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO1lBQ3ZDLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztZQUNuQyxtQkFBbUIsRUFBRSxJQUFJLENBQUMsbUJBQW1CO1lBQzdDLFdBQVcsRUFBRSxJQUFJLENBQUMsV0FBVztZQUM3QixxQkFBcUIsRUFBRSxJQUFJLENBQUMscUJBQXFCO1lBQ2pELFlBQVksRUFBRSxJQUFJLENBQUMsWUFBWTtZQUMvQixxQkFBcUIsRUFBRSxJQUFJLENBQUMscUJBQXFCO1lBQ2pELHNCQUFzQixFQUFFLElBQUksQ0FBQyxzQkFBc0I7WUFDbkQsaUNBQWlDLEVBQUUsSUFBSSxDQUFDLGlDQUFpQztZQUN6RSxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPO1lBQ3JCLFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTtZQUMzQixpQkFBaUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1lBQ3pDLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixnQkFBZ0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO1lBQ3ZDLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixnQkFBZ0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO1lBQ3ZDLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztZQUNuQyxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsaUJBQWlCLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtZQUN6QyxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7U0FDeEIsQ0FBQztRQUVGLE1BQU0sTUFBTSxHQUFHLElBQUEsb0RBQXVCLEVBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7UUFFakUsT0FBTyxLQUFLLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7O0FBN0lILDBDQThJQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgRGF0YVR5cGVFbnVtLCBJQm9vbGVhblZhcmlhYmxlLCBJTWFwTGlzdFZhcmlhYmxlLCBJTnVtYmVyVmFyaWFibGUsIElTdHJpbmdMaXN0VmFyaWFibGUsIElTdHJpbmdNYXBWYXJpYWJsZSwgSVN0cmluZ1ZhcmlhYmxlIH0gZnJvbSAnLi4vLi4nO1xuaW1wb3J0IHsgT3V0cHV0IH0gZnJvbSAnLi4vLi4vZG9tYWluL291dHB1dCc7XG5pbXBvcnQgeyBwcnVuZUFuZFRyYW5zZm9ybVJlY29yZCB9IGZyb20gJy4uLy4uL3V0aWxzL3BydW5lLWFuZC10cmFuc2Zvcm0tcmVjb3JkJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBSdW5JbnN0YW5jZVN0ZXBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBSdW5JbnN0YW5jZVN0ZXBQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuXG4gIC8qKlxuICAgKiBUaGUgSUQgb2YgdGhlIEFtYXpvbiBNYWNoaW5lIEltYWdlIChBTUkpLlxuICAgKi9cbiAgcmVhZG9ubHkgaW1hZ2VJZDogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBpbnN0YW5jZSB0eXBlLlxuICAgKi9cbiAgcmVhZG9ubHkgaW5zdGFuY2VUeXBlPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBtaW5pbXVtIG51bWJlciBvZiBpbnN0YW5jZXMgdG8gYmUgbGF1bmNoZWQuXG4gICAqL1xuICByZWFkb25seSBtaW5JbnN0YW5jZUNvdW50PzogSU51bWJlclZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBtYXhpbXVtIG51bWJlciBvZiBpbnN0YW5jZXMgdG8gYmUgbGF1bmNoZWQuXG4gICAqL1xuICByZWFkb25seSBtYXhJbnN0YW5jZUNvdW50PzogSU51bWJlclZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFJlc2VydmVkLlxuICAgKi9cbiAgcmVhZG9ubHkgYWRkaXRpb25hbEluZm8/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIGJsb2NrIGRldmljZXMgZm9yIHRoZSBpbnN0YW5jZS5cbiAgICovXG4gIHJlYWRvbmx5IGJsb2NrRGV2aWNlTWFwcGluZ3M/OiBJTWFwTGlzdFZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBpZGVudGlmaWVyIHRvIGVuc3VyZSBpZGVtcG90ZW5jeSBvZiB0aGUgcmVxdWVzdC5cbiAgICovXG4gIHJlYWRvbmx5IGNsaWVudFRva2VuPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFR1cm5zIG9uIG9yIHR1cm5zIG9mZiBpbnN0YW5jZSBBUEkgdGVybWluYXRpb24uXG4gICAqL1xuICByZWFkb25seSBkaXNhYmxlQXBpVGVybWluYXRpb24/OiBJQm9vbGVhblZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFR1cm5zIG9uIG9yIHR1cm5zIG9mZiBBbWF6b24gRWxhc3RpYyBCbG9jayBTdG9yZSAoQW1hem9uIEVCUykgb3B0aW1pemF0aW9uLlxuICAgKi9cbiAgcmVhZG9ubHkgZWJzT3B0aW1pemVkPzogSUJvb2xlYW5WYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgQW1hem9uIFJlc291cmNlIE5hbWUgKEFSTikgb2YgdGhlIEFXUyBJZGVudGl0eSBhbmQgQWNjZXNzIE1hbmFnZW1lbnQgKElBTSkgaW5zdGFuY2UgcHJvZmlsZSBmb3IgdGhlIGluc3RhbmNlLlxuICAgKi9cbiAgcmVhZG9ubHkgaWFtSW5zdGFuY2VQcm9maWxlQXJuPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBuYW1lIG9mIHRoZSBJQU0gaW5zdGFuY2UgcHJvZmlsZSBmb3IgdGhlIGluc3RhbmNlLlxuICAgKi9cbiAgcmVhZG9ubHkgaWFtSW5zdGFuY2VQcm9maWxlTmFtZT86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBJbmRpY2F0ZXMgd2hldGhlciB0aGUgaW5zdGFuY2Ugc3RvcHMgb3IgdGVybWluYXRlcyBvbiBzeXN0ZW0gc2h1dGRvd24uXG4gICAqL1xuICByZWFkb25seSBpbnN0YW5jZUluaXRpYXRlZFNodXRkb3duQmVoYXZpb3I/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIElEIG9mIHRoZSBrZXJuZWwuXG4gICAqL1xuICByZWFkb25seSBrZXJuZWxJZD86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgbmFtZSBvZiB0aGUga2V5IHBhaXIuXG4gICAqL1xuICByZWFkb25seSBrZXlOYW1lPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFR1cm5zIG9uIG9yIHR1cm5zIG9mZiBkZXRhaWxlZCBtb25pdG9yaW5nLlxuICAgKi9cbiAgcmVhZG9ubHkgbW9uaXRvcmluZz86IElCb29sZWFuVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIG5ldHdvcmsgaW50ZXJmYWNlcy5cbiAgICovXG4gIHJlYWRvbmx5IG5ldHdvcmtJbnRlcmZhY2VzPzogSU1hcExpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgcGxhY2VtZW50IGZvciB0aGUgaW5zdGFuY2UuXG4gICAqL1xuICByZWFkb25seSBwbGFjZW1lbnQ/OiBJU3RyaW5nTWFwVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIHByaW1hcnkgSVB2NCBhZGRyZXNzLlxuICAgKi9cbiAgcmVhZG9ubHkgcHJpdmF0ZUlwQWRkcmVzcz86IElTdHJpbmdWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgSUQgb2YgdGhlIFJBTSBkaXNrLlxuICAgKi9cbiAgcmVhZG9ubHkgcmFtZGlza0lkPzogSVN0cmluZ1ZhcmlhYmxlO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFRoZSBJRHMgb2YgdGhlIHNlY3VyaXR5IGdyb3VwcyBmb3IgdGhlIGluc3RhbmNlLlxuICAgKi9cbiAgcmVhZG9ubHkgc2VjdXJpdHlHcm91cElkcz86IElTdHJpbmdMaXN0VmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIG5hbWVzIG9mIHRoZSBzZWN1cml0eSBncm91cHMgZm9yIHRoZSBpbnN0YW5jZS5cbiAgICovXG4gIHJlYWRvbmx5IHNlY3VyaXR5R3JvdXBzPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBUaGUgc3VibmV0IElELlxuICAgKi9cbiAgcmVhZG9ubHkgc3VibmV0SWQ/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVGhlIHRhZ3MgdG8gYXBwbHkgdG8gdGhlIHJlc291cmNlcyBkdXJpbmcgbGF1bmNoLiBZb3UgY2FuIG9ubHkgdGFnIGluc3RhbmNlcyBhbmQgdm9sdW1lcyBhdCBsYXVuY2guIFRoZSBzcGVjaWZpZWQgdGFncyBhcmUgYXBwbGllZCB0byBhbGwgaW5zdGFuY2VzIG9yIHZvbHVtZXMgdGhhdCBhcmUgY3JlYXRlZCBkdXJpbmcgbGF1bmNoLlxuICAgKiBUbyB0YWcgYW4gaW5zdGFuY2UgYWZ0ZXIgaXQgaGFzIGJlZW4gbGF1bmNoZWQsIHVzZSB0aGUgYXdzOmNyZWF0ZVRhZ3Mg4oCTIENyZWF0ZSB0YWdzIGZvciBBV1MgcmVzb3VyY2VzIGFjdGlvbi5cbiAgICovXG4gIHJlYWRvbmx5IHRhZ1NwZWNpZmljYXRpb25zPzogSU1hcExpc3RWYXJpYWJsZTtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBBIHNjcmlwdCBwcm92aWRlZCBhcyBhIHN0cmluZyBsaXRlcmFsIHZhbHVlLiBJZiBhIGxpdGVyYWwgdmFsdWUgaXMgZW50ZXJlZCwgdGhlbiBpdCBtdXN0IGJlIEJhc2U2NC1lbmNvZGVkLlxuICAgKi9cbiAgcmVhZG9ubHkgdXNlckRhdGE/OiBJU3RyaW5nVmFyaWFibGU7XG59XG5cbi8qKlxuICogQXV0b21hdGlvblN0ZXAgaW1wbGVtZW5hdGlvbiBmb3IgYXdzOnJ1bkluc3RhbmNlXG4gKiBodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvYXV0b21hdGlvbi1hY3Rpb24tcnVuaW5zdGFuY2UuaHRtbFxuICovXG5leHBvcnQgY2xhc3MgUnVuSW5zdGFuY2VTdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuXG4gIHJlYWRvbmx5IGltYWdlSWQ6IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgaW5zdGFuY2VUeXBlPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBtaW5JbnN0YW5jZUNvdW50PzogSU51bWJlclZhcmlhYmxlO1xuICByZWFkb25seSBtYXhJbnN0YW5jZUNvdW50PzogSU51bWJlclZhcmlhYmxlO1xuICByZWFkb25seSBhZGRpdGlvbmFsSW5mbz86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgYmxvY2tEZXZpY2VNYXBwaW5ncz86IElNYXBMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IGNsaWVudFRva2VuPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBkaXNhYmxlQXBpVGVybWluYXRpb24/OiBJQm9vbGVhblZhcmlhYmxlO1xuICByZWFkb25seSBlYnNPcHRpbWl6ZWQ/OiBJQm9vbGVhblZhcmlhYmxlO1xuICByZWFkb25seSBpYW1JbnN0YW5jZVByb2ZpbGVBcm4/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGlhbUluc3RhbmNlUHJvZmlsZU5hbWU/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGluc3RhbmNlSW5pdGlhdGVkU2h1dGRvd25CZWhhdmlvcj86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkga2VybmVsSWQ/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IGtleU5hbWU/OiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IG1vbml0b3Jpbmc/OiBJQm9vbGVhblZhcmlhYmxlO1xuICByZWFkb25seSBuZXR3b3JrSW50ZXJmYWNlcz86IElNYXBMaXN0VmFyaWFibGU7XG4gIHJlYWRvbmx5IHBsYWNlbWVudD86IElTdHJpbmdNYXBWYXJpYWJsZTtcbiAgcmVhZG9ubHkgcHJpdmF0ZUlwQWRkcmVzcz86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgcmFtZGlza0lkPzogSVN0cmluZ1ZhcmlhYmxlO1xuICByZWFkb25seSBzZWN1cml0eUdyb3VwSWRzPzogSVN0cmluZ0xpc3RWYXJpYWJsZTtcbiAgcmVhZG9ubHkgc2VjdXJpdHlHcm91cHM/OiBJU3RyaW5nTGlzdFZhcmlhYmxlO1xuICByZWFkb25seSBzdWJuZXRJZD86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgdGFnU3BlY2lmaWNhdGlvbnM/OiBJTWFwTGlzdFZhcmlhYmxlO1xuICByZWFkb25seSB1c2VyRGF0YT86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgYWN0aW9uOiBzdHJpbmcgPSAnYXdzOnJ1bkluc3RhbmNlcyc7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFJ1bkluc3RhbmNlU3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5pbWFnZUlkID0gcHJvcHMuaW1hZ2VJZDtcbiAgICB0aGlzLmluc3RhbmNlVHlwZSA9IHByb3BzLmluc3RhbmNlVHlwZTtcbiAgICB0aGlzLm1pbkluc3RhbmNlQ291bnQgPSBwcm9wcy5taW5JbnN0YW5jZUNvdW50O1xuICAgIHRoaXMubWF4SW5zdGFuY2VDb3VudCA9IHByb3BzLm1heEluc3RhbmNlQ291bnQ7XG4gICAgdGhpcy5hZGRpdGlvbmFsSW5mbyA9IHByb3BzLmFkZGl0aW9uYWxJbmZvO1xuICAgIHRoaXMuYmxvY2tEZXZpY2VNYXBwaW5ncyA9IHByb3BzLmJsb2NrRGV2aWNlTWFwcGluZ3M7XG4gICAgdGhpcy5jbGllbnRUb2tlbiA9IHByb3BzLmNsaWVudFRva2VuO1xuICAgIHRoaXMuZGlzYWJsZUFwaVRlcm1pbmF0aW9uID0gcHJvcHMuZGlzYWJsZUFwaVRlcm1pbmF0aW9uO1xuICAgIHRoaXMuZWJzT3B0aW1pemVkID0gcHJvcHMuZWJzT3B0aW1pemVkO1xuICAgIHRoaXMuaWFtSW5zdGFuY2VQcm9maWxlQXJuID0gcHJvcHMuaWFtSW5zdGFuY2VQcm9maWxlQXJuO1xuICAgIHRoaXMuaWFtSW5zdGFuY2VQcm9maWxlTmFtZSA9IHByb3BzLmlhbUluc3RhbmNlUHJvZmlsZU5hbWU7XG4gICAgdGhpcy5pbnN0YW5jZUluaXRpYXRlZFNodXRkb3duQmVoYXZpb3IgPSBwcm9wcy5pbnN0YW5jZUluaXRpYXRlZFNodXRkb3duQmVoYXZpb3I7XG4gICAgdGhpcy5rZXJuZWxJZCA9IHByb3BzLmtlcm5lbElkO1xuICAgIHRoaXMua2V5TmFtZSA9IHByb3BzLmtleU5hbWU7XG4gICAgdGhpcy5tb25pdG9yaW5nID0gcHJvcHMubW9uaXRvcmluZztcbiAgICB0aGlzLm5ldHdvcmtJbnRlcmZhY2VzID0gcHJvcHMubmV0d29ya0ludGVyZmFjZXM7XG4gICAgdGhpcy5wbGFjZW1lbnQgPSBwcm9wcy5wbGFjZW1lbnQ7XG4gICAgdGhpcy5wcml2YXRlSXBBZGRyZXNzID0gcHJvcHMucHJpdmF0ZUlwQWRkcmVzcztcbiAgICB0aGlzLnJhbWRpc2tJZCA9IHByb3BzLnJhbWRpc2tJZDtcbiAgICB0aGlzLnNlY3VyaXR5R3JvdXBJZHMgPSBwcm9wcy5zZWN1cml0eUdyb3VwSWRzO1xuICAgIHRoaXMuc2VjdXJpdHlHcm91cHMgPSBwcm9wcy5zZWN1cml0eUdyb3VwcztcbiAgICB0aGlzLnN1Ym5ldElkID0gcHJvcHMuc3VibmV0SWQ7XG4gICAgdGhpcy50YWdTcGVjaWZpY2F0aW9ucyA9IHByb3BzLnRhZ1NwZWNpZmljYXRpb25zO1xuICAgIHRoaXMudXNlckRhdGEgPSBwcm9wcy51c2VyRGF0YTtcbiAgfVxuXG4gIC8qKlxuICAgICAqIEByZXR1cm5zIElEcyBhbmQgc3RhdGVzIG9mIHRoZSBuZXcgaW5zdGFuY2VzXG4gICAgICovXG4gIHB1YmxpYyBsaXN0T3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIFt7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HX0xJU1QsXG4gICAgICBuYW1lOiAnSW5zdGFuY2VJZHMnLFxuICAgICAgc2VsZWN0b3I6ICckLkluc3RhbmNlSWRzJyxcbiAgICB9LCB7XG4gICAgICBvdXRwdXRUeXBlOiBEYXRhVHlwZUVudW0uU1RSSU5HX0xJU1QsXG4gICAgICBuYW1lOiAnSW5zdGFuY2VTdGF0ZXMnLFxuICAgICAgc2VsZWN0b3I6ICckLkluc3RhbmNlU3RhdGVzJyxcbiAgICB9XTtcbiAgfVxuXG4gIC8qKlxuICAgICAqIERlcml2ZXMgdGhlIGlucHV0cyBiYXNlZCBvbiBnaXZlbiB2YXJpYWJsZXNcbiAgICAgKiBAcmV0dXJucyBsaXN0IG9mIHJlcXVpcmVkIGlucHV0cy5cbiAgICAgKi9cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuaW1hZ2VJZCxcbiAgICAgIHRoaXMuaW5zdGFuY2VUeXBlLFxuICAgICAgdGhpcy5taW5JbnN0YW5jZUNvdW50LFxuICAgICAgdGhpcy5tYXhJbnN0YW5jZUNvdW50LFxuICAgICAgdGhpcy5hZGRpdGlvbmFsSW5mbyxcbiAgICAgIHRoaXMuYmxvY2tEZXZpY2VNYXBwaW5ncyxcbiAgICAgIHRoaXMuY2xpZW50VG9rZW4sXG4gICAgICB0aGlzLmRpc2FibGVBcGlUZXJtaW5hdGlvbixcbiAgICAgIHRoaXMuZWJzT3B0aW1pemVkLFxuICAgICAgdGhpcy5pYW1JbnN0YW5jZVByb2ZpbGVBcm4sXG4gICAgICB0aGlzLmlhbUluc3RhbmNlUHJvZmlsZU5hbWUsXG4gICAgICB0aGlzLmluc3RhbmNlSW5pdGlhdGVkU2h1dGRvd25CZWhhdmlvcixcbiAgICAgIHRoaXMua2VybmVsSWQsXG4gICAgICB0aGlzLmtleU5hbWUsXG4gICAgICB0aGlzLm1vbml0b3JpbmcsXG4gICAgICB0aGlzLm5ldHdvcmtJbnRlcmZhY2VzLFxuICAgICAgdGhpcy5wbGFjZW1lbnQsXG4gICAgICB0aGlzLnByaXZhdGVJcEFkZHJlc3MsXG4gICAgICB0aGlzLnJhbWRpc2tJZCxcbiAgICAgIHRoaXMuc2VjdXJpdHlHcm91cElkcyxcbiAgICAgIHRoaXMuc2VjdXJpdHlHcm91cHMsXG4gICAgICB0aGlzLnN1Ym5ldElkLFxuICAgICAgdGhpcy50YWdTcGVjaWZpY2F0aW9ucyxcbiAgICAgIHRoaXMudXNlckRhdGEsXG4gICAgXTtcblxuICAgIGNvbnN0IHJlcXVpcmVkSW5wdXRzOiBzdHJpbmdbXSA9IFtdO1xuICAgIGZvciAoY29uc3QgaW5wdXQgb2YgaW5wdXRzKSB7XG4gICAgICByZXF1aXJlZElucHV0cy5wdXNoKC4uLmlucHV0Py5yZXF1aXJlZElucHV0cygpID8/IFtdKTtcbiAgICB9XG4gICAgcmV0dXJuIHJlcXVpcmVkSW5wdXRzO1xuICB9XG5cbiAgcHVibGljIHRvU3NtRW50cnkoKTogeyBbbmFtZTogc3RyaW5nXTogYW55IH0ge1xuICAgIGNvbnN0IGlucHV0TWFwOiBSZWNvcmQ8c3RyaW5nLCBhbnk+ID0ge1xuICAgICAgSW1hZ2VJZDogdGhpcy5pbWFnZUlkLFxuICAgICAgSW5zdGFuY2VUeXBlOiB0aGlzLmluc3RhbmNlVHlwZSxcbiAgICAgIE1pbkluc3RhbmNlQ291bnQ6IHRoaXMubWluSW5zdGFuY2VDb3VudCxcbiAgICAgIE1heEluc3RhbmNlQ291bnQ6IHRoaXMubWF4SW5zdGFuY2VDb3VudCxcbiAgICAgIEFkZGl0aW9uYWxJbmZvOiB0aGlzLmFkZGl0aW9uYWxJbmZvLFxuICAgICAgQmxvY2tEZXZpY2VNYXBwaW5nczogdGhpcy5ibG9ja0RldmljZU1hcHBpbmdzLFxuICAgICAgQ2xpZW50VG9rZW46IHRoaXMuY2xpZW50VG9rZW4sXG4gICAgICBEaXNhYmxlQXBpVGVybWluYXRpb246IHRoaXMuZGlzYWJsZUFwaVRlcm1pbmF0aW9uLFxuICAgICAgRWJzT3B0aW1pemVkOiB0aGlzLmVic09wdGltaXplZCxcbiAgICAgIElhbUluc3RhbmNlUHJvZmlsZUFybjogdGhpcy5pYW1JbnN0YW5jZVByb2ZpbGVBcm4sXG4gICAgICBJYW1JbnN0YW5jZVByb2ZpbGVOYW1lOiB0aGlzLmlhbUluc3RhbmNlUHJvZmlsZU5hbWUsXG4gICAgICBJbnN0YW5jZUluaXRpYXRlZFNodXRkb3duQmVoYXZpb3I6IHRoaXMuaW5zdGFuY2VJbml0aWF0ZWRTaHV0ZG93bkJlaGF2aW9yLFxuICAgICAgS2VybmVsSWQ6IHRoaXMua2VybmVsSWQsXG4gICAgICBLZXlOYW1lOiB0aGlzLmtleU5hbWUsXG4gICAgICBNb25pdG9yaW5nOiB0aGlzLm1vbml0b3JpbmcsXG4gICAgICBOZXR3b3JrSW50ZXJmYWNlczogdGhpcy5uZXR3b3JrSW50ZXJmYWNlcyxcbiAgICAgIFBsYWNlbWVudDogdGhpcy5wbGFjZW1lbnQsXG4gICAgICBQcml2YXRlSXBBZGRyZXNzOiB0aGlzLnByaXZhdGVJcEFkZHJlc3MsXG4gICAgICBSYW1kaXNrSWQ6IHRoaXMucmFtZGlza0lkLFxuICAgICAgU2VjdXJpdHlHcm91cElkczogdGhpcy5zZWN1cml0eUdyb3VwSWRzLFxuICAgICAgU2VjdXJpdHlHcm91cHM6IHRoaXMuc2VjdXJpdHlHcm91cHMsXG4gICAgICBTdWJuZXRJZDogdGhpcy5zdWJuZXRJZCxcbiAgICAgIFRhZ1NwZWNpZmljYXRpb25zOiB0aGlzLnRhZ1NwZWNpZmljYXRpb25zLFxuICAgICAgVXNlckRhdGE6IHRoaXMudXNlckRhdGEsXG4gICAgfTtcblxuICAgIGNvbnN0IGlucHV0cyA9IHBydW5lQW5kVHJhbnNmb3JtUmVjb3JkKGlucHV0TWFwLCB4ID0+IHgucHJpbnQoKSk7XG5cbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGlucHV0cyk7XG4gIH1cbn1cbiJdfQ==
@@ -37,5 +37,5 @@ class SleepStep extends automation_step_1.AutomationStep {
37
37
  }
38
38
  exports.SleepStep = SleepStep;
39
39
  _a = JSII_RTTI_SYMBOL_1;
40
- SleepStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.SleepStep", version: "0.0.59" };
40
+ SleepStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.SleepStep", version: "0.0.61" };
41
41
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2xlZXAtc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi9zbGVlcC1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBRUEsd0RBQXlFO0FBY3pFOzs7R0FHRztBQUNILE1BQWEsU0FBVSxTQUFRLGdDQUFjO0lBSzNDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBcUI7UUFDN0QsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFIakIsV0FBTSxHQUFXLFdBQVcsQ0FBQztRQUlwQyxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQyxZQUFZLENBQUM7UUFDdkMsSUFBSSxJQUFJLENBQUMsWUFBWSxHQUFHLE1BQU0sRUFBRSxDQUFDO1lBQy9CLE1BQU0sSUFBSSxLQUFLLENBQUMsOERBQThELEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQ3RHLENBQUM7SUFDSCxDQUFDO0lBRUQ7OztTQUdLO0lBQ0UsV0FBVztRQUNoQixPQUFPLEVBQUUsQ0FBQztJQUNaLENBQUM7SUFFRDs7O1NBR0s7SUFDRSxVQUFVO1FBQ2YsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU0sVUFBVTtRQUNmLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQyxFQUFFLFFBQVEsRUFBRSxLQUFLLElBQUksQ0FBQyxZQUFZLEdBQUcsRUFBRSxDQUFDLENBQUM7SUFDeEUsQ0FBQzs7QUEvQkgsOEJBaUNDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBPdXRwdXQgfSBmcm9tICcuLi8uLi9kb21haW4vb3V0cHV0JztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwLCBBdXRvbWF0aW9uU3RlcFByb3BzIH0gZnJvbSAnLi4vYXV0b21hdGlvbi1zdGVwJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciBzbGVlcCBzdGVwLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFNsZWVwU3RlcFByb3BzIGV4dGVuZHMgQXV0b21hdGlvblN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAgICogKFJlcXVpcmVkKSBUaGUgYW1vdW50IG9mIHNlY29uZHMgdG8gc2xlZXAgZm9yLiBNYXkgbm90IGV4Y2VlZCA2MDQ4MDAuXG4gICAgICogVGhpcyB3aWxsIGJlIHVzZWQgaW4gdGhlIFNTTSBkb2MgYXMgd2VsbCBhcyBob3cgbG9uZyB0byBpbmRpY2F0ZSBzbGVlcCB0byB0aGUgc2xlZXBIb29rLlxuICAgICAqL1xuICByZWFkb25seSBzbGVlcFNlY29uZHM6IG51bWJlcjtcbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsZW1lbmF0aW9uIGZvciBhd3M6c2xlZXBcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi1zbGVlcC5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBTbGVlcFN0ZXAgZXh0ZW5kcyBBdXRvbWF0aW9uU3RlcCB7XG5cbiAgcmVhZG9ubHkgc2xlZXBTZWNvbmRzOiBudW1iZXI7XG4gIHJlYWRvbmx5IGFjdGlvbjogc3RyaW5nID0gJ2F3czpzbGVlcCc7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFNsZWVwU3RlcFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCBwcm9wcyk7XG4gICAgdGhpcy5zbGVlcFNlY29uZHMgPSBwcm9wcy5zbGVlcFNlY29uZHM7XG4gICAgaWYgKHRoaXMuc2xlZXBTZWNvbmRzID4gNjA0ODAwKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoJ1NsZWVwIGlzIGdyZWF0ZXIgdGhhbiBtYXhpbXVtIG9mIDYwNDgwMC4gU2Vjb25kcyBzcGVjaWZpZWQ6ICcgKyB0aGlzLnNsZWVwU2Vjb25kcyk7XG4gICAgfVxuICB9XG5cbiAgLyoqXG4gICAgICogTm8gb3V0cHV0cyBlbWl0dGVkIGZyb20gU2xlZXAgc3RlcFxuICAgICAqIEByZXR1cm5zIFtdXG4gICAgICovXG4gIHB1YmxpYyBsaXN0T3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIFtdO1xuICB9XG5cbiAgLyoqXG4gICAgICogTm8gaW5wdXRzIHJlcXVpcmVkIGZvciBTbGVlcCBzdGVwXG4gICAgICogQHJldHVybnMgW11cbiAgICAgKi9cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIHJldHVybiBbXTtcbiAgfVxuXG4gIHB1YmxpYyB0b1NzbUVudHJ5KCk6IHsgW25hbWU6IHN0cmluZ106IGFueSB9IHtcbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KHsgRHVyYXRpb246IGBQVCR7dGhpcy5zbGVlcFNlY29uZHN9U2AgfSk7XG4gIH1cblxufVxuIl19
@@ -40,5 +40,5 @@ class UpdateVariableStep extends automation_step_1.AutomationStep {
40
40
  }
41
41
  exports.UpdateVariableStep = UpdateVariableStep;
42
42
  _a = JSII_RTTI_SYMBOL_1;
43
- UpdateVariableStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.UpdateVariableStep", version: "0.0.59" };
43
+ UpdateVariableStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.UpdateVariableStep", version: "0.0.61" };
44
44
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXBkYXRlLXZhcmlhYmxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3BhcmVudC1zdGVwcy9hdXRvbWF0aW9uL3VwZGF0ZS12YXJpYWJsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUdBLHdEQUF5RTtBQWtCekU7OztHQUdHO0FBQ0gsTUFBYSxrQkFBbUIsU0FBUSxnQ0FBYztJQUtwRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTBCO1FBQ2xFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBSGpCLFdBQU0sR0FBVyxvQkFBb0IsQ0FBQztRQUk3QyxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQyxZQUFZLENBQUM7UUFDdkMsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUMsYUFBYSxDQUFDO1FBRXpDLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsRUFBRSxDQUFDO1lBQzlDLE1BQU0sSUFBSSxLQUFLLENBQUMsZ0ZBQWdGLENBQUMsQ0FBQztRQUNwRyxDQUFDO0lBQ0gsQ0FBQztJQUVEOzs7T0FHRztJQUNJLFdBQVc7UUFDaEIsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUFHO1lBQ2IsSUFBSSxDQUFDLGFBQWE7U0FDbkIsQ0FBQztRQUVGLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRU0sVUFBVTtRQUNmLE9BQU8sS0FBSyxDQUFDLGVBQWUsQ0FBQztZQUMzQixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVk7WUFDdkIsS0FBSyxFQUFFLElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO1NBQ2xDLENBQUMsQ0FBQztJQUNMLENBQUM7O0FBcENILGdEQXFDQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgT3V0cHV0IH0gZnJvbSAnLi4vLi4vZG9tYWluL291dHB1dCc7XG5pbXBvcnQgeyBJR2VuZXJpY1ZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlL3ZhcmlhYmxlcy92YXJpYWJsZSc7XG5pbXBvcnQgeyBBdXRvbWF0aW9uU3RlcCwgQXV0b21hdGlvblN0ZXBQcm9wcyB9IGZyb20gJy4uL2F1dG9tYXRpb24tc3RlcCc7XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgdXBkYXRlIHZhcmlhYmxlIHN0ZXAuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgVXBkYXRlVmFyaWFibGVQcm9wcyBleHRlbmRzIEF1dG9tYXRpb25TdGVwUHJvcHMge1xuXG4gIC8qKlxuICAgKiAoUmVxdWlyZWQpIFRoZSBuYW1lIG9mIHRoZSB2YXJpYWJsZSB0byBiZSB1cGRhdGVkLiBNdXN0IHVzZSBmb3JtYXQgYHZhcmlhYmxlOjx2YXJpYWJsZSBuYW1lPmAuXG4gICAqL1xuICByZWFkb25seSB2YXJpYWJsZU5hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogKFJlcXVpcmVkKSBUaGUgdmFsdWUgb2YgdGhlIHZhcmlhYmxlIHRvIGJlIHVwZGF0ZWQuXG4gICAqL1xuICByZWFkb25seSB2YXJpYWJsZVZhbHVlOiBJR2VuZXJpY1ZhcmlhYmxlO1xufVxuXG4vKipcbiAqIEF1dG9tYXRpb25TdGVwIGltcGxlbWVudGF0aW9uIGZvciBhd3M6dXBkYXRlVmFyaWFibGVcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi11cGRhdGUtdmFyaWFibGUuaHRtbFxuICovXG5leHBvcnQgY2xhc3MgVXBkYXRlVmFyaWFibGVTdGVwIGV4dGVuZHMgQXV0b21hdGlvblN0ZXAge1xuICByZWFkb25seSB2YXJpYWJsZU5hbWU6IHN0cmluZztcbiAgcmVhZG9ubHkgdmFyaWFibGVWYWx1ZTogSUdlbmVyaWNWYXJpYWJsZTtcbiAgcmVhZG9ubHkgYWN0aW9uOiBzdHJpbmcgPSAnYXdzOnVwZGF0ZVZhcmlhYmxlJztcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogVXBkYXRlVmFyaWFibGVQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwgcHJvcHMpO1xuICAgIHRoaXMudmFyaWFibGVOYW1lID0gcHJvcHMudmFyaWFibGVOYW1lO1xuICAgIHRoaXMudmFyaWFibGVWYWx1ZSA9IHByb3BzLnZhcmlhYmxlVmFsdWU7XG5cbiAgICBpZiAoIXRoaXMudmFyaWFibGVOYW1lLnN0YXJ0c1dpdGgoJ3ZhcmlhYmxlJykpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignVGhlIHZhcmlhYmxlIG5hbWUgc2hvdWxkIHN0YXJ0IHdpdGggXCJ2YXJpYWJsZTpcIiBpbmRpY2F0b3IsIGUuZy4sIHZhcmlhYmxlOm5hbWUnKTtcbiAgICB9XG4gIH1cblxuICAvKipcbiAgICogTm8gb3V0cHV0cyBlbWl0dGVkIGZyb20gdXBkYXRlIHZhcmlhYmxlIHN0ZXBcbiAgICogQHJldHVybnMgW11cbiAgICovXG4gIHB1YmxpYyBsaXN0T3V0cHV0cygpOiBPdXRwdXRbXSB7XG4gICAgcmV0dXJuIFtdO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMudmFyaWFibGVWYWx1ZSxcbiAgICBdO1xuXG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgcmV0dXJuIHN1cGVyLnByZXBhcmVTc21FbnRyeSh7XG4gICAgICBuYW1lOiB0aGlzLnZhcmlhYmxlTmFtZSxcbiAgICAgIHZhbHVlOiB0aGlzLnZhcmlhYmxlVmFsdWUucHJpbnQoKSxcbiAgICB9KTtcbiAgfVxufVxuIl19
@@ -17,5 +17,5 @@ class WaitForResourceStep extends assert_aws_resource_step_1.AssertAwsResourceSt
17
17
  }
18
18
  exports.WaitForResourceStep = WaitForResourceStep;
19
19
  _a = JSII_RTTI_SYMBOL_1;
20
- WaitForResourceStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.WaitForResourceStep", version: "0.0.59" };
20
+ WaitForResourceStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.WaitForResourceStep", version: "0.0.61" };
21
21
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FpdC1mb3ItcmVzb3VyY2Utc3RlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi93YWl0LWZvci1yZXNvdXJjZS1zdGVwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQ0EseUVBQStGO0FBYS9GOzs7R0FHRztBQUNILE1BQWEsbUJBQW9CLFNBQVEsZ0RBQXFCO0lBSTVELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBK0I7UUFDdkUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFIakIsV0FBTSxHQUFXLGdDQUFnQyxDQUFDO1FBSXpELElBQUksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUMsbUJBQW1CLElBQUksSUFBSSxDQUFDO0lBQy9ELENBQUM7O0FBUEgsa0RBU0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IEFzc2VydEF3c1Jlc291cmNlU3RlcCwgQXNzZXJ0QXdzUmVzb3VyY2VTdGVwUHJvcHMgfSBmcm9tICcuL2Fzc2VydC1hd3MtcmVzb3VyY2Utc3RlcCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgV2FpdEZvclJlc291cmNlU3RlcFByb3BzIGV4dGVuZHMgQXNzZXJ0QXdzUmVzb3VyY2VTdGVwUHJvcHMge1xuXG4gIC8qKlxuICAgICAqIChPcHRpb25hbCkgSG93IG11Y2ggdGltZSB0byBzbGVlcCBhZnRlciBub3QgcmVjZWl2aW5nIGRlc2lyZWQgcmVzcG9uc2UgZnJvbSBBV1MgU0RLLlxuICAgICAqIFRoaXMgaXMgb25seSB1c2VkIGZvciB0aGUgcnVuIHNpbXVsYXRpb24uXG4gICAgICogVGhpcyBpcyBub3QgdXNlZCBieSBTU00gYW5kIGlzIHRoZXJlZm9yZSBub3QgZGVjbGFyZWQgaW4gdGhlIFNTTSB5YW1sL2pzb24uXG4gICAgICogQGRlZmF1bHQgMjAwMCBtaWxsaXNcbiAgICAgKi9cbiAgcmVhZG9ubHkgc2xlZXBJbnRlcnZhbE1pbGxpcz86IG51bWJlcjtcbn1cblxuLyoqXG4gKiBBdXRvbWF0aW9uU3RlcCBpbXBsIGZvciBhd3M6d2FpdEZvckF3c1Jlc291cmNlUHJvcGVydHlcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9hdXRvbWF0aW9uLWFjdGlvbi13YWl0Rm9yQXdzUmVzb3VyY2VQcm9wZXJ0eS5odG1sXG4gKi9cbmV4cG9ydCBjbGFzcyBXYWl0Rm9yUmVzb3VyY2VTdGVwIGV4dGVuZHMgQXNzZXJ0QXdzUmVzb3VyY2VTdGVwIHtcbiAgcmVhZG9ubHkgc2xlZXBJbnRlcnZhbE1pbGxpczogbnVtYmVyO1xuICByZWFkb25seSBhY3Rpb246IHN0cmluZyA9ICdhd3M6d2FpdEZvckF3c1Jlc291cmNlUHJvcGVydHknO1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBXYWl0Rm9yUmVzb3VyY2VTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLnNsZWVwSW50ZXJ2YWxNaWxsaXMgPSBwcm9wcy5zbGVlcEludGVydmFsTWlsbGlzID8/IDIwMDA7XG4gIH1cblxufVxuIl19
@@ -94,7 +94,7 @@ class AutomationStep extends step_1.Step {
94
94
  }
95
95
  exports.AutomationStep = AutomationStep;
96
96
  _a = JSII_RTTI_SYMBOL_1;
97
- AutomationStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationStep", version: "0.0.59" };
97
+ AutomationStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationStep", version: "0.0.61" };
98
98
  AutomationStep.DEFAULT_TIMEOUT = 3600;
99
99
  AutomationStep.DEFAULT_MAX_ATTEMPTS = 1;
100
100
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b21hdGlvbi1zdGVwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3BhcmVudC1zdGVwcy9hdXRvbWF0aW9uLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFDQSwwQkFBb0M7QUFHcEMsbURBQStDO0FBRS9DLHdEQUFxRTtBQUVyRSxpQ0FBeUM7QUFrRHpDOzs7Ozs7O0dBT0c7QUFDSCxNQUFzQixjQUFlLFNBQVEsV0FBSTtJQWMvQyxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTBCO1FBQ2xFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQ3hCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDLFdBQVcsSUFBSSxjQUFjLENBQUMsb0JBQW9CLENBQUM7UUFDNUUsSUFBSSxDQUFDLGNBQWMsR0FBRyxLQUFLLENBQUMsY0FBYyxJQUFJLGNBQWMsQ0FBQyxlQUFlLENBQUM7UUFDN0UsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxJQUFJLEtBQUssQ0FBQztRQUNsQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLElBQUksSUFBSSxrQkFBSyxFQUFFLENBQUM7UUFDaEQsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsUUFBUSxJQUFJLElBQUksa0JBQUssRUFBRSxDQUFDO1FBQzlDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUMsZ0JBQWdCLENBQUM7UUFDL0MsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUMsV0FBVyxDQUFDO0lBQ3ZDLENBQUM7SUFFTSxhQUFhLENBQUMsR0FBOEI7UUFDakQsR0FBRyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNwQixDQUFDO0lBRVMsZUFBZSxDQUFDLE1BQStCO1FBQ3ZELGdDQUFnQztRQUNoQyxNQUFNLE1BQU0sR0FBcUIsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUMzQyxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztZQUNyQixNQUFNLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7UUFDOUMsQ0FBQztRQUNELE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM5QixNQUFNLENBQUMsR0FBRyxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDbEMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxRQUFRLEVBQUUsTUFBTSxDQUFDLENBQUM7UUFFN0IsSUFBSSxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRSxDQUFDO1lBQ3RDLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7WUFDdkUsTUFBTSxDQUFDLEdBQUcsQ0FBQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUMsQ0FBQztRQUMxQyxDQUFDO1FBQ0QsSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7WUFDZixNQUFNLENBQUMsR0FBRyxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsQ0FBQztRQUM1QixDQUFDO1FBQ0QsSUFBSSxJQUFJLENBQUMsV0FBVyxJQUFJLGNBQWMsQ0FBQyxvQkFBb0IsRUFBRSxDQUFDO1lBQzVELE1BQU0sQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUM5QyxDQUFDO1FBQ0QsSUFBSSxJQUFJLENBQUMsY0FBYyxJQUFJLGNBQWMsQ0FBQyxlQUFlLEVBQUUsQ0FBQztZQUMxRCxNQUFNLENBQUMsR0FBRyxDQUFDLGdCQUFnQixFQUFFLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUNwRCxDQUFDO1FBQ0QsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsWUFBWSxrQkFBSyxDQUFDLEVBQUUsQ0FBQztZQUN0QyxNQUFNLENBQUMsR0FBRyxDQUFDLFVBQVUsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLFVBQVUsRUFBRSxDQUFDLENBQUM7UUFDckQsQ0FBQztRQUNELElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxTQUFTLFlBQVksa0JBQUssQ0FBQyxFQUFFLENBQUM7WUFDdkMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxTQUFTLEVBQUUsQ0FBQztZQUN2QyxNQUFNLENBQUMsR0FBRyxDQUFDLFVBQVUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDekQsQ0FBQztRQUNELE1BQU0sT0FBTyxHQUE0QixFQUFFLENBQUM7UUFDNUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLEtBQUssRUFBRSxHQUFHLEVBQUUsRUFBRTtZQUM1QixPQUFPLENBQUMsR0FBRyxDQUFDLEdBQUcsS0FBSyxDQUFDO1FBQ3ZCLENBQUMsQ0FBQyxDQUFDO1FBQ0gsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQztJQUVEOztPQUVHO0lBQ0ssWUFBWSxDQUFDLE1BQWM7UUFDakMsT0FBTztZQUNMLElBQUksRUFBRSxNQUFNLENBQUMsSUFBSTtZQUNqQixRQUFRLEVBQUUsTUFBTSxDQUFDLFFBQVE7WUFDekIsSUFBSSxFQUFFLElBQUksb0JBQVEsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUMsV0FBVyxFQUFFO1NBQ3BELENBQUM7SUFDSixDQUFDO0lBRU0sU0FBUztRQUNkLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsR0FBRyxJQUFJLENBQUMsV0FBVyxFQUFFO2FBQzNDLEdBQUcsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxJQUFJLGtCQUFjLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxJQUFJLEdBQUcsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDbkYsQ0FBQztJQUVEOztPQUVHO0lBQ0ksZUFBZTtRQUNwQixJQUFJLElBQUksQ0FBQyxXQUFXO1lBQUUsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDO1FBQzlDLE9BQU8sRUFBRSxDQUFDO0lBQ1osQ0FBQztJQUVNLFdBQVc7UUFDaEIsT0FBTyxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDaEMsQ0FBQzs7QUE5Rkgsd0NBK0ZDOzs7QUE5RmlCLDhCQUFlLEdBQUcsSUFBSSxDQUFDO0FBQ3ZCLG1DQUFvQixHQUFHLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgU3RyaW5nVmFyaWFibGUgfSBmcm9tICcuLic7XG5pbXBvcnQgeyBJQXV0b21hdGlvbkNvbXBvbmVudCB9IGZyb20gJy4uL2NvbnN0cnVjdC9kb2N1bWVudC1jb21wb25lbnQnO1xuaW1wb3J0IHsgQXV0b21hdGlvbkRvY3VtZW50QnVpbGRlciB9IGZyb20gJy4uL2RvY3VtZW50L2RvY3VtZW50LWJ1aWxkZXInO1xuaW1wb3J0IHsgRGF0YVR5cGUgfSBmcm9tICcuLi9kb21haW4vZGF0YS10eXBlJztcbmltcG9ydCB7IE91dHB1dCB9IGZyb20gJy4uL2RvbWFpbi9vdXRwdXQnO1xuaW1wb3J0IHsgQWJvcnQsIE9uQ2FuY2VsLCBPbkZhaWx1cmUgfSBmcm9tICcuLi9pbnRlcmZhY2Uvb24tZmFpbHVyZSc7XG5pbXBvcnQgeyBTdGVwUmVmIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3N0ZXAtcmVmJztcbmltcG9ydCB7IFN0ZXAsIFN0ZXBQcm9wcyB9IGZyb20gJy4vc3RlcCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQXV0b21hdGlvblN0ZXBQcm9wcyBleHRlbmRzIFN0ZXBQcm9wcyB7XG5cbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gc3RvcCBkb2N1bWVudCBleGVjdXRpb24gYWZ0ZXIgdGhpcyBzdGVwLlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgcmVhZG9ubHkgaXNFbmQ/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIEZhbGxiYWNrIGFjdGlvbiB0byB0YWtlIGluIHRoZSBldmVudCB0aGF0IHRoaXMgc3RlcCBmYWlscy5cbiAgICogQGRlZmF1bHQgdW5kZWZpbmVkXG4gICAqL1xuICByZWFkb25seSBvbkZhaWx1cmU/OiBPbkZhaWx1cmU7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgRmFsbGJhY2sgYWN0aW9uIHRvIHRha2UgaW4gdGhlIGV2ZW50IHRoYXQgdGhpcyBzdGVwIGlzIGNhbmNlbGxlZC5cbiAgICogQGRlZmF1bHQgdW5kZWZpbmVkXG4gICAqL1xuICByZWFkb25seSBvbkNhbmNlbD86IE9uQ2FuY2VsO1xuXG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgbWF4IGF0dGVtcHRzIHRvIHJ1biB0aGlzIHN0ZXAgaWYgdGhlcmUgYXJlIGZhaWx1cmVzLlxuICAgKiBAZGVmYXVsdCBTdGVwLkRFRkFVTFRfTUFYX0FUVEVNUFRTXG4gICAqL1xuICByZWFkb25seSBtYXhBdHRlbXB0cz86IG51bWJlcjtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSB0aW1lb3V0IHNlY29uZHMgdG8gcnVuIHRoaXMgc3RlcC5cbiAgICogSW4gYSBzaW11bGF0aW9uIHJ1biwgdGhpcyB3aWxsIG9ubHkgYmUgZW5jb3JjZWQgYWZ0ZXItdGhlLWZhY3QgYnV0IGV4ZWN1dGlvbiB3aWxsIG5vdCBiZSBzdG9wcGVkIG1pZC1zdGVwLlxuICAgKiBAZGVmYXVsdCBTdGVwLkRFRkFVTFRfVElNRU9VVFxuICAgKi9cbiAgcmVhZG9ubHkgdGltZW91dFNlY29uZHM/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgZXhwbGljaXQgc3RlcCB0byBnbyB0byBhZnRlciB0aGlzIHN0ZXAgY29tcGxldGVzLlxuICAgKiBodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3lzdGVtcy1tYW5hZ2VyL2xhdGVzdC91c2VyZ3VpZGUvYXV0b21hdGlvbi1hY3Rpb25zLmh0bWwjbmV4dFByb3BcbiAgICogQGRlZmF1bHQgd2lsbCBpbXBsaWNpdGx5IGNob29zZSB0aGUgbmV4dCBzdGVwIGluIHRoZSBzZXF1ZW5jZSB0aGF0IHRoZSBzdGVwcyBhcmUgYWRkZWQgdG8gdGhlIGRvY3VtZW50LlxuICAgKi9cbiAgcmVhZG9ubHkgZXhwbGljaXROZXh0U3RlcD86IFN0ZXBSZWY7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgQWxsb3dzIHRvIGRlZmluZSBzdGVwIG91dHB1dHMuXG4gICAqIEBkZWZhdWx0IHVuZGVmaW5lZFxuICAgKi9cbiAgcmVhZG9ubHkgdXNlck91dHB1dHM/OiBPdXRwdXRbXTtcbn1cblxuLyoqXG4gKiBQYXJlbnQgY2xhc3MgZm9yIEF1dG9tYXRpb25TdGVwcy4gVGhlc2Ugc3RlcHMgYXJlIHVzaW5nIGluIGFuIEF1dG9tYXRpb25Eb2N1bWVudC5cbiAqIFlvdSBjYW4gaW5zdGFudGlhdGUgc3RlcHMgdXNpbmcgdGhlIEF1dG9tYXRpb25CdWlsZGVyIGZvciBjb252ZW5pZW5jZS5cbiAqIFlvdSBjYW4gdXNlIHRoZXNlIHN0ZXBzIHRvIHNpbXVsYXRlIHRoZWlyIGV4ZWN1dGlvbiAobWltaWNzIHRoZSBTU00gcnVuKSBBTkQgdG8gYnVpbGQgdGhlaXIgeWFtbC9qc29uIGRlY2xhcmF0aW9uLlxuICogQ29udHJvbCBmbG93IG9mIHRoZSBzdWJzZXF1ZW50IHN0ZXAgaXMgZGV0ZXJtaW5lZCBieSB0aGUgY3VycmVudGx5IGV4ZWN1dGluZyBzdGVwLlxuICogVGhlIGZsb3cgb2YgdGhlIGV4ZWN1dGlvbiB0aGVyZWZvcmUgZm9sbG93cyBhIGNoYWluLW9mLXJlc3BvbnNpYmlsaXR5IHBhdHRlcm4uXG4gKiBUaGUgaW5wdXRzIHJlY2VpdmVkIGludG8gYSBzdGVwIEFORCB0aGUgb3V0cHV0cyBvZiBwcmV2aW91cyBzdGVwcyBhcmUgbWVyZ2VkIHRvIGZvcm0gaW5wdXRzIG9mIHN1YnNlcXVlbnQgc3RlcHMuXG4gKi9cbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBBdXRvbWF0aW9uU3RlcCBleHRlbmRzIFN0ZXAgaW1wbGVtZW50cyBJQXV0b21hdGlvbkNvbXBvbmVudCB7XG4gIHN0YXRpYyByZWFkb25seSBERUZBVUxUX1RJTUVPVVQgPSAzNjAwO1xuICBzdGF0aWMgcmVhZG9ubHkgREVGQVVMVF9NQVhfQVRURU1QVFMgPSAxO1xuICByZWFkb25seSBtYXhBdHRlbXB0czogbnVtYmVyO1xuICByZWFkb25seSB0aW1lb3V0U2Vjb25kczogbnVtYmVyO1xuICByZWFkb25seSBpc0VuZDogYm9vbGVhbjtcbiAgcmVhZG9ubHkgb25GYWlsdXJlOiBPbkZhaWx1cmU7XG4gIHJlYWRvbmx5IG9uQ2FuY2VsOiBPbkNhbmNlbDtcbiAgcmVhZG9ubHkgZXhwbGljaXROZXh0U3RlcD86IFN0ZXBSZWY7XG4gIHJlYWRvbmx5IHVzZXJPdXRwdXRzPzogT3V0cHV0W107XG5cbiAgbmV4dFN0ZXA/OiBBdXRvbWF0aW9uU3RlcDtcbiAgYWxsU3RlcHNJbkV4ZWN1dGlvbj86IEF1dG9tYXRpb25TdGVwW107XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IEF1dG9tYXRpb25TdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLm1heEF0dGVtcHRzID0gcHJvcHMubWF4QXR0ZW1wdHMgPz8gQXV0b21hdGlvblN0ZXAuREVGQVVMVF9NQVhfQVRURU1QVFM7XG4gICAgdGhpcy50aW1lb3V0U2Vjb25kcyA9IHByb3BzLnRpbWVvdXRTZWNvbmRzID8/IEF1dG9tYXRpb25TdGVwLkRFRkFVTFRfVElNRU9VVDtcbiAgICB0aGlzLmlzRW5kID0gcHJvcHMuaXNFbmQgPz8gZmFsc2U7XG4gICAgdGhpcy5vbkZhaWx1cmUgPSBwcm9wcy5vbkZhaWx1cmUgPz8gbmV3IEFib3J0KCk7XG4gICAgdGhpcy5vbkNhbmNlbCA9IHByb3BzLm9uQ2FuY2VsID8/IG5ldyBBYm9ydCgpO1xuICAgIHRoaXMuZXhwbGljaXROZXh0U3RlcCA9IHByb3BzLmV4cGxpY2l0TmV4dFN0ZXA7XG4gICAgdGhpcy51c2VyT3V0cHV0cyA9IHByb3BzLnVzZXJPdXRwdXRzO1xuICB9XG5cbiAgcHVibGljIGFkZFRvRG9jdW1lbnQoZG9jOiBBdXRvbWF0aW9uRG9jdW1lbnRCdWlsZGVyKTogdm9pZCB7XG4gICAgZG9jLmFkZFN0ZXAodGhpcyk7XG4gIH1cblxuICBwcm90ZWN0ZWQgcHJlcGFyZVNzbUVudHJ5KGlucHV0czogeyBbbmFtZTogc3RyaW5nXTogYW55IH0pOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgLy8gTWFwcyBtYWludGFpbiBpbnNlcnRpb24gb3JkZXJcbiAgICBjb25zdCBzc21EZWY6IE1hcDxzdHJpbmcsIGFueT4gPSBuZXcgTWFwKCk7XG4gICAgaWYgKHRoaXMuZGVzY3JpcHRpb24pIHtcbiAgICAgIHNzbURlZi5zZXQoJ2Rlc2NyaXB0aW9uJywgdGhpcy5kZXNjcmlwdGlvbik7XG4gICAgfVxuICAgIHNzbURlZi5zZXQoJ25hbWUnLCB0aGlzLm5hbWUpO1xuICAgIHNzbURlZi5zZXQoJ2FjdGlvbicsIHRoaXMuYWN0aW9uKTtcbiAgICBzc21EZWYuc2V0KCdpbnB1dHMnLCBpbnB1dHMpO1xuXG4gICAgaWYgKHRoaXMubGlzdFVzZXJPdXRwdXRzKCkubGVuZ3RoID4gMCkge1xuICAgICAgY29uc3QgZm9ybWF0dGVkT3V0cHV0cyA9IHRoaXMubGlzdFVzZXJPdXRwdXRzKCkubWFwKHRoaXMuZm9ybWF0T3V0cHV0KTtcbiAgICAgIHNzbURlZi5zZXQoJ291dHB1dHMnLCBmb3JtYXR0ZWRPdXRwdXRzKTtcbiAgICB9XG4gICAgaWYgKHRoaXMuaXNFbmQpIHtcbiAgICAgIHNzbURlZi5zZXQoJ2lzRW5kJywgdHJ1ZSk7XG4gICAgfVxuICAgIGlmICh0aGlzLm1heEF0dGVtcHRzICE9IEF1dG9tYXRpb25TdGVwLkRFRkFVTFRfTUFYX0FUVEVNUFRTKSB7XG4gICAgICBzc21EZWYuc2V0KCdtYXhBdHRlbXB0cycsIHRoaXMubWF4QXR0ZW1wdHMpO1xuICAgIH1cbiAgICBpZiAodGhpcy50aW1lb3V0U2Vjb25kcyAhPSBBdXRvbWF0aW9uU3RlcC5ERUZBVUxUX1RJTUVPVVQpIHtcbiAgICAgIHNzbURlZi5zZXQoJ3RpbWVvdXRTZWNvbmRzJywgdGhpcy50aW1lb3V0U2Vjb25kcyk7XG4gICAgfVxuICAgIGlmICghKHRoaXMub25DYW5jZWwgaW5zdGFuY2VvZiBBYm9ydCkpIHtcbiAgICAgIHNzbURlZi5zZXQoJ29uQ2FuY2VsJywgdGhpcy5vbkNhbmNlbC50b1NzbVZhbHVlKCkpO1xuICAgIH1cbiAgICBpZiAoISh0aGlzLm9uRmFpbHVyZSBpbnN0YW5jZW9mIEFib3J0KSkge1xuICAgICAgc3NtRGVmLnNldCgnb25GYWlsdXJlJywgdGhpcy5vbkZhaWx1cmUudG9Tc21WYWx1ZSgpKTtcbiAgICB9XG4gICAgaWYgKHRoaXMuZXhwbGljaXROZXh0U3RlcCAhPSB1bmRlZmluZWQpIHtcbiAgICAgIHNzbURlZi5zZXQoJ25leHRTdGVwJywgdGhpcy5leHBsaWNpdE5leHRTdGVwLnN0ZXBOYW1lKTtcbiAgICB9XG4gICAgY29uc3Qgc3NtRGljdDogeyBbbmFtZTogc3RyaW5nXTogYW55IH0gPSB7fTtcbiAgICBzc21EZWYuZm9yRWFjaCgodmFsdWUsIGtleSkgPT4ge1xuICAgICAgc3NtRGljdFtrZXldID0gdmFsdWU7XG4gICAgfSk7XG4gICAgcmV0dXJuIHNzbURpY3Q7XG4gIH1cblxuICAvKipcbiAgICogRm9ybWF0cyB0aGUgcHJvdmlkZWQgb3V0cHV0IGludG8gYW4gb2JqZWN0IHRoYXQgY2FuIGJlIHVzZWQgdG8gZ2VuZXJhdGUgdGhlIFNTTSB5YW1sL2pzb24gcmVwcmVzZW50YXRpb24uXG4gICAqL1xuICBwcml2YXRlIGZvcm1hdE91dHB1dChvdXRwdXQ6IE91dHB1dCk6IHtbbmFtZTogc3RyaW5nXTogc3RyaW5nfSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIE5hbWU6IG91dHB1dC5uYW1lLFxuICAgICAgU2VsZWN0b3I6IG91dHB1dC5zZWxlY3RvcixcbiAgICAgIFR5cGU6IG5ldyBEYXRhVHlwZShvdXRwdXQub3V0cHV0VHlwZSkudG9Tc21TdHJpbmcoKSxcbiAgICB9O1xuICB9XG5cbiAgcHVibGljIHZhcmlhYmxlcygpOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgcmV0dXJuIE9iamVjdC5hc3NpZ24oe30sIC4uLnRoaXMubGlzdE91dHB1dHMoKVxuICAgICAgLm1hcChvdXQgPT4gKHsgW291dC5uYW1lXTogbmV3IFN0cmluZ1ZhcmlhYmxlKGAke3RoaXMubmFtZX0uJHtvdXQubmFtZX1gKSB9KSkpO1xuICB9XG5cbiAgLyoqXG4gICAqIExpc3RzIHRoZSBvdXRwdXRzIGRlZmluZWQgYnkgdGhlIHVzZXIgZm9yIHRoaXMgc3RlcC5cbiAgICovXG4gIHB1YmxpYyBsaXN0VXNlck91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIGlmICh0aGlzLnVzZXJPdXRwdXRzKSByZXR1cm4gdGhpcy51c2VyT3V0cHV0cztcbiAgICByZXR1cm4gW107XG4gIH1cblxuICBwdWJsaWMgbGlzdE91dHB1dHMoKTogT3V0cHV0W10ge1xuICAgIHJldHVybiB0aGlzLmxpc3RVc2VyT3V0cHV0cygpO1xuICB9XG59XG4iXX0=
@@ -44,5 +44,5 @@ class ApplicationsStep extends command_step_1.CommandStep {
44
44
  }
45
45
  exports.ApplicationsStep = ApplicationsStep;
46
46
  _a = JSII_RTTI_SYMBOL_1;
47
- ApplicationsStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ApplicationsStep", version: "0.0.59" };
47
+ ApplicationsStep[_a] = { fqn: "@cdklabs/cdk-ssm-documents.ApplicationsStep", version: "0.0.61" };
48
48
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb25zLXN0ZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGFyZW50LXN0ZXBzL2NvbW1hbmQvYXBwbGljYXRpb25zLXN0ZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFFQSxvREFBaUQ7QUFFakQsa0RBQWdFO0FBMEJoRTs7O0dBR0c7QUFDSCxNQUFhLGdCQUFpQixTQUFRLDBCQUFXO0lBVS9DLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBNEI7UUFDcEUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFKakIsY0FBUyxHQUFHLENBQUMsbUJBQVEsQ0FBQyxPQUFPLEVBQUUsbUJBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMvQyxXQUFNLEdBQUcsa0JBQWtCLENBQUM7UUFJbkMsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDO1FBQ2xDLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDLFVBQVUsQ0FBQztRQUNuQyxJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUM7UUFDM0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDO0lBQ3JDLENBQUM7SUFFTSxVQUFVO1FBQ2YsTUFBTSxNQUFNLEdBQUc7WUFDYixJQUFJLENBQUMsYUFBYTtZQUNsQixJQUFJLENBQUMsVUFBVTtZQUNmLElBQUksQ0FBQyxNQUFNO1lBQ1gsSUFBSSxDQUFDLFVBQVU7U0FDaEIsQ0FBQztRQUNGLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRU0sVUFBVTtRQUNmLE1BQU0sTUFBTSxHQUE0QjtZQUN0QyxNQUFNLEVBQUUsSUFBSSxDQUFDLGFBQWE7WUFDMUIsTUFBTSxFQUFFLElBQUksQ0FBQyxNQUFNO1NBQ3BCLENBQUM7UUFDRixJQUFJLElBQUksQ0FBQyxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7WUFDakMsTUFBTSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDO1FBQ3RDLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxVQUFVLElBQUksU0FBUyxFQUFFLENBQUM7WUFDakMsTUFBTSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDO1FBQ3RDLENBQUM7UUFDRCxPQUFPLEtBQUssQ0FBQyxlQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDdkMsQ0FBQzs7QUF4Q0gsNENBMENDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBJSW5zdGFsbFVuaW5zdGFsbFJlcGFpclZhcmlhYmxlIH0gZnJvbSAnLi4vLi4vZG9tYWluL2VudW0vaW5zdGFsbC11bmluc3RhbGwtcmVwYWlyJztcbmltcG9ydCB7IFBsYXRmb3JtIH0gZnJvbSAnLi4vLi4vZG9tYWluL3BsYXRmb3JtJztcbmltcG9ydCB7IElTdHJpbmdWYXJpYWJsZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZS92YXJpYWJsZXMvc3RyaW5nLXZhcmlhYmxlJztcbmltcG9ydCB7IENvbW1hbmRTdGVwLCBDb21tYW5kU3RlcFByb3BzIH0gZnJvbSAnLi4vY29tbWFuZC1zdGVwJztcblxuZXhwb3J0IGludGVyZmFjZSBBcHBsaWNhdGlvbnNTdGVwUHJvcHMgZXh0ZW5kcyBDb21tYW5kU3RlcFByb3BzIHtcblxuICAvKlxuICAqIFRoZSBhY3Rpb24gdG8gdGFrZS5cbiAgKi9cbiAgcmVhZG9ubHkgYWN0aW9uOiBJSW5zdGFsbFVuaW5zdGFsbFJlcGFpclZhcmlhYmxlO1xuXG4gIC8qXG4gICogVGhlIHBhcmFtZXRlcnMgZm9yIHRoZSBpbnN0YWxsZXIuXG4gICovXG4gIHJlYWRvbmx5IHBhcmFtZXRlcnM/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLypcbiAgKiBUaGUgVVJMIG9mIHRoZSAubXNpIGZpbGUgZm9yIHRoZSBhcHBsaWNhdGlvbi5cbiAgKi9cbiAgcmVhZG9ubHkgc291cmNlOiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgLypcbiAgKiBUaGUgU0hBMjU2IGhhc2ggb2YgdGhlIC5tc2kgZmlsZS5cbiAgKi9cbiAgcmVhZG9ubHkgc291cmNlSGFzaD86IElTdHJpbmdWYXJpYWJsZTtcblxufVxuXG4vKipcbiAqIENvbW1hbmRTdGVwIGltcGxlbWVuYXRpb24gZm9yIGF3czphcHBsaWNhdGlvbnNcbiAqIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9zeXN0ZW1zLW1hbmFnZXIvbGF0ZXN0L3VzZXJndWlkZS9zc20tcGx1Z2lucy5odG1sI2F3cy1hcHBsaWNhdGlvbnNcbiAqL1xuZXhwb3J0IGNsYXNzIEFwcGxpY2F0aW9uc1N0ZXAgZXh0ZW5kcyBDb21tYW5kU3RlcCB7XG5cbiAgcmVhZG9ubHkgaW5zdGFsbEFjdGlvbjogSUluc3RhbGxVbmluc3RhbGxSZXBhaXJWYXJpYWJsZTtcbiAgcmVhZG9ubHkgcGFyYW1ldGVycz86IElTdHJpbmdWYXJpYWJsZTtcbiAgcmVhZG9ubHkgc291cmNlOiBJU3RyaW5nVmFyaWFibGU7XG4gIHJlYWRvbmx5IHNvdXJjZUhhc2g/OiBJU3RyaW5nVmFyaWFibGU7XG5cbiAgcmVhZG9ubHkgcGxhdGZvcm1zID0gW1BsYXRmb3JtLldJTkRPV1MsIFBsYXRmb3JtLkxJTlVYXTtcbiAgcmVhZG9ubHkgYWN0aW9uID0gJ2F3czphcHBsaWNhdGlvbnMnO1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBBcHBsaWNhdGlvbnNTdGVwUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHByb3BzKTtcbiAgICB0aGlzLmluc3RhbGxBY3Rpb24gPSBwcm9wcy5hY3Rpb247XG4gICAgdGhpcy5wYXJhbWV0ZXJzID0gcHJvcHMucGFyYW1ldGVycztcbiAgICB0aGlzLnNvdXJjZSA9IHByb3BzLnNvdXJjZTtcbiAgICB0aGlzLnNvdXJjZUhhc2ggPSBwcm9wcy5zb3VyY2VIYXNoO1xuICB9XG5cbiAgcHVibGljIGxpc3RJbnB1dHMoKTogc3RyaW5nW10ge1xuICAgIGNvbnN0IGlucHV0cyA9IFtcbiAgICAgIHRoaXMuaW5zdGFsbEFjdGlvbixcbiAgICAgIHRoaXMucGFyYW1ldGVycyxcbiAgICAgIHRoaXMuc291cmNlLFxuICAgICAgdGhpcy5zb3VyY2VIYXNoLFxuICAgIF07XG4gICAgcmV0dXJuIGlucHV0cy5mbGF0TWFwKGkgPT4gaT8ucmVxdWlyZWRJbnB1dHMoKSA/PyBbXSk7XG4gIH1cblxuICBwdWJsaWMgdG9Tc21FbnRyeSgpOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSB7XG4gICAgY29uc3QgaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSA9IHtcbiAgICAgIGFjdGlvbjogdGhpcy5pbnN0YWxsQWN0aW9uLFxuICAgICAgc291cmNlOiB0aGlzLnNvdXJjZSxcbiAgICB9O1xuICAgIGlmICh0aGlzLnBhcmFtZXRlcnMgIT0gdW5kZWZpbmVkKSB7XG4gICAgICBpbnB1dHMucGFyYW1ldGVycyA9IHRoaXMucGFyYW1ldGVycztcbiAgICB9XG4gICAgaWYgKHRoaXMuc291cmNlSGFzaCAhPSB1bmRlZmluZWQpIHtcbiAgICAgIGlucHV0cy5zb3VyY2VIYXNoID0gdGhpcy5zb3VyY2VIYXNoO1xuICAgIH1cbiAgICByZXR1cm4gc3VwZXIucHJlcGFyZVNzbUVudHJ5KGlucHV0cyk7XG4gIH1cblxufVxuIl19