@cdklabs/cdk-ssm-documents 0.0.61 → 0.0.62

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 (410) hide show
  1. package/.jsii +12 -12
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
  117. package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -10
  118. package/node_modules/@aws-sdk/client-ec2/README.md +66 -2
  119. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +33 -0
  120. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +98 -60
  121. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
  122. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js +16 -0
  123. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolAllocationCommand.js +16 -0
  124. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
  125. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +1 -0
  126. package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/DescribeIpamPoolAllocationsPaginator.js +4 -0
  127. package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/index.js +1 -0
  128. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +51 -13
  129. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +74 -2
  130. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +56 -4
  131. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +1 -1
  132. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +1 -1
  133. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +1 -1
  134. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +17 -0
  135. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +1 -1
  136. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +1 -1
  137. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +1 -1
  138. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +1 -1
  139. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
  140. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -1
  141. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +1 -1
  142. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
  145. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -1
  146. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +1 -1
  147. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +1 -1
  148. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +1 -1
  149. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
  150. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +1 -1
  151. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +1 -1
  152. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +1 -1
  153. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +1 -1
  154. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +1 -1
  155. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +1 -1
  156. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +1 -1
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +1 -1
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +1 -1
  160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +1 -1
  161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +1 -1
  162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +1 -1
  163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +1 -1
  164. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +1 -1
  165. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
  166. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +1 -1
  167. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +1 -1
  168. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +1 -1
  169. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
  170. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +1 -1
  171. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
  172. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  173. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +1 -1
  174. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +1 -1
  175. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
  176. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +1 -1
  177. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +1 -1
  178. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +1 -1
  179. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +1 -1
  181. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +1 -1
  182. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +1 -1
  183. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +1 -1
  184. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -1
  185. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -1
  186. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +1 -1
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +1 -1
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +1 -1
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +1 -1
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +1 -1
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -1
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +1 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +1 -1
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +1 -1
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +1 -1
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +1 -1
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +1 -1
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -1
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +1 -1
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +1 -1
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +1 -1
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +1 -1
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -1
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +1 -1
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -1
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +1 -1
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +1 -1
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +1 -1
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +1 -1
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +1 -1
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +1 -1
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -1
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +1 -1
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolAllocationsCommand.d.ts +110 -0
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +2 -1
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +2 -3
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +5 -0
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +1 -1
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +2 -1
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +1 -2
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +6 -0
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +1 -1
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +3 -0
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +92 -0
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +1 -2
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +5 -0
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +1 -1
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +1 -1
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +1 -1
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +1 -1
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +1 -1
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -1
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +52 -2
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +1 -0
  261. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +12 -0
  262. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +51 -74
  263. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +77 -46
  264. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +104 -129
  265. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +127 -18
  266. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamPoolAllocationsPaginator.d.ts +7 -0
  267. package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/index.d.ts +1 -0
  268. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +6 -0
  269. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +42 -0
  270. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
  271. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolAllocationsCommand.d.ts +53 -0
  272. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +2 -4
  273. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +1 -2
  274. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +2 -4
  275. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +4 -2
  276. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +53 -0
  277. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +1 -1
  278. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +1 -1
  279. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +4 -2
  280. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
  281. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +1 -0
  282. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +2 -0
  283. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +12 -11
  284. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +12 -10
  285. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +26 -27
  286. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +31 -4
  287. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/DescribeIpamPoolAllocationsPaginator.d.ts +11 -0
  288. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/index.d.ts +1 -0
  289. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
  290. package/node_modules/@aws-sdk/client-ec2/package.json +10 -10
  291. package/node_modules/@aws-sdk/client-iam/package.json +9 -9
  292. package/node_modules/@aws-sdk/client-lambda/package.json +9 -9
  293. package/node_modules/@aws-sdk/client-s3/package.json +17 -17
  294. package/node_modules/@aws-sdk/client-sns/package.json +8 -8
  295. package/node_modules/@aws-sdk/client-sqs/package.json +10 -10
  296. package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
  297. package/node_modules/@aws-sdk/core/dist-cjs/index.js +10 -10
  298. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +10 -10
  299. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +1 -1
  300. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +9 -9
  301. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +1 -1
  302. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +0 -1
  303. package/node_modules/@aws-sdk/core/package.json +5 -5
  304. package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
  305. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  306. package/node_modules/@aws-sdk/credential-provider-http/package.json +7 -7
  307. package/node_modules/@aws-sdk/credential-provider-ini/package.json +12 -12
  308. package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
  309. package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
  310. package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
  311. package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
  312. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
  313. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
  314. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
  315. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +7 -7
  316. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
  317. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +5 -5
  318. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +6 -6
  319. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  320. package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
  321. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
  322. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
  323. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
  324. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
  325. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
  326. package/node_modules/@aws-sdk/nested-clients/package.json +8 -8
  327. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
  328. package/node_modules/@aws-sdk/token-providers/package.json +6 -6
  329. package/node_modules/@aws-sdk/types/package.json +2 -2
  330. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  331. package/node_modules/@smithy/core/cbor.d.ts +1 -3
  332. package/node_modules/@smithy/core/cbor.js +0 -1
  333. package/node_modules/@smithy/core/checksum.d.ts +2 -2
  334. package/node_modules/@smithy/core/checksum.js +1 -1
  335. package/node_modules/@smithy/core/client.d.ts +1 -3
  336. package/node_modules/@smithy/core/client.js +0 -1
  337. package/node_modules/@smithy/core/config.d.ts +2 -2
  338. package/node_modules/@smithy/core/config.js +1 -1
  339. package/node_modules/@smithy/core/endpoints.d.ts +1 -3
  340. package/node_modules/@smithy/core/endpoints.js +0 -1
  341. package/node_modules/@smithy/core/event-streams.d.ts +1 -3
  342. package/node_modules/@smithy/core/event-streams.js +0 -1
  343. package/node_modules/@smithy/core/package.json +1 -1
  344. package/node_modules/@smithy/core/protocols.d.ts +1 -3
  345. package/node_modules/@smithy/core/protocols.js +0 -1
  346. package/node_modules/@smithy/core/retry.d.ts +2 -2
  347. package/node_modules/@smithy/core/retry.js +1 -1
  348. package/node_modules/@smithy/core/schema.d.ts +1 -3
  349. package/node_modules/@smithy/core/schema.js +0 -1
  350. package/node_modules/@smithy/core/serde.d.ts +1 -3
  351. package/node_modules/@smithy/core/serde.js +0 -1
  352. package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
  353. package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
  354. package/node_modules/@smithy/middleware-compression/package.json +2 -2
  355. package/node_modules/@smithy/node-http-handler/package.json +2 -2
  356. package/node_modules/@smithy/signature-v4/package.json +2 -2
  357. package/package.json +10 -10
  358. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/CHANGELOG.md +0 -0
  359. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/LICENSE +0 -0
  360. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/README.md +0 -0
  361. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxbuilder.min.js +0 -0
  362. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxbuilder.min.js.map +0 -0
  363. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.cjs +0 -0
  364. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.d.cts +0 -0
  365. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.min.js +0 -0
  366. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.min.js.map +0 -0
  367. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxparser.min.js +0 -0
  368. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxparser.min.js.map +0 -0
  369. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxvalidator.min.js +0 -0
  370. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
  371. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/package.json +0 -0
  372. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/cli.js +0 -0
  373. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/man.js +0 -0
  374. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/read.js +0 -0
  375. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/fxp.d.ts +0 -0
  376. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/fxp.js +0 -0
  377. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/ignoreAttributes.js +0 -0
  378. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/util.js +0 -0
  379. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
  380. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
  381. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
  382. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
  383. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
  384. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
  385. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
  386. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
  387. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/Report.js +0 -0
  388. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/TagPath.js +0 -0
  389. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
  390. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XMLParser.js +0 -0
  391. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
  392. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
  393. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
  394. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
  395. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
  396. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
  397. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
  398. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
  399. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
  400. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
  401. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
  402. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
  403. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/validator.js +0 -0
  404. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
  405. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/DocTypeReader.js +0 -0
  406. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/OptionsBuilder.js +0 -0
  407. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/OrderedObjParser.js +0 -0
  408. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/XMLParser.js +0 -0
  409. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/node2json.js +0 -0
  410. /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
