@cdklabs/cdk-ssm-documents 0.0.62 → 0.0.64

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 (946) hide show
  1. package/.jsii +13 -13
  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/{middleware-ssec → checksums}/LICENSE +1 -1
  117. package/node_modules/@aws-sdk/checksums/README.md +6 -0
  118. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +547 -0
  119. package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/selectChecksumAlgorithmFunction.js +2 -1
  120. package/node_modules/@aws-sdk/checksums/dist-es/index.js +8 -0
  121. package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +11 -0
  122. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +33 -0
  123. package/node_modules/@aws-sdk/{middleware-ssec → checksums}/package.json +33 -17
  124. package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +1 -1
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +1 -1
  129. package/node_modules/@aws-sdk/client-cloudformation/package.json +9 -9
  130. package/node_modules/@aws-sdk/client-cloudwatch/package.json +11 -11
  131. package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
  132. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +41 -0
  133. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +171 -68
  134. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
  135. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +16 -0
  136. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +16 -0
  137. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
  138. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +11 -0
  139. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +110 -8
  140. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +15 -0
  141. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
  142. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +1 -1
  145. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +1 -1
  146. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +1 -1
  147. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +1 -1
  148. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +1 -1
  149. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -2
  150. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +1 -1
  151. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
  152. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -1
  153. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +1 -1
  154. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +5 -5
  155. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +117 -0
  156. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -3
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -1
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +1 -1
  160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +1 -1
  161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +1 -1
  162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +2 -1
  163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
  164. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +1 -1
  165. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +1 -1
  166. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +1 -1
  167. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +1 -1
  168. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +1 -1
  169. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +1 -1
  170. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +1 -1
  171. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +1 -1
  172. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +1 -1
  173. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +1 -1
  174. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +1 -1
  175. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +1 -1
  176. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +1 -1
  177. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +1 -1
  178. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +1 -1
  179. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +1 -1
  181. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +1 -1
  182. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +1 -1
  183. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
  184. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +1 -1
  185. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
  186. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +1 -1
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +1 -1
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +1 -1
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +1 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +1 -1
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +1 -1
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +1 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +1 -1
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +1 -1
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +1 -1
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +1 -1
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +1 -1
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +1 -1
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -1
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +3 -2
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -1
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +1 -1
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +1 -1
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +1 -1
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +1 -1
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +1 -1
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +1 -1
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -1
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +1 -1
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +1 -1
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +1 -1
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +1 -1
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +1 -1
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +1 -1
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +1 -1
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +1 -1
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -1
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +1 -1
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -1
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +1 -1
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +1 -1
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +1 -1
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +1 -1
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +1 -1
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +1 -1
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -1
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +1 -1
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +1 -2
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +119 -0
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +2 -2
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +2 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +2 -1
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +1 -2
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +1 -1
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +2 -1
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +1 -2
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +1 -1
  261. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  262. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +1 -1
  263. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
  264. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
  265. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +2 -1
  266. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
  267. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
  268. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
  269. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +4 -4
  270. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +1 -1
  271. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -3
  272. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +1 -1
  273. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
  275. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
  276. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +1 -1
  277. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +1 -1
  278. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
  279. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -1
  280. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
  281. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +27 -0
  282. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +158 -184
  283. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +194 -230
  284. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +228 -94
  285. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +141 -274
  286. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +277 -375
  287. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +375 -226
  288. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +235 -208
  289. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +209 -7
  290. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
  291. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +47 -0
  292. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
  293. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +53 -0
  294. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +2 -4
  295. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +2 -4
  296. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
  297. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +1 -1
  298. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +1 -1
  299. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +4 -2
  300. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +53 -0
  301. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +2 -4
  302. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
  303. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +2 -4
  304. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
  305. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +4 -2
  306. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +2 -4
  307. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
  308. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +4 -2
  309. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +2 -4
  310. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
  311. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
  312. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
  313. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
  314. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +15 -0
  315. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +36 -45
  316. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +47 -48
  317. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +50 -22
  318. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +36 -54
  319. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +52 -52
  320. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +50 -44
  321. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +45 -47
  322. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +49 -3
  323. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  324. package/node_modules/@aws-sdk/client-ec2/package.json +13 -11
  325. package/node_modules/@aws-sdk/client-iam/package.json +10 -10
  326. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +5 -0
  327. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +20 -13
  328. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +4 -0
  329. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +16 -9
  330. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +12 -0
  331. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
  332. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -0
  333. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  334. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +6 -0
  335. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +12 -0
  336. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +18 -0
  337. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +32 -1
  338. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +1 -0
  339. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +6 -0
  340. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +8 -0
  341. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  342. package/node_modules/@aws-sdk/client-lambda/package.json +10 -10
  343. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +85 -88
  344. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +3 -4
  345. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +2 -2
  346. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -2
  347. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +1 -1
  348. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +1 -2
  349. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +1 -2
  350. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +1 -2
  351. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +1 -2
  352. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +1 -1
  353. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +1 -1
  354. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +1 -1
  355. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +1 -1
  356. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +1 -1
  357. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +1 -1
  358. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +1 -1
  359. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +1 -1
  360. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +1 -1
  361. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +1 -1
  362. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +1 -1
  363. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +1 -1
  364. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +1 -1
  365. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +1 -1
  366. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +1 -1
  367. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +1 -1
  368. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +1 -1
  369. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +1 -1
  370. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +1 -1
  371. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +1 -1
  372. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +1 -1
  373. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +1 -1
  374. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +1 -1
  375. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +1 -1
  376. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +1 -1
  377. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +1 -1
  378. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +1 -1
  379. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +1 -2
  380. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +1 -2
  381. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +1 -1
  382. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +1 -1
  383. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +1 -1
  384. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +1 -1
  385. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +1 -1
  386. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +1 -1
  387. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +1 -2
  388. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +1 -1
  389. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +1 -1
  390. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +1 -1
  391. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -1
  392. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +1 -1
  393. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +1 -1
  394. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +1 -1
  395. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +1 -1
  396. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +1 -1
  397. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +1 -1
  398. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +1 -2
  399. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +1 -1
  400. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +1 -1
  401. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +1 -2
  402. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +1 -1
  403. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +1 -1
  404. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +1 -1
  405. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +1 -1
  406. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +1 -1
  407. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +1 -1
  408. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +1 -1
  409. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +1 -1
  410. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +1 -2
  411. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +1 -2
  412. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +1 -2
  413. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +1 -1
  414. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
  415. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +4 -4
  416. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +2 -2
  417. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
  418. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +1 -1
  419. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +1 -1
  420. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +6 -6
  421. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  422. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +6 -6
  423. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  424. package/node_modules/@aws-sdk/client-s3/package.json +14 -18
  425. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +1 -1
  426. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +1 -1
  427. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +1 -1
  428. package/node_modules/@aws-sdk/client-sns/dist-types/models/errors.d.ts +1 -1
  429. package/node_modules/@aws-sdk/client-sns/package.json +9 -9
  430. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1 -1
  431. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +1 -1
  432. package/node_modules/@aws-sdk/client-sqs/package.json +11 -11
  433. package/node_modules/@aws-sdk/client-ssm/package.json +9 -9
  434. package/node_modules/@aws-sdk/core/dist-cjs/index.js +12 -6
  435. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +12 -6
  436. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -0
  437. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +11 -6
  438. package/node_modules/@aws-sdk/core/package.json +7 -7
  439. package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -6
  440. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +12 -6
  441. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +12 -6
  442. package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -8
  443. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  444. package/node_modules/@aws-sdk/credential-provider-login/package.json +7 -7
  445. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +12 -1
  446. package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
  447. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  448. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  449. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  450. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  451. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +21 -447
  452. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +1 -6
  453. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +2 -6
  454. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -35
  455. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +7 -7
  456. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +34 -0
  457. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +57 -53
  458. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +1028 -0
  459. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1042 -0
  460. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +215 -0
  461. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +1 -0
  462. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
  463. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
  464. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
  465. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3Configuration.js → submodules/s3/middleware-s3-configuration/s3Configuration.js} +1 -1
  466. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{throw-200-exceptions.js → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js} +1 -1
  467. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{validate-bucket-name.js → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js} +1 -1
  468. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
  469. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
  470. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
  471. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
  472. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
  473. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
  474. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
  475. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
  476. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
  477. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +2 -0
  478. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
  479. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
  480. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
  481. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
  482. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
  483. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
  484. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
  485. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
  486. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
  487. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
  488. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
  489. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
  490. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
  491. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
  492. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +39 -0
  493. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
  494. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
  495. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
  496. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
  497. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
  498. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
  499. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
  500. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
  501. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
  502. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
  503. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
  504. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +12 -0
  505. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +13 -0
  506. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +22 -0
  507. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +56 -11
  508. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -5
  509. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +99 -106
  510. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +62 -120
  511. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +55 -86
  512. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +73 -104
  513. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +102 -185
  514. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +4 -5
  515. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +21 -57
  516. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +1 -2
  517. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -4
  518. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
  519. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +4 -5
  520. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +20 -52
  521. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +1 -2
  522. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -4
  523. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
  524. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +4 -5
  525. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +17 -45
  526. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +1 -2
  527. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -4
  528. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
  529. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +4 -5
  530. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +17 -45
  531. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +1 -2
  532. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -4
  533. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
  534. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +4 -5
  535. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
  536. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +34 -96
  537. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +1 -2
  538. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +3 -6
  539. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
  540. package/node_modules/@aws-sdk/nested-clients/package.json +9 -9
  541. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +5 -6
  542. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  543. package/node_modules/@aws-sdk/types/package.json +3 -3
  544. package/node_modules/@aws-sdk/util-locate-window/package.json +2 -2
  545. package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
  546. package/node_modules/@nodable/entities/package.json +1 -1
  547. package/node_modules/@nodable/entities/src/EntityDecoder.js +1 -1
  548. package/node_modules/@nodable/entities/src/entities.js +0 -18
  549. package/node_modules/@smithy/core/dist-cjs/index.js +3 -4
  550. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +3 -11
  551. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +2 -2
  552. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +2 -2
  553. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +2 -2
  554. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +9 -40
  555. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +9 -40
  556. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +12 -142
  557. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +39 -22
  558. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +39 -22
  559. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +7 -9
  560. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +2 -2
  561. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +2 -2
  562. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +2 -2
  563. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +184 -0
  564. package/node_modules/@smithy/core/dist-es/index.js +6 -6
  565. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +2 -2
  566. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +1 -1
  567. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +2 -2
  568. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +2 -2
  569. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -1
  570. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +1 -1
  571. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +1 -1
  572. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -1
  573. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +1 -2
  574. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
  575. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +5 -5
  576. package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +1 -1
  577. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
  578. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +19 -6
  579. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +4 -5
  580. package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +1 -1
  581. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +4 -5
  582. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +3 -0
  583. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +9 -5
  584. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
  585. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
  586. package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +1 -1
  587. package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
  588. package/node_modules/@smithy/core/dist-es/submodules/{protocols/url-parser → transport}/parseUrl.js +1 -1
  589. package/node_modules/@smithy/core/dist-es/submodules/{endpoints → transport}/toEndpointV1.js +1 -1
  590. package/node_modules/@smithy/core/dist-types/index.d.ts +10 -6
  591. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +2 -2
  592. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +2 -2
  593. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +2 -2
  594. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +2 -2
  595. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +1 -1
  596. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +1 -1
  597. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +5 -5
  598. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +1 -2
  599. package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +1 -1
  600. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +4 -1
  601. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +1 -2
  602. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +3 -0
  603. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +1 -1
  604. package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +9 -0
  605. package/node_modules/@smithy/core/package.json +20 -11
  606. package/node_modules/@smithy/core/transport.d.ts +5 -0
  607. package/node_modules/@smithy/core/transport.js +5 -0
  608. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +14 -13
  609. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +14 -13
  610. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -2
  611. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
  612. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
  613. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
  614. package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
  615. package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
  616. package/node_modules/@smithy/middleware-compression/package.json +3 -3
  617. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +6 -4
  618. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +7 -6
  619. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +2 -1
  620. package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
  621. package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
  622. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +2 -2
  623. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +1 -1
  624. package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
  625. package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
  626. package/node_modules/@smithy/node-http-handler/package.json +4 -4
  627. package/node_modules/@smithy/signature-v4/package.json +3 -3
  628. package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
  629. package/node_modules/@smithy/types/package.json +1 -1
  630. package/node_modules/js-yaml/README.md +4 -20
  631. package/node_modules/js-yaml/bin/js-yaml.js +53 -62
  632. package/node_modules/js-yaml/dist/js-yaml.js +2404 -3880
  633. package/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
  634. package/node_modules/js-yaml/dist/js-yaml.min.js +33 -2
  635. package/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
  636. package/node_modules/js-yaml/dist/js-yaml.mjs +2381 -3855
  637. package/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
  638. package/node_modules/js-yaml/index.js +32 -35
  639. package/node_modules/js-yaml/lib/common.js +28 -37
  640. package/node_modules/js-yaml/lib/dumper.js +450 -478
  641. package/node_modules/js-yaml/lib/exception.js +23 -27
  642. package/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
  643. package/node_modules/js-yaml/lib/loader.js +927 -866
  644. package/node_modules/js-yaml/lib/schema/core.js +2 -4
  645. package/node_modules/js-yaml/lib/schema/default.js +2 -4
  646. package/node_modules/js-yaml/lib/schema/failsafe.js +3 -6
  647. package/node_modules/js-yaml/lib/schema/json.js +2 -4
  648. package/node_modules/js-yaml/lib/schema.js +56 -68
  649. package/node_modules/js-yaml/lib/snippet.js +47 -52
  650. package/node_modules/js-yaml/lib/type/binary.js +61 -64
  651. package/node_modules/js-yaml/lib/type/bool.js +14 -14
  652. package/node_modules/js-yaml/lib/type/float.js +47 -45
  653. package/node_modules/js-yaml/lib/type/int.js +65 -79
  654. package/node_modules/js-yaml/lib/type/map.js +4 -4
  655. package/node_modules/js-yaml/lib/type/merge.js +5 -5
  656. package/node_modules/js-yaml/lib/type/null.js +16 -16
  657. package/node_modules/js-yaml/lib/type/omap.js +22 -21
  658. package/node_modules/js-yaml/lib/type/pairs.js +24 -27
  659. package/node_modules/js-yaml/lib/type/seq.js +4 -4
  660. package/node_modules/js-yaml/lib/type/set.js +12 -12
  661. package/node_modules/js-yaml/lib/type/str.js +4 -4
  662. package/node_modules/js-yaml/lib/type/timestamp.js +53 -53
  663. package/node_modules/js-yaml/lib/type.js +30 -30
  664. package/node_modules/js-yaml/package.json +32 -21
  665. package/package.json +11 -11
  666. package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
  667. package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
  668. package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
  669. package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
  670. package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
  671. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
  672. package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -49
  673. package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
  674. package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
  675. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
  676. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
  677. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
  678. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
  679. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -58
  680. package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
  681. package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
  682. package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
  683. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
  684. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
  685. package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
  686. package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
  687. package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
  688. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
  689. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
  690. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
  691. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
  692. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
  693. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
  694. package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
  695. package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
  696. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
  697. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
  698. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
  699. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
  700. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
  701. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
  702. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
  703. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
  704. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
  705. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
  706. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
  707. package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
  708. package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
  709. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -18
  710. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
  711. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
  712. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
  713. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
  714. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
  715. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
  716. package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
  717. package/node_modules/@smithy/core/dist-es/submodules/client/util-middleware/getSmithyContext.js +0 -2
  718. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/TestVectors.fixture.js +0 -146
  719. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/vectorTypes.fixture.js +0 -1
  720. package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -6
  721. package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +0 -5
  722. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/TestVectors.fixture.d.ts +0 -2
  723. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/vectorTypes.fixture.d.ts +0 -12
  724. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
  725. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
  726. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
  727. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  728. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
  729. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
  730. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  731. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
  732. package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
  733. package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
  734. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
  735. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
  736. /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/Crc64Nvme.js +0 -0
  737. /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
  738. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
  739. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
  740. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/configuration.js +0 -0
  741. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/constants.js +0 -0
  742. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
  743. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
  744. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
  745. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksum.js +0 -0
  746. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
  747. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
  748. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumLocationName.js +0 -0
  749. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
  750. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
  751. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
  752. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeader.js +0 -0
  753. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
  754. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
  755. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isStreaming.js +0 -0
  756. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
  757. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringHasher.js +0 -0
  758. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringUnionSelector.js +0 -0
  759. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/types.js +0 -0
  760. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/validateChecksumFromResponse.js +0 -0
  761. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/Crc64Nvme.d.ts +0 -0
  762. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
  763. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  764. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  765. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/configuration.d.ts +0 -0
  766. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/constants.d.ts +0 -0
  767. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  768. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  769. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  770. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksum.d.ts +0 -0
  771. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  772. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  773. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  774. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
  775. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
  776. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  777. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeader.d.ts +0 -0
  778. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  779. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  780. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isStreaming.d.ts +0 -0
  781. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  782. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  783. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringHasher.d.ts +0 -0
  784. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  785. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/types.d.ts +0 -0
  786. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  787. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/Crc64Nvme.d.ts +0 -0
  788. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
  789. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  790. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  791. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/configuration.d.ts +0 -0
  792. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/constants.d.ts +0 -0
  793. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  794. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  795. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  796. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksum.d.ts +0 -0
  797. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  798. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  799. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  800. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
  801. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
  802. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  803. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeader.d.ts +0 -0
  804. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  805. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  806. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isStreaming.d.ts +0 -0
  807. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  808. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  809. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringHasher.d.ts +0 -0
  810. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  811. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/types.d.ts +0 -0
  812. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  813. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.js +0 -0
  814. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeUseArnRegionConfigOptions.js +0 -0
  815. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.js +0 -0
  816. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
  817. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
  818. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
  819. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{check-content-length-header.js → submodules/s3/middleware-check-content-length-header/check-content-length-header.js} +0 -0
  820. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js} +0 -0
  821. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
  822. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint/middleware-location-constraint.js} +0 -0
  823. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{bucket-endpoint-middleware.js → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.js} +0 -0
  824. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-endpoint-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.js} +0 -0
  825. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-middleware.js} +0 -0
  826. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-expires-middleware.js → submodules/s3/middleware-s3-expires/s3-expires-middleware.js} +0 -0
  827. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
  828. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
  829. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
  830. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.js +0 -0
  831. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/constants.js +0 -0
  832. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.js +0 -0
  833. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.js +0 -0
  834. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
  835. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
  836. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
  837. /package/node_modules/@aws-sdk/{middleware-ssec/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-ssec/middleware-ssec.js} +0 -0
  838. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
  839. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.browser.js → submodules/s3/to-stream/toStream.browser.js} +0 -0
  840. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.js → submodules/s3/to-stream/toStream.js} +0 -0
  841. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
  842. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
  843. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
  844. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
  845. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
  846. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
  847. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
  848. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
  849. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
  850. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
  851. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
  852. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
  853. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
  854. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
  855. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
  856. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
  857. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
  858. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
  859. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
  860. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
  861. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
  862. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
  863. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
  864. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
  865. /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
  866. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
  867. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  868. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
  869. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
  870. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
  871. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
  872. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
  873. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
  874. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
  875. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
  876. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
  877. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
  878. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
  879. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
  880. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
  881. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
  882. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
  883. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
  884. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
  885. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
  886. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
  887. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
  888. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
  889. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
  890. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
  891. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
  892. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
  893. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
  894. /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
  895. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
  896. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  897. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
  898. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
  899. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
  900. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
  901. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.js +0 -0
  902. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.js +0 -0
  903. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
  904. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
  905. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.js +0 -0
  906. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.js +0 -0
  907. /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
  908. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.js +0 -0
  909. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.js +0 -0
  910. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.js +0 -0
  911. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.js +0 -0
  912. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
  913. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.js +0 -0
  914. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
  915. /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
  916. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpRequest.js +0 -0
  917. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpResponse.js +0 -0
  918. /package/node_modules/@smithy/core/dist-es/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.js +0 -0
  919. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/isValidHostname.js +0 -0
  920. /package/node_modules/@smithy/core/dist-es/submodules/{client/util-middleware → transport}/normalizeProvider.js +0 -0
  921. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/querystring-parser → transport}/parseQueryString.js +0 -0
  922. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -0
  923. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.d.ts +0 -0
  924. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.d.ts +0 -0
  925. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.d.ts +0 -0
  926. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
  927. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
  928. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
  929. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.d.ts +0 -0
  930. /package/node_modules/@smithy/core/dist-types/{pagination → legacy-root-exports/pagination}/createPaginator.d.ts +0 -0
  931. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
  932. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -0
  933. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.d.ts +0 -0
  934. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.d.ts +0 -0
  935. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
  936. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.d.ts +0 -0
  937. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.d.ts +0 -0
  938. /package/node_modules/@smithy/core/dist-types/{getSmithyContext.d.ts → submodules/transport/getSmithyContext.d.ts} +0 -0
  939. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpRequest.d.ts +0 -0
  940. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpResponse.d.ts +0 -0
  941. /package/node_modules/@smithy/core/dist-types/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.d.ts +0 -0
  942. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/isValidHostname.d.ts +0 -0
  943. /package/node_modules/@smithy/core/dist-types/submodules/{client/util-middleware → transport}/normalizeProvider.d.ts +0 -0
  944. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/querystring-parser → transport}/parseQueryString.d.ts +0 -0
  945. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/url-parser → transport}/parseUrl.d.ts +0 -0
  946. /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
