@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
@@ -62,6 +62,7 @@ import {
62
62
  NatGatewayAddress,
63
63
  OperatorResponse,
64
64
  RouteServerAssociation,
65
+ Subnet,
65
66
  SubnetIpv6CidrBlockAssociation,
66
67
  Tag,
67
68
  TagSpecification,
@@ -114,6 +115,16 @@ import {
114
115
  ProductCode,
115
116
  } from "./models_3";
116
117
  import { RegisteredInstance } from "./models_4";
118
+ export interface DescribeSubnetsResult {
119
+ NextToken?: string | undefined;
120
+ Subnets?: Subnet[] | undefined;
121
+ }
122
+ export interface DescribeTagsRequest {
123
+ DryRun?: boolean | undefined;
124
+ Filters?: Filter[] | undefined;
125
+ MaxResults?: number | undefined;
126
+ NextToken?: string | undefined;
127
+ }
117
128
  export interface TagDescription {
118
129
  Key?: string | undefined;
119
130
  ResourceId?: string | undefined;
@@ -461,6 +472,7 @@ export interface VolumeModification {
461
472
  Progress?: number | undefined;
462
473
  StartTime?: Date | undefined;
463
474
  EndTime?: Date | undefined;
475
+ Operator?: OperatorResponse | undefined;
464
476
  }
465
477
  export interface DescribeVolumesModificationsResult {
466
478
  NextToken?: string | undefined;
@@ -1652,13 +1664,3 @@ export interface CapacityManagerMonitoredTagKey {
1652
1664
  CapacityManagerProvided?: boolean | undefined;
1653
1665
  EarliestDatapointTimestamp?: Date | undefined;
1654
1666
  }
1655
- export interface GetCapacityManagerMonitoredTagKeysResult {
1656
- CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
1657
- NextToken?: string | undefined;
1658
- }
1659
- export interface GetCapacityReservationUsageRequest {
1660
- CapacityReservationId: string | undefined;
1661
- NextToken?: string | undefined;
1662
- MaxResults?: number | undefined;
1663
- DryRun?: boolean | undefined;
1664
- }
@@ -62,8 +62,6 @@ import {
62
62
  PaymentOption,
63
63
  PermissionGroup,
64
64
  PlatformValues,
65
- PublicIpDnsOption,
66
- RouteServerPersistRoutesAction,
67
65
  RouteServerRouteInstallationStatus,
68
66
  RouteServerRouteStatus,
69
67
  SelfServicePortal,
@@ -149,9 +147,21 @@ import {
149
147
  import {
150
148
  InstanceMetadataOptionsResponse,
151
149
  InstanceStatusEvent,
152
- ReservedInstancesConfiguration,
153
150
  } from "./models_4";
154
- import { RouteServerPropagation } from "./models_5";
151
+ import {
152
+ CapacityManagerMonitoredTagKey,
153
+ RouteServerPropagation,
154
+ } from "./models_5";
155
+ export interface GetCapacityManagerMonitoredTagKeysResult {
156
+ CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
157
+ NextToken?: string | undefined;
158
+ }
159
+ export interface GetCapacityReservationUsageRequest {
160
+ CapacityReservationId: string | undefined;
161
+ NextToken?: string | undefined;
162
+ MaxResults?: number | undefined;
163
+ DryRun?: boolean | undefined;
164
+ }
155
165
  export interface InstanceUsage {
156
166
  AccountId?: string | undefined;
157
167
  UsedInstanceCount?: number | undefined;
@@ -1517,11 +1527,15 @@ export interface InstanceBlockDeviceMappingSpecification {
1517
1527
  VirtualName?: string | undefined;
1518
1528
  NoDevice?: string | undefined;
1519
1529
  }
1530
+ export interface EnclaveOptionsRequest {
1531
+ Enabled?: boolean | undefined;
1532
+ }
1520
1533
  export interface BlobAttributeValue {
1521
1534
  Value?: Uint8Array | undefined;
1522
1535
  }
1523
1536
  export interface ModifyInstanceAttributeRequest {
1524
1537
  SourceDestCheck?: AttributeBooleanValue | undefined;
1538
+ EnclaveOptions?: EnclaveOptionsRequest | undefined;
1525
1539
  DisableApiStop?: AttributeBooleanValue | undefined;
1526
1540
  DryRun?: boolean | undefined;
1527
1541
  InstanceId: string | undefined;
@@ -1726,6 +1740,14 @@ export interface ModifyIpamPoolRequest {
1726
1740
  export interface ModifyIpamPoolResult {
1727
1741
  IpamPool?: IpamPool | undefined;
1728
1742
  }
1743
+ export interface ModifyIpamPoolAllocationRequest {
1744
+ DryRun?: boolean | undefined;
1745
+ IpamPoolAllocationId: string | undefined;
1746
+ Description?: string | undefined;
1747
+ }
1748
+ export interface ModifyIpamPoolAllocationResult {
1749
+ IpamPoolAllocation?: IpamPoolAllocation | undefined;
1750
+ }
1729
1751
  export interface ModifyIpamPrefixListResolverRequest {
1730
1752
  DryRun?: boolean | undefined;
1731
1753
  IpamPrefixListResolverId: string | undefined;
@@ -1861,26 +1883,3 @@ export interface ModifyPrivateDnsNameOptionsRequest {
1861
1883
  export interface ModifyPrivateDnsNameOptionsResult {
1862
1884
  Return?: boolean | undefined;
1863
1885
  }
1864
- export interface ModifyPublicIpDnsNameOptionsRequest {
1865
- NetworkInterfaceId: string | undefined;
1866
- HostnameType: PublicIpDnsOption | undefined;
1867
- DryRun?: boolean | undefined;
1868
- }
1869
- export interface ModifyPublicIpDnsNameOptionsResult {
1870
- Successful?: boolean | undefined;
1871
- }
1872
- export interface ModifyReservedInstancesRequest {
1873
- ReservedInstancesIds: string[] | undefined;
1874
- ClientToken?: string | undefined;
1875
- TargetConfigurations: ReservedInstancesConfiguration[] | undefined;
1876
- }
1877
- export interface ModifyReservedInstancesResult {
1878
- ReservedInstancesModificationId?: string | undefined;
1879
- }
1880
- export interface ModifyRouteServerRequest {
1881
- RouteServerId: string | undefined;
1882
- PersistRoutes?: RouteServerPersistRoutesAction | undefined;
1883
- PersistRoutesDuration?: number | undefined;
1884
- SnsNotificationsEnabled?: boolean | undefined;
1885
- DryRun?: boolean | undefined;
1886
- }
@@ -35,10 +35,12 @@ import {
35
35
  NestedVirtualizationSpecification,
36
36
  OperationType,
37
37
  PayerResponsibility,
38
+ PublicIpDnsOption,
38
39
  ReportInstanceReasonCodes,
39
40
  ReportStatusType,
40
41
  ResetFpgaImageAttributeName,
41
42
  ResetImageAttributeName,
43
+ RouteServerPersistRoutesAction,
42
44
  RuleAction,
43
45
  SecondaryInterfaceType,
44
46
  SecurityGroupReferencingSupportValue,
@@ -144,6 +146,7 @@ import {
144
146
  NetworkInsightsAccessScopeAnalysis,
145
147
  NetworkInsightsAnalysis,
146
148
  PublicIpv4PoolRange,
149
+ ReservedInstancesConfiguration,
147
150
  RunInstancesMonitoringEnabled,
148
151
  ScheduledInstance,
149
152
  SpotFleetRequestConfigData,
@@ -156,7 +159,34 @@ import {
156
159
  VolumeModification,
157
160
  VpcBlockPublicAccessOptions,
158
161
  } from "./models_5";
159
- import { CapacityReservationSpecification, Purchase } from "./models_6";
162
+ import {
163
+ CapacityReservationSpecification,
164
+ EnclaveOptionsRequest,
165
+ Purchase,
166
+ } from "./models_6";
167
+ export interface ModifyPublicIpDnsNameOptionsRequest {
168
+ NetworkInterfaceId: string | undefined;
169
+ HostnameType: PublicIpDnsOption | undefined;
170
+ DryRun?: boolean | undefined;
171
+ }
172
+ export interface ModifyPublicIpDnsNameOptionsResult {
173
+ Successful?: boolean | undefined;
174
+ }
175
+ export interface ModifyReservedInstancesRequest {
176
+ ReservedInstancesIds: string[] | undefined;
177
+ ClientToken?: string | undefined;
178
+ TargetConfigurations: ReservedInstancesConfiguration[] | undefined;
179
+ }
180
+ export interface ModifyReservedInstancesResult {
181
+ ReservedInstancesModificationId?: string | undefined;
182
+ }
183
+ export interface ModifyRouteServerRequest {
184
+ RouteServerId: string | undefined;
185
+ PersistRoutes?: RouteServerPersistRoutesAction | undefined;
186
+ PersistRoutesDuration?: number | undefined;
187
+ SnsNotificationsEnabled?: boolean | undefined;
188
+ DryRun?: boolean | undefined;
189
+ }
160
190
  export interface ModifyRouteServerResult {
161
191
  RouteServer?: RouteServer | undefined;
162
192
  }
@@ -1337,9 +1367,6 @@ export interface ElasticInferenceAccelerator {
1337
1367
  Type: string | undefined;
1338
1368
  Count?: number | undefined;
1339
1369
  }
1340
- export interface EnclaveOptionsRequest {
1341
- Enabled?: boolean | undefined;
1342
- }
1343
1370
  export interface HibernationOptionsRequest {
1344
1371
  Configured?: boolean | undefined;
1345
1372
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ DescribeIpamPoolAllocationsCommandInput,
4
+ DescribeIpamPoolAllocationsCommandOutput,
5
+ } from "../commands/DescribeIpamPoolAllocationsCommand";
6
+ import { EC2PaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateDescribeIpamPoolAllocations: (
8
+ config: EC2PaginationConfiguration,
9
+ input: DescribeIpamPoolAllocationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<DescribeIpamPoolAllocationsCommandOutput>;
@@ -48,6 +48,7 @@ export * from "./DescribeInstanceTopologyPaginator";
48
48
  export * from "./DescribeInstanceTypeOfferingsPaginator";
49
49
  export * from "./DescribeInstanceTypesPaginator";
50
50
  export * from "./DescribeInternetGatewaysPaginator";
51
+ export * from "./DescribeIpamPoolAllocationsPaginator";
51
52
  export * from "./DescribeIpamPoolsPaginator";
52
53
  export * from "./DescribeIpamPrefixListResolversPaginator";
53
54
  export * from "./DescribeIpamPrefixListResolverTargetsPaginator";
@@ -829,6 +829,8 @@ export declare var DescribeIpamExternalResourceVerificationTokensRequest$: Stati
829
829
  export declare var DescribeIpamExternalResourceVerificationTokensResult$: StaticStructureSchema;
830
830
  export declare var DescribeIpamPoliciesRequest$: StaticStructureSchema;
831
831
  export declare var DescribeIpamPoliciesResult$: StaticStructureSchema;
832
+ export declare var DescribeIpamPoolAllocationsRequest$: StaticStructureSchema;
833
+ export declare var DescribeIpamPoolAllocationsResult$: StaticStructureSchema;
832
834
  export declare var DescribeIpamPoolsRequest$: StaticStructureSchema;
833
835
  export declare var DescribeIpamPoolsResult$: StaticStructureSchema;
834
836
  export declare var DescribeIpamPrefixListResolversRequest$: StaticStructureSchema;
@@ -1741,6 +1743,8 @@ export declare var ModifyInstancePlacementRequest$: StaticStructureSchema;
1741
1743
  export declare var ModifyInstancePlacementResult$: StaticStructureSchema;
1742
1744
  export declare var ModifyIpamPolicyAllocationRulesRequest$: StaticStructureSchema;
1743
1745
  export declare var ModifyIpamPolicyAllocationRulesResult$: StaticStructureSchema;
1746
+ export declare var ModifyIpamPoolAllocationRequest$: StaticStructureSchema;
1747
+ export declare var ModifyIpamPoolAllocationResult$: StaticStructureSchema;
1744
1748
  export declare var ModifyIpamPoolRequest$: StaticStructureSchema;
1745
1749
  export declare var ModifyIpamPoolResult$: StaticStructureSchema;
1746
1750
  export declare var ModifyIpamPrefixListResolverRequest$: StaticStructureSchema;
@@ -2724,6 +2728,7 @@ export declare var DescribeInternetGateways$: StaticOperationSchema;
2724
2728
  export declare var DescribeIpamByoasn$: StaticOperationSchema;
2725
2729
  export declare var DescribeIpamExternalResourceVerificationTokens$: StaticOperationSchema;
2726
2730
  export declare var DescribeIpamPolicies$: StaticOperationSchema;
2731
+ export declare var DescribeIpamPoolAllocations$: StaticOperationSchema;
2727
2732
  export declare var DescribeIpamPools$: StaticOperationSchema;
2728
2733
  export declare var DescribeIpamPrefixListResolvers$: StaticOperationSchema;
2729
2734
  export declare var DescribeIpamPrefixListResolverTargets$: StaticOperationSchema;
@@ -3017,6 +3022,7 @@ export declare var ModifyInstancePlacement$: StaticOperationSchema;
3017
3022
  export declare var ModifyIpam$: StaticOperationSchema;
3018
3023
  export declare var ModifyIpamPolicyAllocationRules$: StaticOperationSchema;
3019
3024
  export declare var ModifyIpamPool$: StaticOperationSchema;
3025
+ export declare var ModifyIpamPoolAllocation$: StaticOperationSchema;
3020
3026
  export declare var ModifyIpamPrefixListResolver$: StaticOperationSchema;
3021
3027
  export declare var ModifyIpamPrefixListResolverTarget$: StaticOperationSchema;
3022
3028
  export declare var ModifyIpamResourceCidr$: StaticOperationSchema;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-ec2",
@@ -25,18 +25,18 @@
25
25
  "dependencies": {
26
26
  "@aws-crypto/sha256-browser": "5.2.0",
27
27
  "@aws-crypto/sha256-js": "5.2.0",
28
- "@aws-sdk/core": "^3.974.11",
29
- "@aws-sdk/credential-provider-node": "^3.972.42",
30
- "@aws-sdk/middleware-sdk-ec2": "^3.972.25",
31
- "@aws-sdk/types": "^3.973.8",
32
- "@smithy/core": "^3.24.2",
33
- "@smithy/fetch-http-handler": "^5.4.2",
34
- "@smithy/node-http-handler": "^4.7.2",
35
- "@smithy/types": "^4.14.1",
28
+ "@aws-sdk/core": "^3.974.13",
29
+ "@aws-sdk/credential-provider-node": "^3.972.44",
30
+ "@aws-sdk/middleware-sdk-ec2": "^3.972.27",
31
+ "@aws-sdk/types": "^3.973.9",
32
+ "@smithy/core": "^3.24.3",
33
+ "@smithy/fetch-http-handler": "^5.4.3",
34
+ "@smithy/node-http-handler": "^4.7.3",
35
+ "@smithy/types": "^4.14.2",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "devDependencies": {
39
- "@smithy/snapshot-testing": "^2.1.2",
39
+ "@smithy/snapshot-testing": "^2.1.3",
40
40
  "@tsconfig/node20": "20.1.8",
41
41
  "@types/node": "^20.14.8",
42
42
  "concurrently": "7.0.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iam",
3
3
  "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-iam",
@@ -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.11",
31
- "@aws-sdk/credential-provider-node": "^3.972.42",
32
- "@aws-sdk/types": "^3.973.8",
33
- "@smithy/core": "^3.24.2",
34
- "@smithy/fetch-http-handler": "^5.4.2",
35
- "@smithy/node-http-handler": "^4.7.2",
36
- "@smithy/types": "^4.14.1",
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",
37
37
  "tslib": "^2.6.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@smithy/snapshot-testing": "^2.1.2",
40
+ "@smithy/snapshot-testing": "^2.1.3",
41
41
  "@tsconfig/node20": "20.1.8",
42
42
  "@types/node": "^20.14.8",
43
43
  "concurrently": "7.0.0",
@@ -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.1048.0",
4
+ "version": "3.1053.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.11",
31
- "@aws-sdk/credential-provider-node": "^3.972.42",
32
- "@aws-sdk/types": "^3.973.8",
33
- "@smithy/core": "^3.24.2",
34
- "@smithy/fetch-http-handler": "^5.4.2",
35
- "@smithy/node-http-handler": "^4.7.2",
36
- "@smithy/types": "^4.14.1",
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",
37
37
  "tslib": "^2.6.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@smithy/snapshot-testing": "^2.1.2",
40
+ "@smithy/snapshot-testing": "^2.1.3",
41
41
  "@tsconfig/node20": "20.1.8",
42
42
  "@types/node": "^20.14.8",
43
43
  "concurrently": "7.0.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3",
3
3
  "description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-s3",
@@ -30,25 +30,25 @@
30
30
  "@aws-crypto/sha1-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-browser": "5.2.0",
32
32
  "@aws-crypto/sha256-js": "5.2.0",
33
- "@aws-sdk/core": "^3.974.11",
34
- "@aws-sdk/credential-provider-node": "^3.972.42",
35
- "@aws-sdk/middleware-bucket-endpoint": "^3.972.13",
36
- "@aws-sdk/middleware-expect-continue": "^3.972.12",
37
- "@aws-sdk/middleware-flexible-checksums": "^3.974.19",
38
- "@aws-sdk/middleware-location-constraint": "^3.972.10",
39
- "@aws-sdk/middleware-sdk-s3": "^3.972.40",
40
- "@aws-sdk/middleware-ssec": "^3.972.10",
41
- "@aws-sdk/signature-v4-multi-region": "^3.996.27",
42
- "@aws-sdk/types": "^3.973.8",
43
- "@smithy/core": "^3.24.2",
44
- "@smithy/fetch-http-handler": "^5.4.2",
45
- "@smithy/node-http-handler": "^4.7.2",
46
- "@smithy/types": "^4.14.1",
33
+ "@aws-sdk/core": "^3.974.13",
34
+ "@aws-sdk/credential-provider-node": "^3.972.44",
35
+ "@aws-sdk/middleware-bucket-endpoint": "^3.972.15",
36
+ "@aws-sdk/middleware-expect-continue": "^3.972.13",
37
+ "@aws-sdk/middleware-flexible-checksums": "^3.974.21",
38
+ "@aws-sdk/middleware-location-constraint": "^3.972.11",
39
+ "@aws-sdk/middleware-sdk-s3": "^3.972.42",
40
+ "@aws-sdk/middleware-ssec": "^3.972.11",
41
+ "@aws-sdk/signature-v4-multi-region": "^3.996.28",
42
+ "@aws-sdk/types": "^3.973.9",
43
+ "@smithy/core": "^3.24.3",
44
+ "@smithy/fetch-http-handler": "^5.4.3",
45
+ "@smithy/node-http-handler": "^4.7.3",
46
+ "@smithy/types": "^4.14.2",
47
47
  "tslib": "^2.6.2"
48
48
  },
49
49
  "devDependencies": {
50
- "@aws-sdk/signature-v4-crt": "3.1048.0",
51
- "@smithy/snapshot-testing": "^2.1.2",
50
+ "@aws-sdk/signature-v4-crt": "3.1053.0",
51
+ "@smithy/snapshot-testing": "^2.1.3",
52
52
  "@tsconfig/node20": "20.1.8",
53
53
  "@types/node": "^20.14.8",
54
54
  "concurrently": "7.0.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sns",
3
3
  "description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-sns",
@@ -23,13 +23,13 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.974.11",
27
- "@aws-sdk/credential-provider-node": "^3.972.42",
28
- "@aws-sdk/types": "^3.973.8",
29
- "@smithy/core": "^3.24.2",
30
- "@smithy/fetch-http-handler": "^5.4.2",
31
- "@smithy/node-http-handler": "^4.7.2",
32
- "@smithy/types": "^4.14.1",
26
+ "@aws-sdk/core": "^3.974.13",
27
+ "@aws-sdk/credential-provider-node": "^3.972.44",
28
+ "@aws-sdk/types": "^3.973.9",
29
+ "@smithy/core": "^3.24.3",
30
+ "@smithy/fetch-http-handler": "^5.4.3",
31
+ "@smithy/node-http-handler": "^4.7.3",
32
+ "@smithy/types": "^4.14.2",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sqs",
3
3
  "description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-sqs",
@@ -29,18 +29,18 @@
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/credential-provider-node": "^3.972.42",
34
- "@aws-sdk/middleware-sdk-sqs": "^3.972.24",
35
- "@aws-sdk/types": "^3.973.8",
36
- "@smithy/core": "^3.24.2",
37
- "@smithy/fetch-http-handler": "^5.4.2",
38
- "@smithy/node-http-handler": "^4.7.2",
39
- "@smithy/types": "^4.14.1",
32
+ "@aws-sdk/core": "^3.974.13",
33
+ "@aws-sdk/credential-provider-node": "^3.972.44",
34
+ "@aws-sdk/middleware-sdk-sqs": "^3.972.25",
35
+ "@aws-sdk/types": "^3.973.9",
36
+ "@smithy/core": "^3.24.3",
37
+ "@smithy/fetch-http-handler": "^5.4.3",
38
+ "@smithy/node-http-handler": "^4.7.3",
39
+ "@smithy/types": "^4.14.2",
40
40
  "tslib": "^2.6.2"
41
41
  },
42
42
  "devDependencies": {
43
- "@smithy/snapshot-testing": "^2.1.2",
43
+ "@smithy/snapshot-testing": "^2.1.3",
44
44
  "@tsconfig/node20": "20.1.8",
45
45
  "@types/node": "^20.14.8",
46
46
  "concurrently": "7.0.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm",
3
3
  "description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
4
- "version": "3.1048.0",
4
+ "version": "3.1053.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-ssm",
@@ -23,13 +23,13 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.974.11",
27
- "@aws-sdk/credential-provider-node": "^3.972.42",
28
- "@aws-sdk/types": "^3.973.8",
29
- "@smithy/core": "^3.24.2",
30
- "@smithy/fetch-http-handler": "^5.4.2",
31
- "@smithy/node-http-handler": "^4.7.2",
32
- "@smithy/types": "^4.14.1",
26
+ "@aws-sdk/core": "^3.974.13",
27
+ "@aws-sdk/credential-provider-node": "^3.972.44",
28
+ "@aws-sdk/types": "^3.973.9",
29
+ "@smithy/core": "^3.24.3",
30
+ "@smithy/fetch-http-handler": "^5.4.3",
31
+ "@smithy/node-http-handler": "^4.7.3",
32
+ "@smithy/types": "^4.14.2",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -683,7 +683,7 @@ const parseJsonErrorBody = async (errorBody, context) => {
683
683
  return value;
684
684
  };
685
685
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
686
- const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
686
+ const sanitizeErrorCode = (rawValue) => {
687
687
  let cleanValue = rawValue;
688
688
  if (typeof cleanValue === "number") {
689
689
  cleanValue = cleanValue.toString();
@@ -694,36 +694,36 @@ const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
694
694
  if (cleanValue.indexOf(":") >= 0) {
695
695
  cleanValue = cleanValue.split(":")[0];
696
696
  }
697
- if (removeNamespace && cleanValue.indexOf("#") >= 0) {
697
+ if (cleanValue.indexOf("#") >= 0) {
698
698
  cleanValue = cleanValue.split("#")[1];
699
699
  }
700
700
  return cleanValue;
701
701
  };
702
702
  const loadRestJsonErrorCode = (output, data) => {
703
- return loadErrorCode(output, data, true, ["header", "code", "type"]);
703
+ return loadErrorCode(output, data, ["header", "code", "type"]);
704
704
  };
705
- const loadJsonRpcErrorCode = (output, data, removeNamespace, queryCompat = false) => {
706
- return loadErrorCode(output, data, removeNamespace, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
705
+ const loadJsonRpcErrorCode = (output, data, queryCompat = false) => {
706
+ return loadErrorCode(output, data, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
707
707
  };
708
- const loadErrorCode = ({ headers }, data, removeNamespace, order) => {
708
+ const loadErrorCode = ({ headers }, data, order) => {
709
709
  while (order.length > 0) {
710
710
  const location = order.shift();
711
711
  switch (location) {
712
712
  case "header":
713
713
  const headerKey = findKey(headers ?? {}, "x-amzn-errortype");
714
714
  if (headerKey !== undefined) {
715
- return sanitizeErrorCode(headers[headerKey], removeNamespace);
715
+ return sanitizeErrorCode(headers[headerKey]);
716
716
  }
717
717
  break;
718
718
  case "code":
719
719
  const codeKey = findKey(data ?? {}, "code");
720
720
  if (codeKey && data[codeKey] !== undefined) {
721
- return sanitizeErrorCode(data[codeKey], removeNamespace);
721
+ return sanitizeErrorCode(data[codeKey]);
722
722
  }
723
723
  break;
724
724
  case "type":
725
725
  if (data?.__type !== undefined) {
726
- return sanitizeErrorCode(data.__type, removeNamespace);
726
+ return sanitizeErrorCode(data.__type);
727
727
  }
728
728
  break;
729
729
  }
@@ -1164,7 +1164,7 @@ class AwsJsonRpcProtocol extends protocols.RpcProtocol {
1164
1164
  if (awsQueryCompatible) {
1165
1165
  this.mixin.setQueryCompatError(dataObject, response);
1166
1166
  }
1167
- const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, this.getJsonRpcVersion() === "1.1", awsQueryCompatible) ?? "Unknown";
1167
+ const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, awsQueryCompatible) ?? "Unknown";
1168
1168
  this.mixin.compose(this.compositeErrorRegistry, errorIdentifier, this.options.defaultNamespace);
1169
1169
  const { errorSchema, errorMetadata } = await this.mixin.getErrorSchemaOrThrowBaseException(errorIdentifier, this.options.defaultNamespace, response, dataObject, metadata, awsQueryCompatible ? this.mixin.findQueryCompatibleError : undefined);
1170
1170
  const ns = schema.NormalizedSchema.of(errorSchema);
@@ -321,7 +321,7 @@ const parseJsonErrorBody = async (errorBody, context) => {
321
321
  return value;
322
322
  };
323
323
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
324
- const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
324
+ const sanitizeErrorCode = (rawValue) => {
325
325
  let cleanValue = rawValue;
326
326
  if (typeof cleanValue === "number") {
327
327
  cleanValue = cleanValue.toString();
@@ -332,36 +332,36 @@ const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
332
332
  if (cleanValue.indexOf(":") >= 0) {
333
333
  cleanValue = cleanValue.split(":")[0];
334
334
  }
335
- if (removeNamespace && cleanValue.indexOf("#") >= 0) {
335
+ if (cleanValue.indexOf("#") >= 0) {
336
336
  cleanValue = cleanValue.split("#")[1];
337
337
  }
338
338
  return cleanValue;
339
339
  };
340
340
  const loadRestJsonErrorCode = (output, data) => {
341
- return loadErrorCode(output, data, true, ["header", "code", "type"]);
341
+ return loadErrorCode(output, data, ["header", "code", "type"]);
342
342
  };
343
- const loadJsonRpcErrorCode = (output, data, removeNamespace, queryCompat = false) => {
344
- return loadErrorCode(output, data, removeNamespace, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
343
+ const loadJsonRpcErrorCode = (output, data, queryCompat = false) => {
344
+ return loadErrorCode(output, data, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
345
345
  };
346
- const loadErrorCode = ({ headers }, data, removeNamespace, order) => {
346
+ const loadErrorCode = ({ headers }, data, order) => {
347
347
  while (order.length > 0) {
348
348
  const location = order.shift();
349
349
  switch (location) {
350
350
  case "header":
351
351
  const headerKey = findKey(headers ?? {}, "x-amzn-errortype");
352
352
  if (headerKey !== undefined) {
353
- return sanitizeErrorCode(headers[headerKey], removeNamespace);
353
+ return sanitizeErrorCode(headers[headerKey]);
354
354
  }
355
355
  break;
356
356
  case "code":
357
357
  const codeKey = findKey(data ?? {}, "code");
358
358
  if (codeKey && data[codeKey] !== undefined) {
359
- return sanitizeErrorCode(data[codeKey], removeNamespace);
359
+ return sanitizeErrorCode(data[codeKey]);
360
360
  }
361
361
  break;
362
362
  case "type":
363
363
  if (data?.__type !== undefined) {
364
- return sanitizeErrorCode(data.__type, removeNamespace);
364
+ return sanitizeErrorCode(data.__type);
365
365
  }
366
366
  break;
367
367
  }
@@ -802,7 +802,7 @@ class AwsJsonRpcProtocol extends protocols.RpcProtocol {
802
802
  if (awsQueryCompatible) {
803
803
  this.mixin.setQueryCompatError(dataObject, response);
804
804
  }
805
- const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, this.getJsonRpcVersion() === "1.1", awsQueryCompatible) ?? "Unknown";
805
+ const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, awsQueryCompatible) ?? "Unknown";
806
806
  this.mixin.compose(this.compositeErrorRegistry, errorIdentifier, this.options.defaultNamespace);
807
807
  const { errorSchema, errorMetadata } = await this.mixin.getErrorSchemaOrThrowBaseException(errorIdentifier, this.options.defaultNamespace, response, dataObject, metadata, awsQueryCompatible ? this.mixin.findQueryCompatibleError : undefined);
808
808
  const ns = schema.NormalizedSchema.of(errorSchema);