@@ -53,7 +53,7 @@ export class AwsJsonRpcProtocol extends RpcProtocol {
53
53
  if (awsQueryCompatible) {
54
54
  this.mixin.setQueryCompatError(dataObject, response);
55
55
  }
56
- const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, this.getJsonRpcVersion() === "1.1", awsQueryCompatible) ?? "Unknown";
56
+ const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, awsQueryCompatible) ?? "Unknown";
57
57
  this.mixin.compose(this.compositeErrorRegistry, errorIdentifier, this.options.defaultNamespace);
58
58
  const { errorSchema, errorMetadata } = await this.mixin.getErrorSchemaOrThrowBaseException(errorIdentifier, this.options.defaultNamespace, response, dataObject, metadata, awsQueryCompatible ? this.mixin.findQueryCompatibleError : undefined);
59
59
  const ns = NormalizedSchema.of(errorSchema);
@@ -21,7 +21,7 @@ export const parseJsonErrorBody = async (errorBody, context) => {
21
21
  return value;
22
22
  };
23
23
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
24
- const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
24
+ const sanitizeErrorCode = (rawValue) => {
25
25
  let cleanValue = rawValue;
26
26
  if (typeof cleanValue === "number") {
27
27
  cleanValue = cleanValue.toString();
@@ -32,36 +32,36 @@ const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
32
32
  if (cleanValue.indexOf(":") >= 0) {
33
33
  cleanValue = cleanValue.split(":")[0];
34
34
  }
35
- if (removeNamespace && cleanValue.indexOf("#") >= 0) {
35
+ if (cleanValue.indexOf("#") >= 0) {
36
36
  cleanValue = cleanValue.split("#")[1];
37
37
  }
38
38
  return cleanValue;
39
39
  };
40
40
  export const loadRestJsonErrorCode = (output, data) => {
41
- return loadErrorCode(output, data, true, ["header", "code", "type"]);
41
+ return loadErrorCode(output, data, ["header", "code", "type"]);
42
42
  };
43
- export const loadJsonRpcErrorCode = (output, data, removeNamespace, queryCompat = false) => {
44
- return loadErrorCode(output, data, removeNamespace, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
43
+ export const loadJsonRpcErrorCode = (output, data, queryCompat = false) => {
44
+ return loadErrorCode(output, data, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
45
45
  };
46
- const loadErrorCode = ({ headers }, data, removeNamespace, order) => {
46
+ const loadErrorCode = ({ headers }, data, order) => {
47
47
  while (order.length > 0) {
48
48
  const location = order.shift();
49
49
  switch (location) {
50
50
  case "header":
51
51
  const headerKey = findKey(headers ?? {}, "x-amzn-errortype");
52
52
  if (headerKey !== undefined) {
53
- return sanitizeErrorCode(headers[headerKey], removeNamespace);
53
+ return sanitizeErrorCode(headers[headerKey]);
54
54
  }
55
55
  break;
56
56
  case "code":
57
57
  const codeKey = findKey(data ?? {}, "code");
58
58
  if (codeKey && data[codeKey] !== undefined) {
59
- return sanitizeErrorCode(data[codeKey], removeNamespace);
59
+ return sanitizeErrorCode(data[codeKey]);
60
60
  }
61
61
  break;
62
62
  case "type":
63
63
  if (data?.__type !== undefined) {
64
- return sanitizeErrorCode(data.__type, removeNamespace);
64
+ return sanitizeErrorCode(data.__type);
65
65
  }
66
66
  break;
67
67
  }
@@ -14,4 +14,4 @@ export declare const loadRestJsonErrorCode: (output: HttpResponse, data: any) =>
14
14
  /**
15
15
  * @internal
16
16
  */
17
- export declare const loadJsonRpcErrorCode: (output: HttpResponse, data: any, removeNamespace: boolean, queryCompat?: boolean) => string | undefined;
17
+ export declare const loadJsonRpcErrorCode: (output: HttpResponse, data: any, queryCompat?: boolean) => string | undefined;
@@ -14,6 +14,5 @@ export declare const loadRestJsonErrorCode: (
14
14
  export declare const loadJsonRpcErrorCode: (
15
15
  output: HttpResponse,
16
16
  data: any,
17
- removeNamespace: boolean,
18
17
  queryCompat?: boolean
19
18
  ) => string | undefined;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/core",
3
- "version": "3.974.11",
3
+ "version": "3.974.13",
4
4
  "description": "Core functions & classes shared by multiple AWS SDK clients.",
5
5
  "scripts": {
6
6
  "build": "yarn prebuild && yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
@@ -110,12 +110,12 @@
110
110
  },
111
111
  "license": "Apache-2.0",
112
112
  "dependencies": {
113
- "@aws-sdk/types": "^3.973.8",
114
- "@aws-sdk/xml-builder": "^3.972.24",
113
+ "@aws-sdk/types": "^3.973.9",
114
+ "@aws-sdk/xml-builder": "^3.972.25",
115
115
  "@aws/lambda-invoke-store": "^0.2.2",
116
- "@smithy/core": "^3.24.2",
116
+ "@smithy/core": "^3.24.3",
117
117
  "@smithy/signature-v4": "^5.4.2",
118
- "@smithy/types": "^4.14.1",
118
+ "@smithy/types": "^4.14.2",
119
119
  "bowser": "^2.11.0",
120
120
  "tslib": "^2.6.2"
121
121
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/crc64-nvme",
3
- "version": "3.972.8",
3
+ "version": "3.972.9",
4
4
  "description": "A pure JS implementation of CRC64-NVME checksum",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/types": "^4.14.1",
27
+ "@smithy/types": "^4.14.2",
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.972.37",
3
+ "version": "3.972.39",
4
4
  "description": "AWS credential provider that sources credentials from known environment variables",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.974.11",
30
- "@aws-sdk/types": "^3.973.8",
31
- "@smithy/core": "^3.24.2",
32
- "@smithy/types": "^4.14.1",
29
+ "@aws-sdk/core": "^3.974.13",
30
+ "@aws-sdk/types": "^3.973.9",
31
+ "@smithy/core": "^3.24.3",
32
+ "@smithy/types": "^4.14.2",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-http",
3
- "version": "3.972.39",
3
+ "version": "3.972.41",
4
4
  "description": "AWS credential provider for containers and HTTP sources",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -36,12 +36,12 @@
36
36
  },
37
37
  "license": "Apache-2.0",
38
38
  "dependencies": {
39
- "@aws-sdk/core": "^3.974.11",
40
- "@aws-sdk/types": "^3.973.8",
41
- "@smithy/core": "^3.24.2",
42
- "@smithy/fetch-http-handler": "^5.4.2",
43
- "@smithy/node-http-handler": "^4.7.2",
44
- "@smithy/types": "^4.14.1",
39
+ "@aws-sdk/core": "^3.974.13",
40
+ "@aws-sdk/types": "^3.973.9",
41
+ "@smithy/core": "^3.24.3",
42
+ "@smithy/fetch-http-handler": "^5.4.3",
43
+ "@smithy/node-http-handler": "^4.7.3",
44
+ "@smithy/types": "^4.14.2",
45
45
  "tslib": "^2.6.2"
46
46
  },
47
47
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-ini",
3
- "version": "3.972.41",
3
+ "version": "3.972.43",
4
4
  "description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,18 +28,18 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.974.11",
32
- "@aws-sdk/credential-provider-env": "^3.972.37",
33
- "@aws-sdk/credential-provider-http": "^3.972.39",
34
- "@aws-sdk/credential-provider-login": "^3.972.41",
35
- "@aws-sdk/credential-provider-process": "^3.972.37",
36
- "@aws-sdk/credential-provider-sso": "^3.972.41",
37
- "@aws-sdk/credential-provider-web-identity": "^3.972.41",
38
- "@aws-sdk/nested-clients": "^3.997.9",
39
- "@aws-sdk/types": "^3.973.8",
40
- "@smithy/core": "^3.24.2",
31
+ "@aws-sdk/core": "^3.974.13",
32
+ "@aws-sdk/credential-provider-env": "^3.972.39",
33
+ "@aws-sdk/credential-provider-http": "^3.972.41",
34
+ "@aws-sdk/credential-provider-login": "^3.972.43",
35
+ "@aws-sdk/credential-provider-process": "^3.972.39",
36
+ "@aws-sdk/credential-provider-sso": "^3.972.43",
37
+ "@aws-sdk/credential-provider-web-identity": "^3.972.43",
38
+ "@aws-sdk/nested-clients": "^3.997.11",
39
+ "@aws-sdk/types": "^3.973.9",
40
+ "@smithy/core": "^3.24.3",
41
41
  "@smithy/credential-provider-imds": "^4.3.2",
42
- "@smithy/types": "^4.14.1",
42
+ "@smithy/types": "^4.14.2",
43
43
  "tslib": "^2.6.2"
44
44
  },
45
45
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-login",
3
- "version": "3.972.41",
3
+ "version": "3.972.43",
4
4
  "description": "AWS credential provider that sources credentials from aws login cached tokens",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,11 +28,11 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.974.11",
32
- "@aws-sdk/nested-clients": "^3.997.9",
33
- "@aws-sdk/types": "^3.973.8",
34
- "@smithy/core": "^3.24.2",
35
- "@smithy/types": "^4.14.1",
31
+ "@aws-sdk/core": "^3.974.13",
32
+ "@aws-sdk/nested-clients": "^3.997.11",
33
+ "@aws-sdk/types": "^3.973.9",
34
+ "@smithy/core": "^3.24.3",
35
+ "@smithy/types": "^4.14.2",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-node",
3
- "version": "3.972.42",
3
+ "version": "3.972.44",
4
4
  "description": "AWS credential provider that sources credentials from a Node.JS environment. ",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
@@ -31,16 +31,16 @@
31
31
  },
32
32
  "license": "Apache-2.0",
33
33
  "dependencies": {
34
- "@aws-sdk/credential-provider-env": "^3.972.37",
35
- "@aws-sdk/credential-provider-http": "^3.972.39",
36
- "@aws-sdk/credential-provider-ini": "^3.972.41",
37
- "@aws-sdk/credential-provider-process": "^3.972.37",
38
- "@aws-sdk/credential-provider-sso": "^3.972.41",
39
- "@aws-sdk/credential-provider-web-identity": "^3.972.41",
40
- "@aws-sdk/types": "^3.973.8",
41
- "@smithy/core": "^3.24.2",
34
+ "@aws-sdk/credential-provider-env": "^3.972.39",
35
+ "@aws-sdk/credential-provider-http": "^3.972.41",
36
+ "@aws-sdk/credential-provider-ini": "^3.972.43",
37
+ "@aws-sdk/credential-provider-process": "^3.972.39",
38
+ "@aws-sdk/credential-provider-sso": "^3.972.43",
39
+ "@aws-sdk/credential-provider-web-identity": "^3.972.43",
40
+ "@aws-sdk/types": "^3.973.9",
41
+ "@smithy/core": "^3.24.3",
42
42
  "@smithy/credential-provider-imds": "^4.3.2",
43
- "@smithy/types": "^4.14.1",
43
+ "@smithy/types": "^4.14.2",
44
44
  "tslib": "^2.6.2"
45
45
  },
46
46
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-process",
3
- "version": "3.972.37",
3
+ "version": "3.972.39",
4
4
  "description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.974.11",
30
- "@aws-sdk/types": "^3.973.8",
31
- "@smithy/core": "^3.24.2",
32
- "@smithy/types": "^4.14.1",
29
+ "@aws-sdk/core": "^3.974.13",
30
+ "@aws-sdk/types": "^3.973.9",
31
+ "@smithy/core": "^3.24.3",
32
+ "@smithy/types": "^4.14.2",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.972.41",
3
+ "version": "3.972.43",
4
4
  "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,12 +26,12 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.974.11",
30
- "@aws-sdk/nested-clients": "^3.997.9",
31
- "@aws-sdk/token-providers": "3.1048.0",
32
- "@aws-sdk/types": "^3.973.8",
33
- "@smithy/core": "^3.24.2",
34
- "@smithy/types": "^4.14.1",
29
+ "@aws-sdk/core": "^3.974.13",
30
+ "@aws-sdk/nested-clients": "^3.997.11",
31
+ "@aws-sdk/token-providers": "3.1052.0",
32
+ "@aws-sdk/types": "^3.973.9",
33
+ "@smithy/core": "^3.24.3",
34
+ "@smithy/types": "^4.14.2",
35
35
  "tslib": "^2.6.2"
36
36
  },
37
37
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-web-identity",
3
- "version": "3.972.41",
3
+ "version": "3.972.43",
4
4
  "description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -34,11 +34,11 @@
34
34
  },
35
35
  "license": "Apache-2.0",
36
36
  "dependencies": {
37
- "@aws-sdk/core": "^3.974.11",
38
- "@aws-sdk/nested-clients": "^3.997.9",
39
- "@aws-sdk/types": "^3.973.8",
40
- "@smithy/core": "^3.24.2",
41
- "@smithy/types": "^4.14.1",
37
+ "@aws-sdk/core": "^3.974.13",
38
+ "@aws-sdk/nested-clients": "^3.997.11",
39
+ "@aws-sdk/types": "^3.973.9",
40
+ "@smithy/core": "^3.24.3",
41
+ "@smithy/types": "^4.14.2",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-bucket-endpoint",
3
- "version": "3.972.13",
3
+ "version": "3.972.15",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-bucket-endpoint",
@@ -23,10 +23,10 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@aws-sdk/core": "^3.974.11",
27
- "@aws-sdk/types": "^3.973.8",
28
- "@smithy/core": "^3.24.2",
29
- "@smithy/types": "^4.14.1",
26
+ "@aws-sdk/core": "^3.974.13",
27
+ "@aws-sdk/types": "^3.973.9",
28
+ "@smithy/core": "^3.24.3",
29
+ "@smithy/types": "^4.14.2",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-expect-continue",
3
- "version": "3.972.12",
3
+ "version": "3.972.13",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-expect-continue",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.8",
28
- "@smithy/core": "^3.24.2",
29
- "@smithy/types": "^4.14.1",
27
+ "@aws-sdk/types": "^3.973.9",
28
+ "@smithy/core": "^3.24.3",
29
+ "@smithy/types": "^4.14.2",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-flexible-checksums",
3
- "version": "3.974.19",
3
+ "version": "3.974.21",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-flexible-checksums",
@@ -37,15 +37,15 @@
37
37
  "@aws-crypto/crc32": "5.2.0",
38
38
  "@aws-crypto/crc32c": "5.2.0",
39
39
  "@aws-crypto/util": "5.2.0",
40
- "@aws-sdk/core": "^3.974.11",
41
- "@aws-sdk/crc64-nvme": "^3.972.8",
42
- "@aws-sdk/types": "^3.973.8",
43
- "@smithy/core": "^3.24.2",
44
- "@smithy/types": "^4.14.1",
40
+ "@aws-sdk/core": "^3.974.13",
41
+ "@aws-sdk/crc64-nvme": "^3.972.9",
42
+ "@aws-sdk/types": "^3.973.9",
43
+ "@smithy/core": "^3.24.3",
44
+ "@smithy/types": "^4.14.2",
45
45
  "tslib": "^2.6.2"
46
46
  },
47
47
  "devDependencies": {
48
- "@smithy/node-http-handler": "^4.7.2",
48
+ "@smithy/node-http-handler": "^4.7.3",
49
49
  "concurrently": "7.0.0",
50
50
  "downlevel-dts": "0.10.1",
51
51
  "premove": "4.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-location-constraint",
3
- "version": "3.972.10",
3
+ "version": "3.972.11",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-location-constraint",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.8",
28
- "@smithy/types": "^4.14.1",
27
+ "@aws-sdk/types": "^3.973.9",
28
+ "@smithy/types": "^4.14.2",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-ec2",
3
- "version": "3.972.25",
3
+ "version": "3.972.27",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-ec2",
@@ -26,11 +26,11 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.974.11",
30
- "@aws-sdk/types": "^3.973.8",
31
- "@smithy/core": "^3.24.2",
29
+ "@aws-sdk/core": "^3.974.13",
30
+ "@aws-sdk/types": "^3.973.9",
31
+ "@smithy/core": "^3.24.3",
32
32
  "@smithy/signature-v4": "^5.4.2",
33
- "@smithy/types": "^4.14.1",
33
+ "@smithy/types": "^4.14.2",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.972.40",
3
+ "version": "3.972.42",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-s3",
@@ -28,12 +28,12 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.974.11",
32
- "@aws-sdk/signature-v4-multi-region": "^3.996.27",
33
- "@aws-sdk/types": "^3.973.8",
34
- "@smithy/core": "^3.24.2",
31
+ "@aws-sdk/core": "^3.974.13",
32
+ "@aws-sdk/signature-v4-multi-region": "^3.996.28",
33
+ "@aws-sdk/types": "^3.973.9",
34
+ "@smithy/core": "^3.24.3",
35
35
  "@smithy/signature-v4": "^5.4.2",
36
- "@smithy/types": "^4.14.1",
36
+ "@smithy/types": "^4.14.2",
37
37
  "tslib": "^2.6.2"
38
38
  },
39
39
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-sqs",
3
- "version": "3.972.24",
3
+ "version": "3.972.25",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-sqs",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.8",
28
- "@smithy/core": "^3.24.2",
29
- "@smithy/types": "^4.14.1",
27
+ "@aws-sdk/types": "^3.973.9",
28
+ "@smithy/core": "^3.24.3",
29
+ "@smithy/types": "^4.14.2",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-ssec",
3
- "version": "3.972.10",
3
+ "version": "3.972.11",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-ssec",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.8",
28
- "@smithy/types": "^4.14.1",
27
+ "@aws-sdk/types": "^3.973.9",
28
+ "@smithy/types": "^4.14.2",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "engines": {
@@ -80,7 +80,7 @@ const commonParams = {
80
80
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
81
81
  };
82
82
 
83
- var version = "3.997.8";
83
+ var version = "3.997.10";
84
84
  var packageInfo = {
85
85
  version: version};
86
86
 
@@ -76,7 +76,7 @@ const commonParams = {
76
76
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
77
77
  };
78
78
 
79
- var version = "3.997.8";
79
+ var version = "3.997.10";
80
80
  var packageInfo = {
81
81
  version: version};
82
82
 
@@ -76,7 +76,7 @@ const commonParams = {
76
76
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
77
77
  };
78
78
 
79
- var version = "3.997.8";
79
+ var version = "3.997.10";
80
80
  var packageInfo = {
81
81
  version: version};
82
82
 
@@ -76,7 +76,7 @@ const commonParams = {
76
76
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
77
77
  };
78
78
 
79
- var version = "3.997.8";
79
+ var version = "3.997.10";
80
80
  var packageInfo = {
81
81
  version: version};
82
82
 
@@ -319,7 +319,7 @@ const commonParams = {
319
319
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
320
320
  };
321
321
 
322
- var version = "3.997.8";
322
+ var version = "3.997.10";
323
323
  var packageInfo = {
324
324
  version: version};
325
325
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/nested-clients",
3
- "version": "3.997.9",
3
+ "version": "3.997.11",
4
4
  "description": "Nested clients for AWS SDK packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,13 +29,13 @@
29
29
  "dependencies": {
30
30
  "@aws-crypto/sha256-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-js": "5.2.0",
32
- "@aws-sdk/core": "^3.974.11",
33
- "@aws-sdk/signature-v4-multi-region": "^3.996.27",
34
- "@aws-sdk/types": "^3.973.8",
35
- "@smithy/core": "^3.24.2",
36
- "@smithy/fetch-http-handler": "^5.4.2",
37
- "@smithy/node-http-handler": "^4.7.2",
38
- "@smithy/types": "^4.14.1",
32
+ "@aws-sdk/core": "^3.974.13",
33
+ "@aws-sdk/signature-v4-multi-region": "^3.996.28",
34
+ "@aws-sdk/types": "^3.973.9",
35
+ "@smithy/core": "^3.24.3",
36
+ "@smithy/fetch-http-handler": "^5.4.3",
37
+ "@smithy/node-http-handler": "^4.7.3",
38
+ "@smithy/types": "^4.14.2",
39
39
  "tslib": "^2.6.2"
40
40
  },
41
41
  "devDependencies": {