@@ -1592,6 +1592,10 @@ const CapacityProviderScalingMode = {
1592
1592
  const CapacityProviderPredefinedMetricType = {
1593
1593
  LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization",
1594
1594
  };
1595
+ const PropagateTagsMode = {
1596
+ Explicit: "Explicit",
1597
+ None: "None",
1598
+ };
1595
1599
  const CapacityProviderState = {
1596
1600
  Active: "Active",
1597
1601
  Deleting: "Deleting",
@@ -1994,6 +1998,7 @@ exports.OperationAction = OperationAction;
1994
1998
  exports.OperationStatus = OperationStatus;
1995
1999
  exports.OperationType = OperationType;
1996
2000
  exports.PackageType = PackageType;
2001
+ exports.PropagateTagsMode = PropagateTagsMode;
1997
2002
  exports.ProvisionedConcurrencyStatusEnum = ProvisionedConcurrencyStatusEnum;
1998
2003
  exports.PublishLayerVersionCommand = PublishLayerVersionCommand;
1999
2004
  exports.PublishVersionCommand = PublishVersionCommand;
@@ -4,10 +4,10 @@ exports.AccountLimit$ = exports.errorTypeRegistries = exports.UnsupportedMediaTy
4
4
  exports.DeleteAliasRequest$ = exports.DeadLetterConfig$ = exports.CreateFunctionUrlConfigResponse$ = exports.CreateFunctionUrlConfigRequest$ = exports.CreateFunctionRequest$ = exports.CreateEventSourceMappingRequest$ = exports.CreateCodeSigningConfigResponse$ = exports.CreateCodeSigningConfigRequest$ = exports.CreateCapacityProviderResponse$ = exports.CreateCapacityProviderRequest$ = exports.CreateAliasRequest$ = exports.Cors$ = exports.ContextSucceededDetails$ = exports.ContextStartedDetails$ = exports.ContextOptions$ = exports.ContextFailedDetails$ = exports.ContextDetails$ = exports.Concurrency$ = exports.CodeSigningPolicies$ = exports.CodeSigningConfig$ = exports.CheckpointUpdatedExecutionState$ = exports.CheckpointDurableExecutionResponse$ = exports.CheckpointDurableExecutionRequest$ = exports.ChainedInvokeTimedOutDetails$ = exports.ChainedInvokeSucceededDetails$ = exports.ChainedInvokeStoppedDetails$ = exports.ChainedInvokeStartedDetails$ = exports.ChainedInvokeOptions$ = exports.ChainedInvokeFailedDetails$ = exports.ChainedInvokeDetails$ = exports.CapacityProviderVpcConfig$ = exports.CapacityProviderScalingConfig$ = exports.CapacityProviderPermissionsConfig$ = exports.CapacityProviderConfig$ = exports.CapacityProvider$ = exports.CallbackTimedOutDetails$ = exports.CallbackSucceededDetails$ = exports.CallbackStartedDetails$ = exports.CallbackOptions$ = exports.CallbackFailedDetails$ = exports.CallbackDetails$ = exports.AmazonManagedKafkaEventSourceConfig$ = exports.AllowedPublishers$ = exports.AliasRoutingConfiguration$ = exports.AliasConfiguration$ = exports.AddPermissionResponse$ = exports.AddPermissionRequest$ = exports.AddLayerVersionPermissionResponse$ = exports.AddLayerVersionPermissionRequest$ = exports.AccountUsage$ = void 0;
5
5
  exports.GetCapacityProviderRequest$ = exports.GetAliasRequest$ = exports.GetAccountSettingsResponse$ = exports.GetAccountSettingsRequest$ = exports.FunctionVersionsByCapacityProviderListItem$ = exports.FunctionUrlConfig$ = exports.FunctionScalingConfig$ = exports.FunctionEventInvokeConfig$ = exports.FunctionConfiguration$ = exports.FunctionCodeLocation$ = exports.FunctionCode$ = exports.FilterCriteriaError$ = exports.FilterCriteria$ = exports.Filter$ = exports.FileSystemConfig$ = exports.ExecutionTimedOutDetails$ = exports.ExecutionSucceededDetails$ = exports.ExecutionStoppedDetails$ = exports.ExecutionStartedDetails$ = exports.ExecutionFailedDetails$ = exports.ExecutionDetails$ = exports.Execution$ = exports.EventSourceMappingMetricsConfig$ = exports.EventSourceMappingLoggingConfig$ = exports.EventSourceMappingConfiguration$ = exports.EventResult$ = exports.EventInput$ = exports.EventError$ = exports.Event$ = exports.ErrorObject$ = exports.EphemeralStorage$ = exports.EnvironmentResponse$ = exports.EnvironmentError$ = exports.Environment$ = exports.DurableConfig$ = exports.DocumentDBEventSourceConfig$ = exports.DestinationConfig$ = exports.DeleteProvisionedConcurrencyConfigRequest$ = exports.DeleteLayerVersionRequest$ = exports.DeleteFunctionUrlConfigRequest$ = exports.DeleteFunctionResponse$ = exports.DeleteFunctionRequest$ = exports.DeleteFunctionEventInvokeConfigRequest$ = exports.DeleteFunctionConcurrencyRequest$ = exports.DeleteFunctionCodeSigningConfigRequest$ = exports.DeleteEventSourceMappingRequest$ = exports.DeleteCodeSigningConfigResponse$ = exports.DeleteCodeSigningConfigRequest$ = exports.DeleteCapacityProviderResponse$ = exports.DeleteCapacityProviderRequest$ = void 0;
6
6
  exports.KafkaSchemaRegistryConfig$ = exports.KafkaSchemaRegistryAccessConfig$ = exports.InvokeWithResponseStreamResponse$ = exports.InvokeWithResponseStreamRequest$ = exports.InvokeWithResponseStreamCompleteEvent$ = exports.InvokeResponseStreamUpdate$ = exports.InvokeAsyncResponse$ = exports.InvokeAsyncRequest$ = exports.InvocationResponse$ = exports.InvocationRequest$ = exports.InvocationCompletedDetails$ = exports.InstanceRequirements$ = exports.ImageConfigResponse$ = exports.ImageConfigError$ = exports.ImageConfig$ = exports.GetRuntimeManagementConfigResponse$ = exports.GetRuntimeManagementConfigRequest$ = exports.GetProvisionedConcurrencyConfigResponse$ = exports.GetProvisionedConcurrencyConfigRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetLayerVersionResponse$ = exports.GetLayerVersionRequest$ = exports.GetLayerVersionPolicyResponse$ = exports.GetLayerVersionPolicyRequest$ = exports.GetLayerVersionByArnRequest$ = exports.GetFunctionUrlConfigResponse$ = exports.GetFunctionUrlConfigRequest$ = exports.GetFunctionScalingConfigResponse$ = exports.GetFunctionScalingConfigRequest$ = exports.GetFunctionResponse$ = exports.GetFunctionRequest$ = exports.GetFunctionRecursionConfigResponse$ = exports.GetFunctionRecursionConfigRequest$ = exports.GetFunctionEventInvokeConfigRequest$ = exports.GetFunctionConfigurationRequest$ = exports.GetFunctionConcurrencyResponse$ = exports.GetFunctionConcurrencyRequest$ = exports.GetFunctionCodeSigningConfigResponse$ = exports.GetFunctionCodeSigningConfigRequest$ = exports.GetEventSourceMappingRequest$ = exports.GetDurableExecutionStateResponse$ = exports.GetDurableExecutionStateRequest$ = exports.GetDurableExecutionResponse$ = exports.GetDurableExecutionRequest$ = exports.GetDurableExecutionHistoryResponse$ = exports.GetDurableExecutionHistoryRequest$ = exports.GetCodeSigningConfigResponse$ = exports.GetCodeSigningConfigRequest$ = exports.GetCapacityProviderResponse$ = void 0;
7
- exports.PutFunctionConcurrencyRequest$ = exports.PutFunctionCodeSigningConfigResponse$ = exports.PutFunctionCodeSigningConfigRequest$ = exports.PublishVersionRequest$ = exports.PublishLayerVersionResponse$ = exports.PublishLayerVersionRequest$ = exports.ProvisionedPollerConfig$ = exports.ProvisionedConcurrencyConfigListItem$ = exports.OperationUpdate$ = exports.Operation$ = exports.OnSuccess$ = exports.OnFailure$ = exports.LoggingConfig$ = exports.ListVersionsByFunctionResponse$ = exports.ListVersionsByFunctionRequest$ = exports.ListTagsResponse$ = exports.ListTagsRequest$ = exports.ListProvisionedConcurrencyConfigsResponse$ = exports.ListProvisionedConcurrencyConfigsRequest$ = exports.ListLayerVersionsResponse$ = exports.ListLayerVersionsRequest$ = exports.ListLayersResponse$ = exports.ListLayersRequest$ = exports.ListFunctionVersionsByCapacityProviderResponse$ = exports.ListFunctionVersionsByCapacityProviderRequest$ = exports.ListFunctionUrlConfigsResponse$ = exports.ListFunctionUrlConfigsRequest$ = exports.ListFunctionsResponse$ = exports.ListFunctionsRequest$ = exports.ListFunctionsByCodeSigningConfigResponse$ = exports.ListFunctionsByCodeSigningConfigRequest$ = exports.ListFunctionEventInvokeConfigsResponse$ = exports.ListFunctionEventInvokeConfigsRequest$ = exports.ListEventSourceMappingsResponse$ = exports.ListEventSourceMappingsRequest$ = exports.ListDurableExecutionsByFunctionResponse$ = exports.ListDurableExecutionsByFunctionRequest$ = exports.ListCodeSigningConfigsResponse$ = exports.ListCodeSigningConfigsRequest$ = exports.ListCapacityProvidersResponse$ = exports.ListCapacityProvidersRequest$ = exports.ListAliasesResponse$ = exports.ListAliasesRequest$ = exports.LayerVersionsListItem$ = exports.LayerVersionContentOutput$ = exports.LayerVersionContentInput$ = exports.LayersListItem$ = exports.Layer$ = exports.LambdaManagedInstancesCapacityProviderConfig$ = exports.KafkaSchemaValidationConfig$ = void 0;
8
- exports.UpdateFunctionEventInvokeConfigRequest$ = exports.UpdateFunctionConfigurationRequest$ = exports.UpdateFunctionCodeRequest$ = exports.UpdateEventSourceMappingRequest$ = exports.UpdateCodeSigningConfigResponse$ = exports.UpdateCodeSigningConfigRequest$ = exports.UpdateCapacityProviderResponse$ = exports.UpdateCapacityProviderRequest$ = exports.UpdateAliasRequest$ = exports.UntagResourceRequest$ = exports.TracingConfigResponse$ = exports.TracingConfig$ = exports.TraceHeader$ = exports.TenancyConfig$ = exports.TargetTrackingScalingPolicy$ = exports.TagsError$ = exports.TagResourceRequest$ = exports.StopDurableExecutionResponse$ = exports.StopDurableExecutionRequest$ = exports.StepSucceededDetails$ = exports.StepStartedDetails$ = exports.StepOptions$ = exports.StepFailedDetails$ = exports.StepDetails$ = exports.SourceAccessConfiguration$ = exports.SnapStartResponse$ = exports.SnapStart$ = exports.SendDurableExecutionCallbackSuccessResponse$ = exports.SendDurableExecutionCallbackSuccessRequest$ = exports.SendDurableExecutionCallbackHeartbeatResponse$ = exports.SendDurableExecutionCallbackHeartbeatRequest$ = exports.SendDurableExecutionCallbackFailureResponse$ = exports.SendDurableExecutionCallbackFailureRequest$ = exports.SelfManagedKafkaEventSourceConfig$ = exports.SelfManagedEventSource$ = exports.ScalingConfig$ = exports.RuntimeVersionError$ = exports.RuntimeVersionConfig$ = exports.RetryDetails$ = exports.RemovePermissionRequest$ = exports.RemoveLayerVersionPermissionRequest$ = exports.PutRuntimeManagementConfigResponse$ = exports.PutRuntimeManagementConfigRequest$ = exports.PutProvisionedConcurrencyConfigResponse$ = exports.PutProvisionedConcurrencyConfigRequest$ = exports.PutFunctionScalingConfigResponse$ = exports.PutFunctionScalingConfigRequest$ = exports.PutFunctionRecursionConfigResponse$ = exports.PutFunctionRecursionConfigRequest$ = exports.PutFunctionEventInvokeConfigRequest$ = void 0;
9
- exports.GetPolicy$ = exports.GetLayerVersionPolicy$ = exports.GetLayerVersionByArn$ = exports.GetLayerVersion$ = exports.GetFunctionUrlConfig$ = exports.GetFunctionScalingConfig$ = exports.GetFunctionRecursionConfig$ = exports.GetFunctionEventInvokeConfig$ = exports.GetFunctionConfiguration$ = exports.GetFunctionConcurrency$ = exports.GetFunctionCodeSigningConfig$ = exports.GetFunction$ = exports.GetEventSourceMapping$ = exports.GetDurableExecutionState$ = exports.GetDurableExecutionHistory$ = exports.GetDurableExecution$ = exports.GetCodeSigningConfig$ = exports.GetCapacityProvider$ = exports.GetAlias$ = exports.GetAccountSettings$ = exports.DeleteProvisionedConcurrencyConfig$ = exports.DeleteLayerVersion$ = exports.DeleteFunctionUrlConfig$ = exports.DeleteFunctionEventInvokeConfig$ = exports.DeleteFunctionConcurrency$ = exports.DeleteFunctionCodeSigningConfig$ = exports.DeleteFunction$ = exports.DeleteEventSourceMapping$ = exports.DeleteCodeSigningConfig$ = exports.DeleteCapacityProvider$ = exports.DeleteAlias$ = exports.CreateFunctionUrlConfig$ = exports.CreateFunction$ = exports.CreateEventSourceMapping$ = exports.CreateCodeSigningConfig$ = exports.CreateCapacityProvider$ = exports.CreateAlias$ = exports.CheckpointDurableExecution$ = exports.AddPermission$ = exports.AddLayerVersionPermission$ = exports.InvokeWithResponseStreamResponseEvent$ = exports.WaitSucceededDetails$ = exports.WaitStartedDetails$ = exports.WaitOptions$ = exports.WaitDetails$ = exports.WaitCancelledDetails$ = exports.VpcConfigResponse$ = exports.VpcConfig$ = exports.UpdateFunctionUrlConfigResponse$ = exports.UpdateFunctionUrlConfigRequest$ = void 0;
10
- exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = exports.Invoke$ = exports.GetRuntimeManagementConfig$ = exports.GetProvisionedConcurrencyConfig$ = void 0;
7
+ exports.PutFunctionCodeSigningConfigResponse$ = exports.PutFunctionCodeSigningConfigRequest$ = exports.PublishVersionRequest$ = exports.PublishLayerVersionResponse$ = exports.PublishLayerVersionRequest$ = exports.ProvisionedPollerConfig$ = exports.ProvisionedConcurrencyConfigListItem$ = exports.PropagateTags$ = exports.OperationUpdate$ = exports.Operation$ = exports.OnSuccess$ = exports.OnFailure$ = exports.LoggingConfig$ = exports.ListVersionsByFunctionResponse$ = exports.ListVersionsByFunctionRequest$ = exports.ListTagsResponse$ = exports.ListTagsRequest$ = exports.ListProvisionedConcurrencyConfigsResponse$ = exports.ListProvisionedConcurrencyConfigsRequest$ = exports.ListLayerVersionsResponse$ = exports.ListLayerVersionsRequest$ = exports.ListLayersResponse$ = exports.ListLayersRequest$ = exports.ListFunctionVersionsByCapacityProviderResponse$ = exports.ListFunctionVersionsByCapacityProviderRequest$ = exports.ListFunctionUrlConfigsResponse$ = exports.ListFunctionUrlConfigsRequest$ = exports.ListFunctionsResponse$ = exports.ListFunctionsRequest$ = exports.ListFunctionsByCodeSigningConfigResponse$ = exports.ListFunctionsByCodeSigningConfigRequest$ = exports.ListFunctionEventInvokeConfigsResponse$ = exports.ListFunctionEventInvokeConfigsRequest$ = exports.ListEventSourceMappingsResponse$ = exports.ListEventSourceMappingsRequest$ = exports.ListDurableExecutionsByFunctionResponse$ = exports.ListDurableExecutionsByFunctionRequest$ = exports.ListCodeSigningConfigsResponse$ = exports.ListCodeSigningConfigsRequest$ = exports.ListCapacityProvidersResponse$ = exports.ListCapacityProvidersRequest$ = exports.ListAliasesResponse$ = exports.ListAliasesRequest$ = exports.LayerVersionsListItem$ = exports.LayerVersionContentOutput$ = exports.LayerVersionContentInput$ = exports.LayersListItem$ = exports.Layer$ = exports.LambdaManagedInstancesCapacityProviderConfig$ = exports.KafkaSchemaValidationConfig$ = void 0;
8
+ exports.UpdateFunctionConfigurationRequest$ = exports.UpdateFunctionCodeRequest$ = exports.UpdateEventSourceMappingRequest$ = exports.UpdateCodeSigningConfigResponse$ = exports.UpdateCodeSigningConfigRequest$ = exports.UpdateCapacityProviderResponse$ = exports.UpdateCapacityProviderRequest$ = exports.UpdateAliasRequest$ = exports.UntagResourceRequest$ = exports.TracingConfigResponse$ = exports.TracingConfig$ = exports.TraceHeader$ = exports.TenancyConfig$ = exports.TargetTrackingScalingPolicy$ = exports.TagsError$ = exports.TagResourceRequest$ = exports.StopDurableExecutionResponse$ = exports.StopDurableExecutionRequest$ = exports.StepSucceededDetails$ = exports.StepStartedDetails$ = exports.StepOptions$ = exports.StepFailedDetails$ = exports.StepDetails$ = exports.SourceAccessConfiguration$ = exports.SnapStartResponse$ = exports.SnapStart$ = exports.SendDurableExecutionCallbackSuccessResponse$ = exports.SendDurableExecutionCallbackSuccessRequest$ = exports.SendDurableExecutionCallbackHeartbeatResponse$ = exports.SendDurableExecutionCallbackHeartbeatRequest$ = exports.SendDurableExecutionCallbackFailureResponse$ = exports.SendDurableExecutionCallbackFailureRequest$ = exports.SelfManagedKafkaEventSourceConfig$ = exports.SelfManagedEventSource$ = exports.ScalingConfig$ = exports.RuntimeVersionError$ = exports.RuntimeVersionConfig$ = exports.RetryDetails$ = exports.RemovePermissionRequest$ = exports.RemoveLayerVersionPermissionRequest$ = exports.PutRuntimeManagementConfigResponse$ = exports.PutRuntimeManagementConfigRequest$ = exports.PutProvisionedConcurrencyConfigResponse$ = exports.PutProvisionedConcurrencyConfigRequest$ = exports.PutFunctionScalingConfigResponse$ = exports.PutFunctionScalingConfigRequest$ = exports.PutFunctionRecursionConfigResponse$ = exports.PutFunctionRecursionConfigRequest$ = exports.PutFunctionEventInvokeConfigRequest$ = exports.PutFunctionConcurrencyRequest$ = void 0;
9
+ exports.GetLayerVersionPolicy$ = exports.GetLayerVersionByArn$ = exports.GetLayerVersion$ = exports.GetFunctionUrlConfig$ = exports.GetFunctionScalingConfig$ = exports.GetFunctionRecursionConfig$ = exports.GetFunctionEventInvokeConfig$ = exports.GetFunctionConfiguration$ = exports.GetFunctionConcurrency$ = exports.GetFunctionCodeSigningConfig$ = exports.GetFunction$ = exports.GetEventSourceMapping$ = exports.GetDurableExecutionState$ = exports.GetDurableExecutionHistory$ = exports.GetDurableExecution$ = exports.GetCodeSigningConfig$ = exports.GetCapacityProvider$ = exports.GetAlias$ = exports.GetAccountSettings$ = exports.DeleteProvisionedConcurrencyConfig$ = exports.DeleteLayerVersion$ = exports.DeleteFunctionUrlConfig$ = exports.DeleteFunctionEventInvokeConfig$ = exports.DeleteFunctionConcurrency$ = exports.DeleteFunctionCodeSigningConfig$ = exports.DeleteFunction$ = exports.DeleteEventSourceMapping$ = exports.DeleteCodeSigningConfig$ = exports.DeleteCapacityProvider$ = exports.DeleteAlias$ = exports.CreateFunctionUrlConfig$ = exports.CreateFunction$ = exports.CreateEventSourceMapping$ = exports.CreateCodeSigningConfig$ = exports.CreateCapacityProvider$ = exports.CreateAlias$ = exports.CheckpointDurableExecution$ = exports.AddPermission$ = exports.AddLayerVersionPermission$ = exports.InvokeWithResponseStreamResponseEvent$ = exports.WaitSucceededDetails$ = exports.WaitStartedDetails$ = exports.WaitOptions$ = exports.WaitDetails$ = exports.WaitCancelledDetails$ = exports.VpcConfigResponse$ = exports.VpcConfig$ = exports.UpdateFunctionUrlConfigResponse$ = exports.UpdateFunctionUrlConfigRequest$ = exports.UpdateFunctionEventInvokeConfigRequest$ = void 0;
10
+ exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = exports.Invoke$ = exports.GetRuntimeManagementConfig$ = exports.GetProvisionedConcurrencyConfig$ = exports.GetPolicy$ = void 0;
11
11
  const _A = "Action";
12
12
  const _AA = "AliasArn";
13
13
  const _AC = "AliasConfiguration";
@@ -216,6 +216,7 @@ const _ETn = "EndTimestamp";
216
216
  const _ETv = "EventType";
217
217
  const _ETve = "EventTimestamp";
218
218
  const _ETx = "ExecutionTimeout";
219
+ const _ETxp = "ExplicitTags";
219
220
  const _EV = "ExecutedVersion";
220
221
  const _EVN = "EnvironmentVariableName";
221
222
  const _EVV = "EnvironmentVariableValue";
@@ -520,7 +521,8 @@ const _PPCCRu = "PutProvisionedConcurrencyConfigResponse";
520
521
  const _PRMC = "PutRuntimeManagementConfig";
521
522
  const _PRMCR = "PutRuntimeManagementConfigRequest";
522
523
  const _PRMCRu = "PutRuntimeManagementConfigResponse";
523
- const _PT = "PackageType";
524
+ const _PT = "PropagateTags";
525
+ const _PTa = "PackageType";
524
526
  const _PTu = "PublishTo";
525
527
  const _PV = "PublishVersion";
526
528
  const _PVR = "PublishVersionRequest";
@@ -1113,8 +1115,8 @@ exports.CallbackTimedOutDetails$ = [3, n0, _CTOD,
1113
1115
  ];
1114
1116
  exports.CapacityProvider$ = [3, n0, _CP,
1115
1117
  0,
1116
- [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM],
1117
- [0, 0, () => exports.CapacityProviderVpcConfig$, () => exports.CapacityProviderPermissionsConfig$, () => exports.InstanceRequirements$, () => exports.CapacityProviderScalingConfig$, 0, 0], 4
1118
+ [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM, _PT],
1119
+ [0, 0, () => exports.CapacityProviderVpcConfig$, () => exports.CapacityProviderPermissionsConfig$, () => exports.InstanceRequirements$, () => exports.CapacityProviderScalingConfig$, 0, 0, () => exports.PropagateTags$], 4
1118
1120
  ];
1119
1121
  exports.CapacityProviderConfig$ = [3, n0, _CPC,
1120
1122
  0,
@@ -1238,8 +1240,8 @@ exports.CreateAliasRequest$ = [3, n0, _CAR,
1238
1240
  ];
1239
1241
  exports.CreateCapacityProviderRequest$ = [3, n0, _CCPR,
1240
1242
  0,
1241
- [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta],
1242
- [0, () => exports.CapacityProviderVpcConfig$, () => exports.CapacityProviderPermissionsConfig$, () => exports.InstanceRequirements$, () => exports.CapacityProviderScalingConfig$, 0, 128 | 0], 3
1243
+ [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta, _PT],
1244
+ [0, () => exports.CapacityProviderVpcConfig$, () => exports.CapacityProviderPermissionsConfig$, () => exports.InstanceRequirements$, () => exports.CapacityProviderScalingConfig$, 0, 128 | 0, () => exports.PropagateTags$], 3
1243
1245
  ];
1244
1246
  exports.CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
1245
1247
  0,
@@ -1263,7 +1265,7 @@ exports.CreateEventSourceMappingRequest$ = [3, n0, _CESMR,
1263
1265
  ];
1264
1266
  exports.CreateFunctionRequest$ = [3, n0, _CFR,
1265
1267
  0,
1266
- [_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PT, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _IC, _CSCA, _Ar, _ES, _SSn, _LC, _CPC, _PTu, _DCu, _TCe],
1268
+ [_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PTa, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _IC, _CSCA, _Ar, _ES, _SSn, _LC, _CPC, _PTu, _DCu, _TCe],
1267
1269
  [0, 0, [() => exports.FunctionCode$, 0], 0, 0, 0, 1, 1, 2, () => exports.VpcConfig$, 0, () => exports.DeadLetterConfig$, [() => exports.Environment$, 0], 0, () => exports.TracingConfig$, 128 | 0, 64 | 0, () => FileSystemConfigList, () => exports.ImageConfig$, 0, 64 | 0, () => exports.EphemeralStorage$, () => exports.SnapStart$, () => exports.LoggingConfig$, () => exports.CapacityProviderConfig$, 0, () => exports.DurableConfig$, () => exports.TenancyConfig$], 3
1268
1270
  ];
1269
1271
  exports.CreateFunctionUrlConfigRequest$ = [3, n0, _CFUCR,
@@ -1493,7 +1495,7 @@ exports.FunctionCodeLocation$ = [3, n0, _FCL,
1493
1495
  ];
1494
1496
  exports.FunctionConfiguration$ = [3, n0, _FCun,
1495
1497
  0,
1496
- [_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _PT, _ICR, _SPVAi, _SJA, _Ar, _ES, _SSn, _RVC, _LC, _CPC, _CSon, _DCu, _TCe],
1498
+ [_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _PTa, _ICR, _SPVAi, _SJA, _Ar, _ES, _SSn, _RVC, _LC, _CPC, _CSon, _DCu, _TCe],
1497
1499
  [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () => exports.VpcConfigResponse$, () => exports.DeadLetterConfig$, [() => exports.EnvironmentResponse$, 0], 0, () => exports.TracingConfigResponse$, 0, 0, () => LayersReferenceList, 0, 0, 0, 0, 0, 0, () => FileSystemConfigList, 0, [() => exports.ImageConfigResponse$, 0], 0, 0, 64 | 0, () => exports.EphemeralStorage$, () => exports.SnapStartResponse$, [() => exports.RuntimeVersionConfig$, 0], () => exports.LoggingConfig$, () => exports.CapacityProviderConfig$, 0, () => exports.DurableConfig$, () => exports.TenancyConfig$]
1498
1500
  ];
1499
1501
  exports.FunctionEventInvokeConfig$ = [3, n0, _FEIC,
@@ -1996,6 +1998,11 @@ exports.OperationUpdate$ = [3, n0, _OU,
1996
1998
  [_Id, _T, _A, _PI, _N, _STu, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
1997
1999
  [0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() => exports.ErrorObject$, 0], () => exports.ContextOptions$, () => exports.StepOptions$, () => exports.WaitOptions$, () => exports.CallbackOptions$, () => exports.ChainedInvokeOptions$], 3
1998
2000
  ];
2001
+ exports.PropagateTags$ = [3, n0, _PT,
2002
+ 0,
2003
+ [_Mo, _ETxp],
2004
+ [0, 128 | 0]
2005
+ ];
1999
2006
  exports.ProvisionedConcurrencyConfigListItem$ = [3, n0, _PCCLI,
2000
2007
  0,
2001
2008
  [_FA, _RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
@@ -2248,8 +2255,8 @@ exports.UpdateAliasRequest$ = [3, n0, _UAR,
2248
2255
  ];
2249
2256
  exports.UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
2250
2257
  0,
2251
- [_CPN, _CPSC],
2252
- [[0, 1], () => exports.CapacityProviderScalingConfig$], 1
2258
+ [_CPN, _CPSC, _PT],
2259
+ [[0, 1], () => exports.CapacityProviderScalingConfig$, () => exports.PropagateTags$], 1
2253
2260
  ];
2254
2261
  exports.UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
2255
2262
  0,
@@ -42,6 +42,10 @@ export const CapacityProviderScalingMode = {
42
42
  export const CapacityProviderPredefinedMetricType = {
43
43
  LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization",
44
44
  };
45
+ export const PropagateTagsMode = {
46
+ Explicit: "Explicit",
47
+ None: "None",
48
+ };
45
49
  export const CapacityProviderState = {
46
50
  Active: "Active",
47
51
  Deleting: "Deleting",
@@ -206,6 +206,7 @@ const _ETn = "EndTimestamp";
206
206
  const _ETv = "EventType";
207
207
  const _ETve = "EventTimestamp";
208
208
  const _ETx = "ExecutionTimeout";
209
+ const _ETxp = "ExplicitTags";
209
210
  const _EV = "ExecutedVersion";
210
211
  const _EVN = "EnvironmentVariableName";
211
212
  const _EVV = "EnvironmentVariableValue";
@@ -510,7 +511,8 @@ const _PPCCRu = "PutProvisionedConcurrencyConfigResponse";
510
511
  const _PRMC = "PutRuntimeManagementConfig";
511
512
  const _PRMCR = "PutRuntimeManagementConfigRequest";
512
513
  const _PRMCRu = "PutRuntimeManagementConfigResponse";
513
- const _PT = "PackageType";
514
+ const _PT = "PropagateTags";
515
+ const _PTa = "PackageType";
514
516
  const _PTu = "PublishTo";
515
517
  const _PV = "PublishVersion";
516
518
  const _PVR = "PublishVersionRequest";
@@ -1103,8 +1105,8 @@ export var CallbackTimedOutDetails$ = [3, n0, _CTOD,
1103
1105
  ];
1104
1106
  export var CapacityProvider$ = [3, n0, _CP,
1105
1107
  0,
1106
- [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM],
1107
- [0, 0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 0], 4
1108
+ [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM, _PT],
1109
+ [0, 0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 0, () => PropagateTags$], 4
1108
1110
  ];
1109
1111
  export var CapacityProviderConfig$ = [3, n0, _CPC,
1110
1112
  0,
@@ -1228,8 +1230,8 @@ export var CreateAliasRequest$ = [3, n0, _CAR,
1228
1230
  ];
1229
1231
  export var CreateCapacityProviderRequest$ = [3, n0, _CCPR,
1230
1232
  0,
1231
- [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta],
1232
- [0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 128 | 0], 3
1233
+ [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta, _PT],
1234
+ [0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 128 | 0, () => PropagateTags$], 3
1233
1235
  ];
1234
1236
  export var CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
1235
1237
  0,
@@ -1253,7 +1255,7 @@ export var CreateEventSourceMappingRequest$ = [3, n0, _CESMR,
1253
1255
  ];
1254
1256
  export var CreateFunctionRequest$ = [3, n0, _CFR,
1255
1257
  0,
1256
- [_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PT, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _IC, _CSCA, _Ar, _ES, _SSn, _LC, _CPC, _PTu, _DCu, _TCe],
1258
+ [_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PTa, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _IC, _CSCA, _Ar, _ES, _SSn, _LC, _CPC, _PTu, _DCu, _TCe],
1257
1259
  [0, 0, [() => FunctionCode$, 0], 0, 0, 0, 1, 1, 2, () => VpcConfig$, 0, () => DeadLetterConfig$, [() => Environment$, 0], 0, () => TracingConfig$, 128 | 0, 64 | 0, () => FileSystemConfigList, () => ImageConfig$, 0, 64 | 0, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$, () => TenancyConfig$], 3
1258
1260
  ];
1259
1261
  export var CreateFunctionUrlConfigRequest$ = [3, n0, _CFUCR,
@@ -1483,7 +1485,7 @@ export var FunctionCodeLocation$ = [3, n0, _FCL,
1483
1485
  ];
1484
1486
  export var FunctionConfiguration$ = [3, n0, _FCun,
1485
1487
  0,
1486
- [_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _PT, _ICR, _SPVAi, _SJA, _Ar, _ES, _SSn, _RVC, _LC, _CPC, _CSon, _DCu, _TCe],
1488
+ [_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _PTa, _ICR, _SPVAi, _SJA, _Ar, _ES, _SSn, _RVC, _LC, _CPC, _CSon, _DCu, _TCe],
1487
1489
  [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () => VpcConfigResponse$, () => DeadLetterConfig$, [() => EnvironmentResponse$, 0], 0, () => TracingConfigResponse$, 0, 0, () => LayersReferenceList, 0, 0, 0, 0, 0, 0, () => FileSystemConfigList, 0, [() => ImageConfigResponse$, 0], 0, 0, 64 | 0, () => EphemeralStorage$, () => SnapStartResponse$, [() => RuntimeVersionConfig$, 0], () => LoggingConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$, () => TenancyConfig$]
1488
1490
  ];
1489
1491
  export var FunctionEventInvokeConfig$ = [3, n0, _FEIC,
@@ -1986,6 +1988,11 @@ export var OperationUpdate$ = [3, n0, _OU,
1986
1988
  [_Id, _T, _A, _PI, _N, _STu, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
1987
1989
  [0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() => ErrorObject$, 0], () => ContextOptions$, () => StepOptions$, () => WaitOptions$, () => CallbackOptions$, () => ChainedInvokeOptions$], 3
1988
1990
  ];
1991
+ export var PropagateTags$ = [3, n0, _PT,
1992
+ 0,
1993
+ [_Mo, _ETxp],
1994
+ [0, 128 | 0]
1995
+ ];
1989
1996
  export var ProvisionedConcurrencyConfigListItem$ = [3, n0, _PCCLI,
1990
1997
  0,
1991
1998
  [_FA, _RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
@@ -2238,8 +2245,8 @@ export var UpdateAliasRequest$ = [3, n0, _UAR,
2238
2245
  ];
2239
2246
  export var UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
2240
2247
  0,
2241
- [_CPN, _CPSC],
2242
- [[0, 1], () => CapacityProviderScalingConfig$], 1
2248
+ [_CPN, _CPSC, _PT],
2249
+ [[0, 1], () => CapacityProviderScalingConfig$, () => PropagateTags$], 1
2243
2250
  ];
2244
2251
  export var UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
2245
2252
  0,
@@ -76,6 +76,12 @@ declare const CreateCapacityProviderCommand_base: {
76
76
  * Tags: { // Tags
77
77
  * "<keys>": "STRING_VALUE",
78
78
  * },
79
+ * PropagateTags: { // PropagateTags
80
+ * Mode: "None" || "Explicit",
81
+ * ExplicitTags: {
82
+ * "<keys>": "STRING_VALUE",
83
+ * },
84
+ * },
79
85
  * };
80
86
  * const command = new CreateCapacityProviderCommand(input);
81
87
  * const response = await client.send(command);
@@ -117,6 +123,12 @@ declare const CreateCapacityProviderCommand_base: {
117
123
  * // },
118
124
  * // KmsKeyArn: "STRING_VALUE",
119
125
  * // LastModified: "STRING_VALUE",
126
+ * // PropagateTags: { // PropagateTags
127
+ * // Mode: "None" || "Explicit",
128
+ * // ExplicitTags: { // Tags
129
+ * // "<keys>": "STRING_VALUE",
130
+ * // },
131
+ * // },
120
132
  * // },
121
133
  * // };
122
134
  *
@@ -81,6 +81,12 @@ declare const DeleteCapacityProviderCommand_base: {
81
81
  * // },
82
82
  * // KmsKeyArn: "STRING_VALUE",
83
83
  * // LastModified: "STRING_VALUE",
84
+ * // PropagateTags: { // PropagateTags
85
+ * // Mode: "None" || "Explicit",
86
+ * // ExplicitTags: { // Tags
87
+ * // "<keys>": "STRING_VALUE",
88
+ * // },
89
+ * // },
84
90
  * // },
85
91
  * // };
86
92
  *
@@ -81,6 +81,12 @@ declare const GetCapacityProviderCommand_base: {
81
81
  * // },
82
82
  * // KmsKeyArn: "STRING_VALUE",
83
83
  * // LastModified: "STRING_VALUE",
84
+ * // PropagateTags: { // PropagateTags
85
+ * // Mode: "None" || "Explicit",
86
+ * // ExplicitTags: { // Tags
87
+ * // "<keys>": "STRING_VALUE",
88
+ * // },
89
+ * // },
84
90
  * // },
85
91
  * // };
86
92
  *
@@ -80,9 +80,9 @@ declare const GetProvisionedConcurrencyConfigCommand_base: {
80
80
  * <p>Base exception class for all service exceptions from Lambda service.</p>
81
81
  *
82
82
  *
83
- * @example To get a provisioned concurrency configuration
83
+ * @example To view a provisioned concurrency configuration
84
84
  * ```javascript
85
- * // The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.
85
+ * // The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.
86
86
  * const input = {
87
87
  * FunctionName: "my-function",
88
88
  * Qualifier: "BLUE"
@@ -100,9 +100,9 @@ declare const GetProvisionedConcurrencyConfigCommand_base: {
100
100
  * *\/
101
101
  * ```
102
102
  *
103
- * @example To view a provisioned concurrency configuration
103
+ * @example To get a provisioned concurrency configuration
104
104
  * ```javascript
105
- * // The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.
105
+ * // The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.
106
106
  * const input = {
107
107
  * FunctionName: "my-function",
108
108
  * Qualifier: "BLUE"
@@ -84,6 +84,12 @@ declare const ListCapacityProvidersCommand_base: {
84
84
  * // },
85
85
  * // KmsKeyArn: "STRING_VALUE",
86
86
  * // LastModified: "STRING_VALUE",
87
+ * // PropagateTags: { // PropagateTags
88
+ * // Mode: "None" || "Explicit",
89
+ * // ExplicitTags: { // Tags
90
+ * // "<keys>": "STRING_VALUE",
91
+ * // },
92
+ * // },
87
93
  * // },
88
94
  * // ],
89
95
  * // NextMarker: "STRING_VALUE",
@@ -50,6 +50,12 @@ declare const UpdateCapacityProviderCommand_base: {
50
50
  * },
51
51
  * ],
52
52
  * },
53
+ * PropagateTags: { // PropagateTags
54
+ * Mode: "None" || "Explicit",
55
+ * ExplicitTags: { // Tags
56
+ * "<keys>": "STRING_VALUE",
57
+ * },
58
+ * },
53
59
  * };
54
60
  * const command = new UpdateCapacityProviderCommand(input);
55
61
  * const response = await client.send(command);
@@ -91,6 +97,12 @@ declare const UpdateCapacityProviderCommand_base: {
91
97
  * // },
92
98
  * // KmsKeyArn: "STRING_VALUE",
93
99
  * // LastModified: "STRING_VALUE",
100
+ * // PropagateTags: { // PropagateTags
101
+ * // Mode: "None" || "Explicit",
102
+ * // ExplicitTags: { // Tags
103
+ * // "<keys>": "STRING_VALUE",
104
+ * // },
105
+ * // },
94
106
  * // },
95
107
  * // };
96
108
  *
@@ -114,6 +114,24 @@ export declare const CapacityProviderPredefinedMetricType: {
114
114
  * @public
115
115
  */
116
116
  export type CapacityProviderPredefinedMetricType = (typeof CapacityProviderPredefinedMetricType)[keyof typeof CapacityProviderPredefinedMetricType];
117
+ /**
118
+ * @public
119
+ * @enum
120
+ */
121
+ export declare const PropagateTagsMode: {
122
+ /**
123
+ * <p>Tags specified in <code>ExplicitTags</code> are applied to managed resources at launch.</p>
124
+ */
125
+ readonly Explicit: "Explicit";
126
+ /**
127
+ * <p>Tag propagation is disabled. No tags are applied to managed resources.</p>
128
+ */
129
+ readonly None: "None";
130
+ };
131
+ /**
132
+ * @public
133
+ */
134
+ export type PropagateTagsMode = (typeof PropagateTagsMode)[keyof typeof PropagateTagsMode];
117
135
  /**
118
136
  * @public
119
137
  * @enum
@@ -1,5 +1,5 @@
1
1
  import type { StreamingBlobTypes } from "@smithy/types";
2
- import type { ApplicationLogLevel, Architecture, CapacityProviderPredefinedMetricType, CapacityProviderScalingMode, CapacityProviderState, CodeSigningPolicy, EndPointType, EventSourceMappingMetric, EventSourceMappingSystemLogLevel, EventSourcePosition, EventType, ExecutionStatus, FullDocument, FunctionResponseType, FunctionUrlAuthType, FunctionVersion, FunctionVersionLatestPublished, InvocationType, InvokeMode, KafkaSchemaRegistryAuthType, KafkaSchemaValidationAttribute, LastUpdateStatus, LastUpdateStatusReasonCode, LogFormat, LogType, OperationAction, OperationStatus, OperationType, PackageType, ProvisionedConcurrencyStatusEnum, RecursiveLoop, ResponseStreamingInvocationType, Runtime, SchemaRegistryEventRecordFormat, SnapStartApplyOn, SnapStartOptimizationStatus, SourceAccessType, State, StateReasonCode, SystemLogLevel, TenantIsolationMode, TracingMode, UpdateRuntimeOn } from "./enums";
2
+ import type { ApplicationLogLevel, Architecture, CapacityProviderPredefinedMetricType, CapacityProviderScalingMode, CapacityProviderState, CodeSigningPolicy, EndPointType, EventSourceMappingMetric, EventSourceMappingSystemLogLevel, EventSourcePosition, EventType, ExecutionStatus, FullDocument, FunctionResponseType, FunctionUrlAuthType, FunctionVersion, FunctionVersionLatestPublished, InvocationType, InvokeMode, KafkaSchemaRegistryAuthType, KafkaSchemaValidationAttribute, LastUpdateStatus, LastUpdateStatusReasonCode, LogFormat, LogType, OperationAction, OperationStatus, OperationType, PackageType, PropagateTagsMode, ProvisionedConcurrencyStatusEnum, RecursiveLoop, ResponseStreamingInvocationType, Runtime, SchemaRegistryEventRecordFormat, SnapStartApplyOn, SnapStartOptimizationStatus, SourceAccessType, State, StateReasonCode, SystemLogLevel, TenantIsolationMode, TracingMode, UpdateRuntimeOn } from "./enums";
3
3
  /**
4
4
  * <p>Limits that are related to concurrency and storage. All file and storage sizes are in bytes.</p>
5
5
  * @public
@@ -373,6 +373,22 @@ export interface CapacityProviderPermissionsConfig {
373
373
  */
374
374
  CapacityProviderOperatorRoleArn: string | undefined;
375
375
  }
376
+ /**
377
+ * <p>Configuration for tag propagation to managed resources launched by the capacity provider.</p>
378
+ * @public
379
+ */
380
+ export interface PropagateTags {
381
+ /**
382
+ * <p>The tag propagation mode. Set to <code>Explicit</code> to propagate the tags specified in <code>ExplicitTags</code> to managed resources. Set to <code>None</code> to disable tag propagation.</p>
383
+ * @public
384
+ */
385
+ Mode?: PropagateTagsMode | undefined;
386
+ /**
387
+ * <p>A list of tags to apply to managed resources when <code>Mode</code> is set to <code>Explicit</code>. You can specify up to 40 tags.</p>
388
+ * @public
389
+ */
390
+ ExplicitTags?: Record<string, string> | undefined;
391
+ }
376
392
  /**
377
393
  * <p>VPC configuration that specifies the network settings for compute instances managed by the capacity provider.</p>
378
394
  * @public
@@ -428,6 +444,11 @@ export interface CreateCapacityProviderRequest {
428
444
  * @public
429
445
  */
430
446
  Tags?: Record<string, string> | undefined;
447
+ /**
448
+ * <p>The tag propagation configuration for the capacity provider. Specifies tags to apply to managed resources at launch.</p>
449
+ * @public
450
+ */
451
+ PropagateTags?: PropagateTags | undefined;
431
452
  }
432
453
  /**
433
454
  * <p>A capacity provider manages compute resources for Lambda functions.</p>
@@ -474,6 +495,11 @@ export interface CapacityProvider {
474
495
  * @public
475
496
  */
476
497
  LastModified?: string | undefined;
498
+ /**
499
+ * <p>Configuration for tag propagation to managed resources launched by the capacity provider.</p>
500
+ * @public
501
+ */
502
+ PropagateTags?: PropagateTags | undefined;
477
503
  }
478
504
  /**
479
505
  * @public
@@ -630,6 +656,11 @@ export interface UpdateCapacityProviderRequest {
630
656
  * @public
631
657
  */
632
658
  CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
659
+ /**
660
+ * <p>Configuration for tag propagation to managed resources launched by the capacity provider.</p>
661
+ * @public
662
+ */
663
+ PropagateTags?: PropagateTags | undefined;
633
664
  }
634
665
  /**
635
666
  * @public
@@ -247,6 +247,7 @@ export declare var OnFailure$: StaticStructureSchema;
247
247
  export declare var OnSuccess$: StaticStructureSchema;
248
248
  export declare var Operation$: StaticStructureSchema;
249
249
  export declare var OperationUpdate$: StaticStructureSchema;
250
+ export declare var PropagateTags$: StaticStructureSchema;
250
251
  export declare var ProvisionedConcurrencyConfigListItem$: StaticStructureSchema;
251
252
  export declare var ProvisionedPollerConfig$: StaticStructureSchema;
252
253
  export declare var PublishLayerVersionRequest$: StaticStructureSchema;
@@ -59,6 +59,12 @@ export declare const CapacityProviderPredefinedMetricType: {
59
59
  };
60
60
  export type CapacityProviderPredefinedMetricType =
61
61
  (typeof CapacityProviderPredefinedMetricType)[keyof typeof CapacityProviderPredefinedMetricType];
62
+ export declare const PropagateTagsMode: {
63
+ readonly Explicit: "Explicit";
64
+ readonly None: "None";
65
+ };
66
+ export type PropagateTagsMode =
67
+ (typeof PropagateTagsMode)[keyof typeof PropagateTagsMode];
62
68
  export declare const CapacityProviderState: {
63
69
  readonly Active: "Active";
64
70
  readonly Deleting: "Deleting";
@@ -29,6 +29,7 @@ import {
29
29
  OperationStatus,
30
30
  OperationType,
31
31
  PackageType,
32
+ PropagateTagsMode,
32
33
  ProvisionedConcurrencyStatusEnum,
33
34
  RecursiveLoop,
34
35
  ResponseStreamingInvocationType,
@@ -133,6 +134,10 @@ export interface InstanceRequirements {
133
134
  export interface CapacityProviderPermissionsConfig {
134
135
  CapacityProviderOperatorRoleArn: string | undefined;
135
136
  }
137
+ export interface PropagateTags {
138
+ Mode?: PropagateTagsMode | undefined;
139
+ ExplicitTags?: Record<string, string> | undefined;
140
+ }
136
141
  export interface CapacityProviderVpcConfig {
137
142
  SubnetIds: string[] | undefined;
138
143
  SecurityGroupIds: string[] | undefined;
@@ -145,6 +150,7 @@ export interface CreateCapacityProviderRequest {
145
150
  CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
146
151
  KmsKeyArn?: string | undefined;
147
152
  Tags?: Record<string, string> | undefined;
153
+ PropagateTags?: PropagateTags | undefined;
148
154
  }
149
155
  export interface CapacityProvider {
150
156
  CapacityProviderArn: string | undefined;
@@ -155,6 +161,7 @@ export interface CapacityProvider {
155
161
  CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
156
162
  KmsKeyArn?: string | undefined;
157
163
  LastModified?: string | undefined;
164
+ PropagateTags?: PropagateTags | undefined;
158
165
  }
159
166
  export interface CreateCapacityProviderResponse {
160
167
  CapacityProvider: CapacityProvider | undefined;
@@ -197,6 +204,7 @@ export interface ListFunctionVersionsByCapacityProviderResponse {
197
204
  export interface UpdateCapacityProviderRequest {
198
205
  CapacityProviderName: string | undefined;
199
206
  CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
207
+ PropagateTags?: PropagateTags | undefined;
200
208
  }
201
209
  export interface UpdateCapacityProviderResponse {
202
210
  CapacityProvider: CapacityProvider | undefined;
@@ -247,6 +247,7 @@ export declare var OnFailure$: StaticStructureSchema;
247
247
  export declare var OnSuccess$: StaticStructureSchema;
248
248
  export declare var Operation$: StaticStructureSchema;
249
249
  export declare var OperationUpdate$: StaticStructureSchema;
250
+ export declare var PropagateTags$: StaticStructureSchema;
250
251
  export declare var ProvisionedConcurrencyConfigListItem$: StaticStructureSchema;
251
252
  export declare var ProvisionedPollerConfig$: StaticStructureSchema;
252
253
  export declare var PublishLayerVersionRequest$: StaticStructureSchema;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lambda",
3
3
  "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
4
- "version": "3.1053.0",
4
+ "version": "3.1063.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-lambda",
@@ -27,17 +27,17 @@
27
27
  "dependencies": {
28
28
  "@aws-crypto/sha256-browser": "5.2.0",
29
29
  "@aws-crypto/sha256-js": "5.2.0",
30
- "@aws-sdk/core": "^3.974.13",
31
- "@aws-sdk/credential-provider-node": "^3.972.44",
32
- "@aws-sdk/types": "^3.973.9",
33
- "@smithy/core": "^3.24.3",
34
- "@smithy/fetch-http-handler": "^5.4.3",
35
- "@smithy/node-http-handler": "^4.7.3",
36
- "@smithy/types": "^4.14.2",
30
+ "@aws-sdk/core": "^3.974.18",
31
+ "@aws-sdk/credential-provider-node": "^3.972.52",
32
+ "@aws-sdk/types": "^3.973.11",
33
+ "@smithy/core": "^3.24.6",
34
+ "@smithy/fetch-http-handler": "^5.4.6",
35
+ "@smithy/node-http-handler": "^4.7.6",
36
+ "@smithy/types": "^4.14.3",
37
37
  "tslib": "^2.6.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@smithy/snapshot-testing": "^2.1.3",
40
+ "@smithy/snapshot-testing": "^2.1.7",
41
41
  "@tsconfig/node20": "20.1.8",
42
42
  "@types/node": "^20.14.8",
43
43
  "concurrently": "7.0.0",
@@ -61,7 +61,7 @@
61
61
  ],
62
62
  "author": {
63
63
  "name": "AWS SDK for JavaScript Team",
64
- "url": "https://aws.amazon.com/javascript/"
64
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
65
65
  },
66
66
  "license": "Apache-2.0",
67
67
  "browser": {