@cdklabs/cdk-ssm-documents 0.0.63 → 0.0.65

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 (883) 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/{middleware-ssec → checksums}/LICENSE +1 -1
  117. package/node_modules/@aws-sdk/checksums/README.md +6 -0
  118. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +547 -0
  119. package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/selectChecksumAlgorithmFunction.js +2 -1
  120. package/node_modules/@aws-sdk/checksums/dist-es/index.js +8 -0
  121. package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +11 -0
  122. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +33 -0
  123. package/node_modules/@aws-sdk/{middleware-ssec → checksums}/package.json +33 -17
  124. package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +1 -1
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +1 -1
  129. package/node_modules/@aws-sdk/client-cloudformation/package.json +10 -10
  130. package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
  131. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +42 -0
  132. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +75 -30
  133. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +77 -4
  134. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
  135. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
  136. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
  137. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
  138. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
  139. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
  140. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
  141. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
  142. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
  143. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
  144. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
  145. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
  146. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
  147. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
  148. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
  149. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
  150. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
  151. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
  152. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
  153. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
  154. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
  155. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
  156. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
  157. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
  158. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  159. package/node_modules/@aws-sdk/client-cloudwatch/package.json +16 -16
  160. package/node_modules/@aws-sdk/client-ec2/README.md +28 -0
  161. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +75 -0
  162. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +280 -82
  163. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +8 -0
  164. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
  165. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +16 -0
  166. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +16 -0
  167. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
  168. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +4 -0
  169. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +16 -0
  170. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +218 -21
  171. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +29 -0
  172. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +6 -2
  173. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +1 -1
  174. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +1 -1
  175. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +1 -1
  176. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +1 -1
  177. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +1 -1
  178. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
  179. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +1 -1
  181. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -2
  182. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +1 -1
  183. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
  184. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -1
  185. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +1 -1
  186. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +5 -5
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +117 -0
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -3
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -1
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +1 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +1 -1
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +1 -1
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +9 -1
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +1 -1
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +1 -1
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +1 -1
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +1 -1
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +1 -1
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +1 -1
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +1 -1
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +1 -1
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +1 -1
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +1 -1
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +1 -1
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +1 -1
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +1 -1
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +1 -1
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +1 -1
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +1 -1
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +1 -1
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +1 -1
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +1 -1
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +1 -1
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -1
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -1
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +1 -1
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +1 -1
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +1 -1
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +1 -1
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +1 -1
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +3 -2
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +2 -2
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +1 -1
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +1 -1
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +1 -1
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +1 -1
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +1 -1
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +1 -1
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +1 -1
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +1 -1
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -1
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +1 -1
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +1 -1
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +1 -1
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +1 -1
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +1 -1
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +1 -1
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +1 -1
  261. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +1 -1
  262. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -1
  263. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +1 -1
  264. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
  265. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -1
  266. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +1 -1
  267. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +1 -1
  268. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +1 -1
  269. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
  270. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +1 -1
  271. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +1 -1
  272. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +1 -1
  273. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +1 -1
  275. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
  276. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  277. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  278. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
  279. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +1 -1
  280. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +1 -1
  281. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +1 -2
  282. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +119 -0
  283. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +2 -2
  284. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
  285. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
  286. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  287. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
  288. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
  289. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
  290. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  291. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
  292. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
  293. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  294. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -1
  295. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
  296. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +1 -2
  297. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
  298. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
  299. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
  300. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +1 -1
  301. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  302. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -1
  303. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
  304. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +1 -2
  305. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +1 -1
  306. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  307. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +1 -1
  308. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
  309. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
  310. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
  311. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  312. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  313. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -1
  314. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
  315. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
  316. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
  317. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
  318. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +4 -4
  319. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +1 -1
  320. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -3
  321. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +1 -1
  322. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +1 -1
  323. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
  324. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
  325. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +1 -1
  326. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +1 -1
  327. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
  328. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -1
  329. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +4 -0
  330. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +40 -0
  331. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +196 -207
  332. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +237 -356
  333. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +354 -140
  334. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +249 -434
  335. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +2348 -2496
  336. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +907 -861
  337. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +580 -384
  338. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +385 -7
  339. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +18 -0
  340. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +81 -0
  341. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +24 -0
  342. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
  343. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +53 -0
  344. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
  345. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +1 -1
  346. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
  347. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +1 -1
  348. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
  349. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
  350. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  351. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
  352. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +1 -1
  353. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +1 -1
  354. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +4 -2
  355. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +53 -0
  356. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  357. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
  358. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
  359. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
  360. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  361. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -1
  362. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
  363. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +4 -2
  364. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
  365. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  366. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -1
  367. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
  368. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +4 -2
  369. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
  370. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  371. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  372. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +1 -1
  373. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
  374. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
  375. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
  376. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +4 -0
  377. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +22 -0
  378. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +45 -52
  379. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +60 -74
  380. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +79 -34
  381. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +61 -90
  382. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +92 -87
  383. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +98 -110
  384. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +109 -92
  385. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +89 -3
  386. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
  387. package/node_modules/@aws-sdk/client-ec2/package.json +16 -14
  388. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
  389. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
  390. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
  391. package/node_modules/@aws-sdk/client-iam/package.json +15 -15
  392. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +5 -0
  393. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +20 -13
  394. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +4 -0
  395. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +16 -9
  396. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +12 -0
  397. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
  398. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -0
  399. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  400. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +6 -0
  401. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +12 -0
  402. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +18 -0
  403. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +32 -1
  404. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +1 -0
  405. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +6 -0
  406. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +8 -0
  407. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  408. package/node_modules/@aws-sdk/client-lambda/package.json +11 -11
  409. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +85 -88
  410. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +3 -4
  411. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +2 -2
  412. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -2
  413. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +1 -1
  414. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +1 -2
  415. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +1 -2
  416. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +1 -2
  417. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +1 -2
  418. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +1 -1
  419. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +1 -1
  420. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +1 -1
  421. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +1 -1
  422. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +1 -1
  423. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +1 -1
  424. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +1 -1
  425. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +1 -1
  426. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +1 -1
  427. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +1 -1
  428. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +1 -1
  429. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +1 -1
  430. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +1 -1
  431. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +1 -1
  432. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +1 -1
  433. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +1 -1
  434. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +1 -1
  435. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +1 -1
  436. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +1 -1
  437. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +1 -1
  438. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +1 -1
  439. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +1 -1
  440. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +1 -1
  441. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +1 -1
  442. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +1 -1
  443. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +1 -1
  444. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +1 -1
  445. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +1 -2
  446. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +1 -2
  447. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +1 -1
  448. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +1 -1
  449. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +1 -1
  450. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +1 -1
  451. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +1 -1
  452. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +1 -1
  453. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +1 -2
  454. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +1 -1
  455. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +1 -1
  456. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +1 -1
  457. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -1
  458. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +1 -1
  459. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +1 -1
  460. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +1 -1
  461. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +1 -1
  462. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +1 -1
  463. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +1 -1
  464. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +1 -2
  465. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +1 -1
  466. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +1 -1
  467. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +1 -2
  468. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +1 -1
  469. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +1 -1
  470. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +1 -1
  471. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +1 -1
  472. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +1 -1
  473. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +1 -1
  474. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +1 -1
  475. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +1 -1
  476. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +1 -2
  477. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +1 -2
  478. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +1 -2
  479. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +1 -1
  480. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
  481. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +4 -4
  482. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +2 -2
  483. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
  484. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +1 -1
  485. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +1 -1
  486. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +6 -6
  487. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  488. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +6 -6
  489. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  490. package/node_modules/@aws-sdk/client-s3/package.json +15 -19
  491. package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +1 -1
  492. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +1 -1
  493. package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +1 -1
  494. package/node_modules/@aws-sdk/client-sns/dist-types/models/errors.d.ts +1 -1
  495. package/node_modules/@aws-sdk/client-sns/package.json +10 -10
  496. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1 -1
  497. package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +1 -1
  498. package/node_modules/@aws-sdk/client-sqs/package.json +12 -12
  499. package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
  500. package/node_modules/@aws-sdk/core/dist-cjs/index.js +47 -2291
  501. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +12 -6
  502. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
  503. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -0
  504. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +11 -6
  505. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
  506. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
  507. package/node_modules/@aws-sdk/core/package.json +12 -12
  508. package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
  509. package/node_modules/@aws-sdk/credential-provider-http/package.json +11 -10
  510. package/node_modules/@aws-sdk/credential-provider-ini/package.json +15 -15
  511. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  512. package/node_modules/@aws-sdk/credential-provider-node/package.json +13 -13
  513. package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
  514. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +4 -1
  515. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
  516. package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
  517. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
  518. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +21 -447
  519. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +1 -6
  520. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +2 -6
  521. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -36
  522. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
  523. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +34 -0
  524. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +57 -53
  525. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +1028 -0
  526. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1042 -0
  527. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +215 -0
  528. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +1 -0
  529. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
  530. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
  531. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
  532. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3Configuration.js → submodules/s3/middleware-s3-configuration/s3Configuration.js} +1 -1
  533. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{throw-200-exceptions.js → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js} +1 -1
  534. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{validate-bucket-name.js → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js} +1 -1
  535. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
  536. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
  537. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
  538. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
  539. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
  540. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
  541. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
  542. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
  543. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
  544. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +2 -0
  545. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
  546. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
  547. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
  548. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
  549. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
  550. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
  551. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
  552. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
  553. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
  554. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
  555. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
  556. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
  557. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
  558. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
  559. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +39 -0
  560. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
  561. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
  562. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
  563. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
  564. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
  565. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
  566. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
  567. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
  568. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
  569. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
  570. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
  571. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +12 -0
  572. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +13 -0
  573. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +22 -0
  574. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +66 -15
  575. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
  576. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
  577. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
  578. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
  579. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
  580. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +99 -106
  581. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +62 -120
  582. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +55 -86
  583. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +73 -104
  584. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +102 -185
  585. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +4 -5
  586. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +21 -57
  587. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +1 -2
  588. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -4
  589. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
  590. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +4 -5
  591. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +20 -52
  592. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +1 -2
  593. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -4
  594. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
  595. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +4 -5
  596. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +17 -45
  597. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +1 -2
  598. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -4
  599. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
  600. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +4 -5
  601. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +17 -45
  602. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +1 -2
  603. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -4
  604. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
  605. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +4 -5
  606. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
  607. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +34 -96
  608. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +1 -2
  609. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +3 -6
  610. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
  611. package/node_modules/@aws-sdk/nested-clients/package.json +11 -11
  612. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +10 -9
  613. package/node_modules/@aws-sdk/token-providers/package.json +8 -8
  614. package/node_modules/@aws-sdk/types/package.json +4 -4
  615. package/node_modules/@aws-sdk/util-locate-window/package.json +3 -3
  616. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
  617. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
  618. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +4 -1
  619. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
  620. package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
  621. package/node_modules/@nodable/entities/package.json +4 -1
  622. package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
  623. package/node_modules/@nodable/entities/src/index.d.ts +77 -0
  624. package/node_modules/@nodable/entities/src/index.js +1 -1
  625. package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
  626. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +29 -31
  627. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
  628. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
  629. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
  630. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +22 -23
  631. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
  632. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
  633. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
  634. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
  635. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
  636. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
  637. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
  638. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +59 -60
  639. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
  640. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
  641. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
  642. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
  643. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
  644. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
  645. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
  646. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
  647. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
  648. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
  649. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
  650. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
  651. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
  652. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
  653. package/node_modules/@smithy/core/package.json +18 -17
  654. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
  655. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -2
  656. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
  657. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
  658. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
  659. package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
  660. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
  661. package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
  662. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
  663. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
  664. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
  665. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
  666. package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
  667. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  668. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +15 -15
  669. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +7 -6
  670. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +2 -1
  671. package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
  672. package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
  673. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +2 -2
  674. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +1 -1
  675. package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
  676. package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
  677. package/node_modules/@smithy/node-http-handler/package.json +8 -8
  678. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
  679. package/node_modules/@smithy/signature-v4/package.json +7 -7
  680. package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
  681. package/node_modules/@smithy/types/package.json +10 -10
  682. package/node_modules/anynum/LICENSE +21 -0
  683. package/node_modules/anynum/README.md +142 -0
  684. package/node_modules/anynum/anynum.js +135 -0
  685. package/node_modules/anynum/digitTable.js +116 -0
  686. package/node_modules/anynum/package.json +42 -0
  687. package/package.json +10 -10
  688. package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
  689. package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
  690. package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
  691. package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
  692. package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
  693. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
  694. package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -49
  695. package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
  696. package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
  697. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
  698. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
  699. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
  700. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
  701. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -58
  702. package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
  703. package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
  704. package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
  705. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
  706. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
  707. package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
  708. package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
  709. package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
  710. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
  711. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
  712. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
  713. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
  714. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
  715. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
  716. package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
  717. package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
  718. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
  719. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
  720. /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/Crc64Nvme.js +0 -0
  721. /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
  722. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
  723. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
  724. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/configuration.js +0 -0
  725. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/constants.js +0 -0
  726. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
  727. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
  728. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
  729. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksum.js +0 -0
  730. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
  731. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
  732. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumLocationName.js +0 -0
  733. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
  734. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
  735. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
  736. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeader.js +0 -0
  737. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
  738. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
  739. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isStreaming.js +0 -0
  740. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
  741. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringHasher.js +0 -0
  742. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringUnionSelector.js +0 -0
  743. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/types.js +0 -0
  744. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/validateChecksumFromResponse.js +0 -0
  745. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/Crc64Nvme.d.ts +0 -0
  746. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
  747. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  748. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  749. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/configuration.d.ts +0 -0
  750. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/constants.d.ts +0 -0
  751. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  752. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  753. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  754. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksum.d.ts +0 -0
  755. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  756. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  757. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  758. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
  759. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
  760. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  761. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeader.d.ts +0 -0
  762. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  763. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  764. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isStreaming.d.ts +0 -0
  765. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  766. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  767. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringHasher.d.ts +0 -0
  768. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  769. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/types.d.ts +0 -0
  770. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  771. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/Crc64Nvme.d.ts +0 -0
  772. /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
  773. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
  774. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
  775. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/configuration.d.ts +0 -0
  776. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/constants.d.ts +0 -0
  777. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  778. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  779. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  780. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksum.d.ts +0 -0
  781. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  782. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  783. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  784. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
  785. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
  786. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  787. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeader.d.ts +0 -0
  788. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  789. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  790. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isStreaming.d.ts +0 -0
  791. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  792. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  793. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringHasher.d.ts +0 -0
  794. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  795. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/types.d.ts +0 -0
  796. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
  797. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.js +0 -0
  798. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeUseArnRegionConfigOptions.js +0 -0
  799. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.js +0 -0
  800. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
  801. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
  802. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
  803. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{check-content-length-header.js → submodules/s3/middleware-check-content-length-header/check-content-length-header.js} +0 -0
  804. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js} +0 -0
  805. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
  806. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint/middleware-location-constraint.js} +0 -0
  807. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{bucket-endpoint-middleware.js → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.js} +0 -0
  808. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-endpoint-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.js} +0 -0
  809. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-middleware.js} +0 -0
  810. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-expires-middleware.js → submodules/s3/middleware-s3-expires/s3-expires-middleware.js} +0 -0
  811. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
  812. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
  813. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
  814. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.js +0 -0
  815. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/constants.js +0 -0
  816. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.js +0 -0
  817. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.js +0 -0
  818. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
  819. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
  820. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
  821. /package/node_modules/@aws-sdk/{middleware-ssec/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-ssec/middleware-ssec.js} +0 -0
  822. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
  823. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.browser.js → submodules/s3/to-stream/toStream.browser.js} +0 -0
  824. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.js → submodules/s3/to-stream/toStream.js} +0 -0
  825. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
  826. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
  827. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
  828. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
  829. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
  830. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
  831. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
  832. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
  833. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
  834. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
  835. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
  836. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
  837. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
  838. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
  839. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
  840. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
  841. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
  842. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
  843. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
  844. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
  845. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
  846. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
  847. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
  848. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
  849. /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
  850. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
  851. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  852. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
  853. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
  854. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
  855. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
  856. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
  857. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
  858. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
  859. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
  860. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
  861. /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
  862. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
  863. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
  864. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
  865. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
  866. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
  867. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
  868. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
  869. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
  870. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
  871. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
  872. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
  873. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
  874. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
  875. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
  876. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
  877. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
  878. /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
  879. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
  880. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  881. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
  882. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
  883. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
@@ -1,364 +1,613 @@
1
- import type { AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerMonitoredTagKeyStatus, CapacityManagerStatus, CapacityTenancy, ClientCertificateRevocationListStatusCode, Comparison, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FilterByDimension, GroupBy, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, IngestionStatus, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, Metric, MetricType, PayerResponsibility, PeriodType, ReservationEndDateType, ReservationState, ReservationType, ResourceType, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPropagationState, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
2
- import type { ActiveVpnTunnelStatus, AddressTransfer, AllowedPrincipal, AsnAssociation, AssociationStatus, IamInstanceProfileAssociation, InstanceEventWindow, IpamResourceDiscoveryAssociation, NatGatewayAddress, OperatorResponse, RouteServerAssociation, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, TransitGatewayAssociation, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayPolicyTableAssociation, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, VerifiedAccessInstance, VerifiedAccessTrustProvider, Volume, Vpc, VpcCidrBlockAssociation, VpcEncryptionControl, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
1
+ import type { _InstanceType, AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerStatus, ClientCertificateRevocationListStatusCode, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, MetricType, PayerResponsibility, PeriodType, ResourceType, RIProductDescription, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPropagationState, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
2
+ import type { ActiveVpnTunnelStatus, AddressTransfer, AllowedPrincipal, AsnAssociation, AssociationStatus, IamInstanceProfileAssociation, InstanceEventWindow, IpamResourceDiscoveryAssociation, NatGatewayAddress, OperatorResponse, RouteServerAssociation, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, TransitGatewayAssociation, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayPolicyTableAssociation, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, VerifiedAccessInstance, VerifiedAccessTrustProvider, Volume, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
3
+ import type { Vpc, VpcEncryptionControl } from "./models_1";
3
4
  import type { ConnectionNotification, DnsEntry, ServiceConfiguration, ServiceTypeDetail, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMeteringPolicy, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion, VpcEndpoint, VpnConcentrator, VpnConnection, VpnGateway } from "./models_2";
4
- import type { AttributeBooleanValue, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchSnapshotConfigurationResponse, Filter, ProductCode } from "./models_3";
5
- import type { RegisteredInstance } from "./models_4";
5
+ import type { ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchSnapshotConfigurationResponse, Filter, ProductCode } from "./models_3";
6
+ import type { AttributeBooleanValue, RegisteredInstance, SpotInstanceRequest } from "./models_4";
6
7
  /**
8
+ * <p>Contains the output of DescribeSpotInstanceRequests.</p>
7
9
  * @public
8
10
  */
9
- export interface DescribeSubnetsResult {
11
+ export interface DescribeSpotInstanceRequestsResult {
10
12
  /**
11
- * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
13
+ * <p>The Spot Instance requests.</p>
12
14
  * @public
13
15
  */
14
- NextToken?: string | undefined;
16
+ SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
15
17
  /**
16
- * <p>Information about the subnets.</p>
18
+ * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
19
+ * are no more items to return.</p>
17
20
  * @public
18
21
  */
19
- Subnets?: Subnet[] | undefined;
22
+ NextToken?: string | undefined;
20
23
  }
21
24
  /**
25
+ * <p>Contains the parameters for DescribeSpotPriceHistory.</p>
22
26
  * @public
23
27
  */
24
- export interface DescribeTagsRequest {
28
+ export interface DescribeSpotPriceHistoryRequest {
25
29
  /**
26
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
27
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
28
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
30
+ * <p>Filters the results by the specified ID of the Availability Zone.</p>
31
+ * <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
32
+ * @public
33
+ */
34
+ AvailabilityZoneId?: string | undefined;
35
+ /**
36
+ * <p>Checks whether you have the required permissions for the action, without actually
37
+ * making the request, and provides an error response. If you have the required
38
+ * permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
39
+ * <code>UnauthorizedOperation</code>.</p>
29
40
  * @public
30
41
  */
31
42
  DryRun?: boolean | undefined;
43
+ /**
44
+ * <p>The date and time, up to the past 90 days, from which to start retrieving the price
45
+ * history data, in UTC format (for example,
46
+ * <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).</p>
47
+ * @public
48
+ */
49
+ StartTime?: Date | undefined;
50
+ /**
51
+ * <p>The date and time, up to the current date, from which to stop retrieving the price
52
+ * history data, in UTC format (for example,
53
+ * <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).</p>
54
+ * @public
55
+ */
56
+ EndTime?: Date | undefined;
57
+ /**
58
+ * <p>Filters the results by the specified instance types.</p>
59
+ * @public
60
+ */
61
+ InstanceTypes?: _InstanceType[] | undefined;
62
+ /**
63
+ * <p>Filters the results by the specified basic product descriptions.</p>
64
+ * @public
65
+ */
66
+ ProductDescriptions?: string[] | undefined;
32
67
  /**
33
68
  * <p>The filters.</p>
34
69
  * <ul>
35
70
  * <li>
36
71
  * <p>
37
- * <code>key</code> - The tag key.</p>
72
+ * <code>availability-zone</code> - The Availability Zone for which prices should
73
+ * be returned.</p>
38
74
  * </li>
39
75
  * <li>
40
76
  * <p>
41
- * <code>resource-id</code> - The ID of the resource.</p>
77
+ * <code>availability-zone-id</code> - The ID of the Availability Zone for which
78
+ * prices should be returned.</p>
42
79
  * </li>
43
80
  * <li>
44
81
  * <p>
45
- * <code>resource-type</code> - The resource type. For a list of possible values, see
46
- * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TagSpecification.html">TagSpecification</a>.</p>
82
+ * <code>instance-type</code> - The type of instance (for example,
83
+ * <code>m3.medium</code>).</p>
47
84
  * </li>
48
85
  * <li>
49
86
  * <p>
50
- * <code>tag</code>:<key> - The key/value combination of the tag. For example,
51
- * specify "tag:Owner" for the filter name and "TeamA" for the filter value to find
52
- * resources with the tag "Owner=TeamA".</p>
87
+ * <code>product-description</code> - The product description for the Spot price
88
+ * (<code>Linux/UNIX</code> | <code>Red Hat Enterprise Linux</code> |
89
+ * <code>SUSE Linux</code> | <code>Windows</code> | <code>Linux/UNIX (Amazon
90
+ * VPC)</code> | <code>Red Hat Enterprise Linux (Amazon VPC)</code> |
91
+ * <code>SUSE Linux (Amazon VPC)</code> | <code>Windows (Amazon
92
+ * VPC)</code>).</p>
53
93
  * </li>
54
94
  * <li>
55
95
  * <p>
56
- * <code>value</code> - The tag value.</p>
96
+ * <code>spot-price</code> - The Spot price. The value must match exactly (or use
97
+ * wildcards; greater than or less than comparison is not supported).</p>
98
+ * </li>
99
+ * <li>
100
+ * <p>
101
+ * <code>timestamp</code> - The time stamp of the Spot price history, in UTC format
102
+ * (for example, <i>ddd MMM dd
103
+ * HH</i>:<i>mm</i>:<i>ss</i> UTC
104
+ * <i>YYYY</i>). You can use wildcards (<code>*</code> and
105
+ * <code>?</code>). Greater than or less than comparison is not
106
+ * supported.</p>
57
107
  * </li>
58
108
  * </ul>
59
109
  * @public
60
110
  */
61
111
  Filters?: Filter[] | undefined;
62
112
  /**
63
- * <p>The maximum number of items to return for this request. This value can be between 5 and 1000.
113
+ * <p>Filters the results by the specified Availability Zone.</p>
114
+ * <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
115
+ * @public
116
+ */
117
+ AvailabilityZone?: string | undefined;
118
+ /**
119
+ * <p>The maximum number of items to return for this request.
64
120
  * To get the next page of items, make another request with the token returned in the output.
65
- * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
121
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
66
122
  * @public
67
123
  */
68
124
  MaxResults?: number | undefined;
69
125
  /**
70
- * <p>The token returned from a previous paginated request.
71
- * Pagination continues from the end of the items returned by the previous request.</p>
126
+ * <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
72
127
  * @public
73
128
  */
74
129
  NextToken?: string | undefined;
75
130
  }
76
131
  /**
77
- * <p>Describes a tag.</p>
132
+ * <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend
133
+ * using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.</p>
134
+ * <important>
135
+ * <p>If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.</p>
136
+ * </important>
78
137
  * @public
79
138
  */
80
- export interface TagDescription {
139
+ export interface SpotPrice {
81
140
  /**
82
- * <p>The tag key.</p>
141
+ * <p>The Availability Zone.</p>
83
142
  * @public
84
143
  */
85
- Key?: string | undefined;
144
+ AvailabilityZone?: string | undefined;
86
145
  /**
87
- * <p>The ID of the resource.</p>
146
+ * <p>The ID of the Availability Zone.</p>
88
147
  * @public
89
148
  */
90
- ResourceId?: string | undefined;
149
+ AvailabilityZoneId?: string | undefined;
91
150
  /**
92
- * <p>The resource type.</p>
151
+ * <p>The instance type.</p>
93
152
  * @public
94
153
  */
95
- ResourceType?: ResourceType | undefined;
154
+ InstanceType?: _InstanceType | undefined;
96
155
  /**
97
- * <p>The tag value.</p>
156
+ * <p>A general description of the AMI.</p>
98
157
  * @public
99
158
  */
100
- Value?: string | undefined;
159
+ ProductDescription?: RIProductDescription | undefined;
160
+ /**
161
+ * <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend
162
+ * using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.</p>
163
+ * <important>
164
+ * <p>If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.</p>
165
+ * </important>
166
+ * @public
167
+ */
168
+ SpotPrice?: string | undefined;
169
+ /**
170
+ * <p>The date and time the request was created, in UTC format (for example,
171
+ * <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z).</p>
172
+ * @public
173
+ */
174
+ Timestamp?: Date | undefined;
101
175
  }
102
176
  /**
177
+ * <p>Contains the output of DescribeSpotPriceHistory.</p>
103
178
  * @public
104
179
  */
105
- export interface DescribeTagsResult {
180
+ export interface DescribeSpotPriceHistoryResult {
106
181
  /**
107
- * <p>The token to include in another request to get the next page of items.
108
- * This value is <code>null</code> when there are no more items to return.</p>
182
+ * <p>The token to include in another request to get the next page of items. This value is
183
+ * an empty string (<code>""</code>) or <code>null</code> when there are no more items to return.</p>
109
184
  * @public
110
185
  */
111
186
  NextToken?: string | undefined;
112
187
  /**
113
- * <p>The tags.</p>
188
+ * <p>The historical Spot prices.</p>
114
189
  * @public
115
190
  */
116
- Tags?: TagDescription[] | undefined;
191
+ SpotPriceHistory?: SpotPrice[] | undefined;
117
192
  }
118
193
  /**
119
194
  * @public
120
195
  */
121
- export interface DescribeTrafficMirrorFilterRulesRequest {
196
+ export interface DescribeStaleSecurityGroupsRequest {
122
197
  /**
123
- * <p>Traffic filter rule IDs.</p>
198
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
199
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
200
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
124
201
  * @public
125
202
  */
126
- TrafficMirrorFilterRuleIds?: string[] | undefined;
203
+ DryRun?: boolean | undefined;
127
204
  /**
128
- * <p>Traffic filter ID.</p>
205
+ * <p>The maximum number of items to return for this request. To get the next page of items,
206
+ * make another request with the token returned in the output. For more information,
207
+ * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
129
208
  * @public
130
209
  */
131
- TrafficMirrorFilterId?: string | undefined;
210
+ MaxResults?: number | undefined;
132
211
  /**
133
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
134
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
135
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
212
+ * <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
136
213
  * @public
137
214
  */
138
- DryRun?: boolean | undefined;
215
+ NextToken?: string | undefined;
139
216
  /**
140
- * <p>Traffic mirror filters.</p>
141
- * <ul>
142
- * <li>
143
- * <p>
144
- * <code>traffic-mirror-filter-rule-id</code>: The ID of the Traffic Mirror rule.</p>
145
- * </li>
146
- * <li>
147
- * <p>
148
- * <code>traffic-mirror-filter-id</code>: The ID of the filter that this rule is associated with.</p>
149
- * </li>
150
- * <li>
151
- * <p>
152
- * <code>rule-number</code>: The number of the Traffic Mirror rule.</p>
153
- * </li>
154
- * <li>
155
- * <p>
156
- * <code>rule-action</code>: The action taken on the filtered traffic. Possible actions are <code>accept</code> and <code>reject</code>.</p>
157
- * </li>
158
- * <li>
159
- * <p>
160
- * <code>traffic-direction</code>: The traffic direction. Possible directions are <code>ingress</code> and <code>egress</code>.</p>
161
- * </li>
162
- * <li>
163
- * <p>
164
- * <code>protocol</code>: The protocol, for example UDP, assigned to the Traffic Mirror rule.</p>
165
- * </li>
166
- * <li>
167
- * <p>
168
- * <code>source-cidr-block</code>: The source CIDR block assigned to the Traffic Mirror rule.</p>
169
- * </li>
170
- * <li>
171
- * <p>
172
- * <code>destination-cidr-block</code>: The destination CIDR block assigned to the Traffic Mirror rule.</p>
173
- * </li>
174
- * <li>
175
- * <p>
176
- * <code>description</code>: The description of the Traffic Mirror rule.</p>
177
- * </li>
178
- * </ul>
217
+ * <p>The ID of the VPC.</p>
179
218
  * @public
180
219
  */
181
- Filters?: Filter[] | undefined;
220
+ VpcId: string | undefined;
221
+ }
222
+ /**
223
+ * <p>Describes a stale rule in a security group.</p>
224
+ * @public
225
+ */
226
+ export interface StaleIpPermission {
182
227
  /**
183
- * <p>The maximum number of results to return with a single call.
184
- * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
228
+ * <p>If the protocol is TCP or UDP, this is the start of the port range.
229
+ * If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all ICMP types).</p>
185
230
  * @public
186
231
  */
187
- MaxResults?: number | undefined;
232
+ FromPort?: number | undefined;
188
233
  /**
189
- * <p>The token for the next page of results.</p>
234
+ * <p>The IP protocol name (<code>tcp</code>, <code>udp</code>, <code>icmp</code>, <code>icmpv6</code>) or number
235
+ * (see <a href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml">Protocol Numbers)</a>.</p>
190
236
  * @public
191
237
  */
192
- NextToken?: string | undefined;
238
+ IpProtocol?: string | undefined;
239
+ /**
240
+ * <p>The IP ranges. Not applicable for stale security group rules.</p>
241
+ * @public
242
+ */
243
+ IpRanges?: string[] | undefined;
244
+ /**
245
+ * <p>The prefix list IDs. Not applicable for stale security group rules.</p>
246
+ * @public
247
+ */
248
+ PrefixListIds?: string[] | undefined;
249
+ /**
250
+ * <p>If the protocol is TCP or UDP, this is the end of the port range.
251
+ * If the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all ICMP codes).</p>
252
+ * @public
253
+ */
254
+ ToPort?: number | undefined;
255
+ /**
256
+ * <p>The security group pairs. Returns the ID of the referenced security group and VPC, and the ID and status of the VPC peering connection.</p>
257
+ * @public
258
+ */
259
+ UserIdGroupPairs?: UserIdGroupPair[] | undefined;
193
260
  }
194
261
  /**
262
+ * <p>Describes a stale security group (a security group that contains stale rules).</p>
195
263
  * @public
196
264
  */
197
- export interface DescribeTrafficMirrorFilterRulesResult {
265
+ export interface StaleSecurityGroup {
198
266
  /**
199
- * <p>Traffic mirror rules.</p>
267
+ * <p>The description of the security group.</p>
200
268
  * @public
201
269
  */
202
- TrafficMirrorFilterRules?: TrafficMirrorFilterRule[] | undefined;
270
+ Description?: string | undefined;
203
271
  /**
204
- * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
272
+ * <p>The ID of the security group.</p>
273
+ * @public
274
+ */
275
+ GroupId?: string | undefined;
276
+ /**
277
+ * <p>The name of the security group.</p>
278
+ * @public
279
+ */
280
+ GroupName?: string | undefined;
281
+ /**
282
+ * <p>Information about the stale inbound rules in the security group.</p>
283
+ * @public
284
+ */
285
+ StaleIpPermissions?: StaleIpPermission[] | undefined;
286
+ /**
287
+ * <p>Information about the stale outbound rules in the security group.</p>
288
+ * @public
289
+ */
290
+ StaleIpPermissionsEgress?: StaleIpPermission[] | undefined;
291
+ /**
292
+ * <p>The ID of the VPC for the security group.</p>
293
+ * @public
294
+ */
295
+ VpcId?: string | undefined;
296
+ }
297
+ /**
298
+ * @public
299
+ */
300
+ export interface DescribeStaleSecurityGroupsResult {
301
+ /**
302
+ * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
205
303
  * @public
206
304
  */
207
305
  NextToken?: string | undefined;
306
+ /**
307
+ * <p>Information about the stale security groups.</p>
308
+ * @public
309
+ */
310
+ StaleSecurityGroupSet?: StaleSecurityGroup[] | undefined;
208
311
  }
209
312
  /**
210
313
  * @public
211
314
  */
212
- export interface DescribeTrafficMirrorFiltersRequest {
315
+ export interface DescribeStoreImageTasksRequest {
213
316
  /**
214
- * <p>The ID of the Traffic Mirror filter.</p>
317
+ * <p>The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a
318
+ * request.</p>
215
319
  * @public
216
320
  */
217
- TrafficMirrorFilterIds?: string[] | undefined;
321
+ ImageIds?: string[] | undefined;
218
322
  /**
219
323
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
220
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
221
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
324
+ * and provides an error response. If you have the required permissions, the error response is
325
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
222
326
  * @public
223
327
  */
224
328
  DryRun?: boolean | undefined;
225
329
  /**
226
- * <p>One or more filters. The possible values are:</p>
330
+ * <p>The filters.</p>
227
331
  * <ul>
228
332
  * <li>
229
333
  * <p>
230
- * <code>description</code>: The Traffic Mirror filter description.</p>
334
+ * <code>task-state</code> - Returns tasks in a certain state (<code>InProgress</code> |
335
+ * <code>Completed</code> | <code>Failed</code>)</p>
231
336
  * </li>
232
337
  * <li>
233
338
  * <p>
234
- * <code>traffic-mirror-filter-id</code>: The ID of the Traffic Mirror filter.</p>
339
+ * <code>bucket</code> - Returns task information for tasks that targeted a specific
340
+ * bucket. For the filter value, specify the bucket name.</p>
235
341
  * </li>
236
342
  * </ul>
343
+ * <note>
344
+ * <p>When you specify the <code>ImageIds</code> parameter, any filters that you specify are
345
+ * ignored. To use the filters, you must remove the <code>ImageIds</code> parameter.</p>
346
+ * </note>
237
347
  * @public
238
348
  */
239
349
  Filters?: Filter[] | undefined;
240
350
  /**
241
- * <p>The maximum number of results to return with a single call.
242
- * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
351
+ * <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
243
352
  * @public
244
353
  */
245
- MaxResults?: number | undefined;
354
+ NextToken?: string | undefined;
246
355
  /**
247
- * <p>The token for the next page of results.</p>
356
+ * <p>The maximum number of items to return for this request.
357
+ * To get the next page of items, make another request with the token returned in the output.
358
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
359
+ * <p>You cannot specify this parameter and the <code>ImageIds</code> parameter in the same
360
+ * call.</p>
248
361
  * @public
249
362
  */
250
- NextToken?: string | undefined;
363
+ MaxResults?: number | undefined;
251
364
  }
252
365
  /**
366
+ * <p>The information about the AMI store task, including the progress of the task.</p>
253
367
  * @public
254
368
  */
255
- export interface DescribeTrafficMirrorFiltersResult {
369
+ export interface StoreImageTaskResult {
256
370
  /**
257
- * <p>Information about one or more Traffic Mirror filters.</p>
371
+ * <p>The ID of the AMI that is being stored.</p>
258
372
  * @public
259
373
  */
260
- TrafficMirrorFilters?: TrafficMirrorFilter[] | undefined;
374
+ AmiId?: string | undefined;
261
375
  /**
262
- * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
376
+ * <p>The time the task started.</p>
263
377
  * @public
264
378
  */
265
- NextToken?: string | undefined;
379
+ TaskStartTime?: Date | undefined;
380
+ /**
381
+ * <p>The name of the Amazon S3 bucket that contains the stored AMI object.</p>
382
+ * @public
383
+ */
384
+ Bucket?: string | undefined;
385
+ /**
386
+ * <p>The name of the stored AMI object in the bucket.</p>
387
+ * @public
388
+ */
389
+ S3objectKey?: string | undefined;
390
+ /**
391
+ * <p>The progress of the task as a percentage.</p>
392
+ * @public
393
+ */
394
+ ProgressPercentage?: number | undefined;
395
+ /**
396
+ * <p>The state of the store task (<code>InProgress</code>, <code>Completed</code>, or
397
+ * <code>Failed</code>).</p>
398
+ * @public
399
+ */
400
+ StoreTaskState?: string | undefined;
401
+ /**
402
+ * <p>If the tasks fails, the reason for the failure is returned. If the task succeeds,
403
+ * <code>null</code> is returned.</p>
404
+ * @public
405
+ */
406
+ StoreTaskFailureReason?: string | undefined;
266
407
  }
267
408
  /**
268
409
  * @public
269
410
  */
270
- export interface DescribeTrafficMirrorSessionsRequest {
411
+ export interface DescribeStoreImageTasksResult {
271
412
  /**
272
- * <p>The ID of the Traffic Mirror session.</p>
413
+ * <p>The information about the AMI store tasks.</p>
273
414
  * @public
274
415
  */
275
- TrafficMirrorSessionIds?: string[] | undefined;
416
+ StoreImageTaskResults?: StoreImageTaskResult[] | undefined;
276
417
  /**
277
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
278
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
279
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
418
+ * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
419
+ * are no more items to return.</p>
280
420
  * @public
281
421
  */
282
- DryRun?: boolean | undefined;
422
+ NextToken?: string | undefined;
423
+ }
424
+ /**
425
+ * @public
426
+ */
427
+ export interface DescribeSubnetsRequest {
283
428
  /**
284
- * <p>One or more filters. The possible values are:</p>
429
+ * <p>The filters.</p>
285
430
  * <ul>
286
431
  * <li>
287
432
  * <p>
288
- * <code>description</code>: The Traffic Mirror session description.</p>
433
+ * <code>availability-zone</code> - The Availability Zone for the subnet. You can also use
434
+ * <code>availabilityZone</code> as the filter name.</p>
289
435
  * </li>
290
436
  * <li>
291
437
  * <p>
292
- * <code>network-interface-id</code>: The ID of the Traffic Mirror session network interface.</p>
438
+ * <code>availability-zone-id</code> - The ID of the Availability Zone for the subnet.
439
+ * You can also use <code>availabilityZoneId</code> as the filter name.</p>
293
440
  * </li>
294
441
  * <li>
295
442
  * <p>
296
- * <code>owner-id</code>: The ID of the account that owns the Traffic Mirror session.</p>
443
+ * <code>available-ip-address-count</code> - The number of IPv4 addresses in the
444
+ * subnet that are available.</p>
297
445
  * </li>
298
446
  * <li>
299
447
  * <p>
300
- * <code>packet-length</code>: The assigned number of packets to mirror. </p>
448
+ * <code>cidr-block</code> - The IPv4 CIDR block of the subnet. The CIDR block
449
+ * you specify must exactly match the subnet's CIDR block for information to be
450
+ * returned for the subnet. You can also use <code>cidr</code> or
451
+ * <code>cidrBlock</code> as the filter names.</p>
301
452
  * </li>
302
453
  * <li>
303
454
  * <p>
304
- * <code>session-number</code>: The assigned session number. </p>
455
+ * <code>customer-owned-ipv4-pool</code> - The customer-owned IPv4 address pool
456
+ * associated with the subnet.</p>
305
457
  * </li>
306
458
  * <li>
307
459
  * <p>
308
- * <code>traffic-mirror-filter-id</code>: The ID of the Traffic Mirror filter.</p>
460
+ * <code>default-for-az</code> - Indicates whether this is the default subnet for
461
+ * the Availability Zone (<code>true</code> | <code>false</code>). You can also use
462
+ * <code>defaultForAz</code> as the filter name.</p>
309
463
  * </li>
310
464
  * <li>
311
465
  * <p>
312
- * <code>traffic-mirror-session-id</code>: The ID of the Traffic Mirror session.</p>
466
+ * <code>enable-dns64</code> - Indicates whether DNS queries made to the
467
+ * Amazon-provided DNS Resolver in this subnet should return synthetic IPv6
468
+ * addresses for IPv4-only destinations.</p>
313
469
  * </li>
314
470
  * <li>
315
471
  * <p>
316
- * <code>traffic-mirror-target-id</code>: The ID of the Traffic Mirror target.</p>
472
+ * <code>enable-lni-at-device-index</code> - Indicates the device position for
473
+ * local network interfaces in this subnet. For example, <code>1</code> indicates
474
+ * local network interfaces in this subnet are the secondary network interface
475
+ * (eth1). </p>
317
476
  * </li>
318
477
  * <li>
319
478
  * <p>
320
- * <code>virtual-network-id</code>: The virtual network ID of the Traffic Mirror session.</p>
479
+ * <code>ipv6-cidr-block-association.ipv6-cidr-block</code> - An IPv6 CIDR
480
+ * block associated with the subnet.</p>
321
481
  * </li>
322
- * </ul>
482
+ * <li>
483
+ * <p>
484
+ * <code>ipv6-cidr-block-association.association-id</code> - An association ID
485
+ * for an IPv6 CIDR block associated with the subnet.</p>
486
+ * </li>
487
+ * <li>
488
+ * <p>
489
+ * <code>ipv6-cidr-block-association.state</code> - The state of an IPv6 CIDR
490
+ * block associated with the subnet.</p>
491
+ * </li>
492
+ * <li>
493
+ * <p>
494
+ * <code>ipv6-native</code> - Indicates whether this is an IPv6 only subnet
495
+ * (<code>true</code> | <code>false</code>).</p>
496
+ * </li>
497
+ * <li>
498
+ * <p>
499
+ * <code>map-customer-owned-ip-on-launch</code> - Indicates whether a network
500
+ * interface created in this subnet (including a network interface created by <a>RunInstances</a>) receives a customer-owned IPv4 address.</p>
501
+ * </li>
502
+ * <li>
503
+ * <p>
504
+ * <code>map-public-ip-on-launch</code> - Indicates whether instances launched in
505
+ * this subnet receive a public IPv4 address.</p>
506
+ * </li>
507
+ * <li>
508
+ * <p>
509
+ * <code>outpost-arn</code> - The Amazon Resource Name (ARN) of the Outpost.</p>
510
+ * </li>
511
+ * <li>
512
+ * <p>
513
+ * <code>owner-id</code> - The ID of the Amazon Web Services account that owns the
514
+ * subnet.</p>
515
+ * </li>
516
+ * <li>
517
+ * <p>
518
+ * <code>private-dns-name-options-on-launch.hostname-type</code> - The type of
519
+ * hostname to assign to instances in the subnet at launch. For IPv4-only and
520
+ * dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the
521
+ * instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6
522
+ * only subnets, an instance DNS name must be based on the instance ID
523
+ * (resource-name).</p>
524
+ * </li>
525
+ * <li>
526
+ * <p>
527
+ * <code>private-dns-name-options-on-launch.enable-resource-name-dns-a-record</code>
528
+ * - Indicates whether to respond to DNS queries for instance hostnames with DNS A
529
+ * records.</p>
530
+ * </li>
531
+ * <li>
532
+ * <p>
533
+ * <code>private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record</code>
534
+ * - Indicates whether to respond to DNS queries for instance hostnames with DNS
535
+ * AAAA records.</p>
536
+ * </li>
537
+ * <li>
538
+ * <p>
539
+ * <code>state</code> - The state of the subnet (<code>pending</code> | <code>available</code>).</p>
540
+ * </li>
541
+ * <li>
542
+ * <p>
543
+ * <code>subnet-arn</code> - The Amazon Resource Name (ARN) of the subnet.</p>
544
+ * </li>
545
+ * <li>
546
+ * <p>
547
+ * <code>subnet-id</code> - The ID of the subnet.</p>
548
+ * </li>
549
+ * <li>
550
+ * <p>
551
+ * <code>tag</code> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
552
+ * For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
553
+ * </li>
554
+ * <li>
555
+ * <p>
556
+ * <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
557
+ * </li>
558
+ * <li>
559
+ * <p>
560
+ * <code>vpc-id</code> - The ID of the VPC for the subnet.</p>
561
+ * </li>
562
+ * </ul>
323
563
  * @public
324
564
  */
325
565
  Filters?: Filter[] | undefined;
326
566
  /**
327
- * <p>The maximum number of results to return with a single call.
328
- * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
567
+ * <p>The IDs of the subnets.</p>
568
+ * <p>Default: Describes all your subnets.</p>
329
569
  * @public
330
570
  */
331
- MaxResults?: number | undefined;
571
+ SubnetIds?: string[] | undefined;
332
572
  /**
333
- * <p>The token for the next page of results.</p>
573
+ * <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
334
574
  * @public
335
575
  */
336
576
  NextToken?: string | undefined;
577
+ /**
578
+ * <p>The maximum number of items to return for this request.
579
+ * To get the next page of items, make another request with the token returned in the output.
580
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
581
+ * @public
582
+ */
583
+ MaxResults?: number | undefined;
584
+ /**
585
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
586
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
587
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
588
+ * @public
589
+ */
590
+ DryRun?: boolean | undefined;
337
591
  }
338
592
  /**
339
593
  * @public
340
594
  */
341
- export interface DescribeTrafficMirrorSessionsResult {
595
+ export interface DescribeSubnetsResult {
342
596
  /**
343
- * <p>Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.</p>
597
+ * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
344
598
  * @public
345
599
  */
346
- TrafficMirrorSessions?: TrafficMirrorSession[] | undefined;
600
+ NextToken?: string | undefined;
347
601
  /**
348
- * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
602
+ * <p>Information about the subnets.</p>
349
603
  * @public
350
604
  */
351
- NextToken?: string | undefined;
605
+ Subnets?: Subnet[] | undefined;
352
606
  }
353
607
  /**
354
608
  * @public
355
609
  */
356
- export interface DescribeTrafficMirrorTargetsRequest {
357
- /**
358
- * <p>The ID of the Traffic Mirror targets.</p>
359
- * @public
360
- */
361
- TrafficMirrorTargetIds?: string[] | undefined;
610
+ export interface DescribeTagsRequest {
362
611
  /**
363
612
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
364
613
  * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
@@ -367,109 +616,150 @@ export interface DescribeTrafficMirrorTargetsRequest {
367
616
  */
368
617
  DryRun?: boolean | undefined;
369
618
  /**
370
- * <p>One or more filters. The possible values are:</p>
619
+ * <p>The filters.</p>
371
620
  * <ul>
372
621
  * <li>
373
622
  * <p>
374
- * <code>description</code>: The Traffic Mirror target description.</p>
623
+ * <code>key</code> - The tag key.</p>
375
624
  * </li>
376
625
  * <li>
377
626
  * <p>
378
- * <code>network-interface-id</code>: The ID of the Traffic Mirror session network interface.</p>
627
+ * <code>resource-id</code> - The ID of the resource.</p>
379
628
  * </li>
380
629
  * <li>
381
630
  * <p>
382
- * <code>network-load-balancer-arn</code>: The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the session.</p>
631
+ * <code>resource-type</code> - The resource type. For a list of possible values, see
632
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TagSpecification.html">TagSpecification</a>.</p>
383
633
  * </li>
384
634
  * <li>
385
635
  * <p>
386
- * <code>owner-id</code>: The ID of the account that owns the Traffic Mirror session.</p>
636
+ * <code>tag</code>:<key> - The key/value combination of the tag. For example,
637
+ * specify "tag:Owner" for the filter name and "TeamA" for the filter value to find
638
+ * resources with the tag "Owner=TeamA".</p>
387
639
  * </li>
388
640
  * <li>
389
641
  * <p>
390
- * <code>traffic-mirror-target-id</code>: The ID of the Traffic Mirror target.</p>
642
+ * <code>value</code> - The tag value.</p>
391
643
  * </li>
392
644
  * </ul>
393
645
  * @public
394
646
  */
395
647
  Filters?: Filter[] | undefined;
396
648
  /**
397
- * <p>The maximum number of results to return with a single call.
398
- * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
649
+ * <p>The maximum number of items to return for this request. This value can be between 5 and 1000.
650
+ * To get the next page of items, make another request with the token returned in the output.
651
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
399
652
  * @public
400
653
  */
401
654
  MaxResults?: number | undefined;
402
655
  /**
403
- * <p>The token for the next page of results.</p>
656
+ * <p>The token returned from a previous paginated request.
657
+ * Pagination continues from the end of the items returned by the previous request.</p>
404
658
  * @public
405
659
  */
406
660
  NextToken?: string | undefined;
407
661
  }
408
662
  /**
663
+ * <p>Describes a tag.</p>
409
664
  * @public
410
665
  */
411
- export interface DescribeTrafficMirrorTargetsResult {
666
+ export interface TagDescription {
412
667
  /**
413
- * <p>Information about one or more Traffic Mirror targets.</p>
668
+ * <p>The tag key.</p>
414
669
  * @public
415
670
  */
416
- TrafficMirrorTargets?: TrafficMirrorTarget[] | undefined;
671
+ Key?: string | undefined;
417
672
  /**
418
- * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
673
+ * <p>The ID of the resource.</p>
674
+ * @public
675
+ */
676
+ ResourceId?: string | undefined;
677
+ /**
678
+ * <p>The resource type.</p>
679
+ * @public
680
+ */
681
+ ResourceType?: ResourceType | undefined;
682
+ /**
683
+ * <p>The tag value.</p>
684
+ * @public
685
+ */
686
+ Value?: string | undefined;
687
+ }
688
+ /**
689
+ * @public
690
+ */
691
+ export interface DescribeTagsResult {
692
+ /**
693
+ * <p>The token to include in another request to get the next page of items.
694
+ * This value is <code>null</code> when there are no more items to return.</p>
419
695
  * @public
420
696
  */
421
697
  NextToken?: string | undefined;
698
+ /**
699
+ * <p>The tags.</p>
700
+ * @public
701
+ */
702
+ Tags?: TagDescription[] | undefined;
422
703
  }
423
704
  /**
424
705
  * @public
425
706
  */
426
- export interface DescribeTransitGatewayAttachmentsRequest {
707
+ export interface DescribeTrafficMirrorFilterRulesRequest {
427
708
  /**
428
- * <p>The IDs of the attachments.</p>
709
+ * <p>Traffic filter rule IDs.</p>
429
710
  * @public
430
711
  */
431
- TransitGatewayAttachmentIds?: string[] | undefined;
712
+ TrafficMirrorFilterRuleIds?: string[] | undefined;
432
713
  /**
433
- * <p>One or more filters. The possible values are:</p>
714
+ * <p>Traffic filter ID.</p>
715
+ * @public
716
+ */
717
+ TrafficMirrorFilterId?: string | undefined;
718
+ /**
719
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
720
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
721
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
722
+ * @public
723
+ */
724
+ DryRun?: boolean | undefined;
725
+ /**
726
+ * <p>Traffic mirror filters.</p>
434
727
  * <ul>
435
728
  * <li>
436
729
  * <p>
437
- * <code>association.state</code> - The state of the association (<code>associating</code> | <code>associated</code> |
438
- * <code>disassociating</code>).</p>
730
+ * <code>traffic-mirror-filter-rule-id</code>: The ID of the Traffic Mirror rule.</p>
439
731
  * </li>
440
732
  * <li>
441
733
  * <p>
442
- * <code>association.transit-gateway-route-table-id</code> - The ID of the route table for the transit gateway.</p>
734
+ * <code>traffic-mirror-filter-id</code>: The ID of the filter that this rule is associated with.</p>
443
735
  * </li>
444
736
  * <li>
445
737
  * <p>
446
- * <code>resource-id</code> - The ID of the resource.</p>
738
+ * <code>rule-number</code>: The number of the Traffic Mirror rule.</p>
447
739
  * </li>
448
740
  * <li>
449
741
  * <p>
450
- * <code>resource-owner-id</code> - The ID of the Amazon Web Services account that owns the resource.</p>
742
+ * <code>rule-action</code>: The action taken on the filtered traffic. Possible actions are <code>accept</code> and <code>reject</code>.</p>
451
743
  * </li>
452
744
  * <li>
453
745
  * <p>
454
- * <code>resource-type</code> - The resource type. Valid values are <code>vpc</code>
455
- * | <code>vpn</code> | <code>direct-connect-gateway</code> | <code>peering</code>
456
- * | <code>connect</code>.</p>
746
+ * <code>traffic-direction</code>: The traffic direction. Possible directions are <code>ingress</code> and <code>egress</code>.</p>
457
747
  * </li>
458
748
  * <li>
459
749
  * <p>
460
- * <code>state</code> - The state of the attachment. Valid values are <code>available</code> | <code>deleted</code> | <code>deleting</code> | <code>failed</code> | <code>failing</code> | <code>initiatingRequest</code> | <code>modifying</code> | <code>pendingAcceptance</code> | <code>pending</code> | <code>rollingBack</code> | <code>rejected</code> | <code>rejecting</code>.</p>
750
+ * <code>protocol</code>: The protocol, for example UDP, assigned to the Traffic Mirror rule.</p>
461
751
  * </li>
462
752
  * <li>
463
753
  * <p>
464
- * <code>transit-gateway-attachment-id</code> - The ID of the attachment.</p>
754
+ * <code>source-cidr-block</code>: The source CIDR block assigned to the Traffic Mirror rule.</p>
465
755
  * </li>
466
756
  * <li>
467
757
  * <p>
468
- * <code>transit-gateway-id</code> - The ID of the transit gateway.</p>
758
+ * <code>destination-cidr-block</code>: The destination CIDR block assigned to the Traffic Mirror rule.</p>
469
759
  * </li>
470
760
  * <li>
471
761
  * <p>
472
- * <code>transit-gateway-owner-id</code> - The ID of the Amazon Web Services account that owns the transit gateway.</p>
762
+ * <code>description</code>: The description of the Traffic Mirror rule.</p>
473
763
  * </li>
474
764
  * </ul>
475
765
  * @public
@@ -486,97 +776,162 @@ export interface DescribeTransitGatewayAttachmentsRequest {
486
776
  * @public
487
777
  */
488
778
  NextToken?: string | undefined;
489
- /**
490
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
491
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
492
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
493
- * @public
494
- */
495
- DryRun?: boolean | undefined;
496
779
  }
497
780
  /**
498
- * <p>Describes an association.</p>
499
781
  * @public
500
782
  */
501
- export interface TransitGatewayAttachmentAssociation {
783
+ export interface DescribeTrafficMirrorFilterRulesResult {
502
784
  /**
503
- * <p>The ID of the route table for the transit gateway.</p>
785
+ * <p>Traffic mirror rules.</p>
504
786
  * @public
505
787
  */
506
- TransitGatewayRouteTableId?: string | undefined;
788
+ TrafficMirrorFilterRules?: TrafficMirrorFilterRule[] | undefined;
507
789
  /**
508
- * <p>The state of the association.</p>
790
+ * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
509
791
  * @public
510
792
  */
511
- State?: TransitGatewayAssociationState | undefined;
793
+ NextToken?: string | undefined;
512
794
  }
513
795
  /**
514
- * <p>Describes an attachment between a resource and a transit gateway.</p>
515
796
  * @public
516
797
  */
517
- export interface TransitGatewayAttachment {
798
+ export interface DescribeTrafficMirrorFiltersRequest {
518
799
  /**
519
- * <p>The ID of the attachment.</p>
800
+ * <p>The ID of the Traffic Mirror filter.</p>
520
801
  * @public
521
802
  */
522
- TransitGatewayAttachmentId?: string | undefined;
803
+ TrafficMirrorFilterIds?: string[] | undefined;
523
804
  /**
524
- * <p>The ID of the transit gateway.</p>
805
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
806
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
807
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
525
808
  * @public
526
809
  */
527
- TransitGatewayId?: string | undefined;
810
+ DryRun?: boolean | undefined;
528
811
  /**
529
- * <p>The ID of the Amazon Web Services account that owns the transit gateway.</p>
812
+ * <p>One or more filters. The possible values are:</p>
813
+ * <ul>
814
+ * <li>
815
+ * <p>
816
+ * <code>description</code>: The Traffic Mirror filter description.</p>
817
+ * </li>
818
+ * <li>
819
+ * <p>
820
+ * <code>traffic-mirror-filter-id</code>: The ID of the Traffic Mirror filter.</p>
821
+ * </li>
822
+ * </ul>
530
823
  * @public
531
824
  */
532
- TransitGatewayOwnerId?: string | undefined;
825
+ Filters?: Filter[] | undefined;
533
826
  /**
534
- * <p>The ID of the Amazon Web Services account that owns the resource.</p>
827
+ * <p>The maximum number of results to return with a single call.
828
+ * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
535
829
  * @public
536
830
  */
537
- ResourceOwnerId?: string | undefined;
831
+ MaxResults?: number | undefined;
538
832
  /**
539
- * <p>The resource type. Note that the <code>tgw-peering</code> resource type has been deprecated.</p>
833
+ * <p>The token for the next page of results.</p>
540
834
  * @public
541
835
  */
542
- ResourceType?: TransitGatewayAttachmentResourceType | undefined;
836
+ NextToken?: string | undefined;
837
+ }
838
+ /**
839
+ * @public
840
+ */
841
+ export interface DescribeTrafficMirrorFiltersResult {
543
842
  /**
544
- * <p>The ID of the resource.</p>
843
+ * <p>Information about one or more Traffic Mirror filters.</p>
545
844
  * @public
546
845
  */
547
- ResourceId?: string | undefined;
846
+ TrafficMirrorFilters?: TrafficMirrorFilter[] | undefined;
548
847
  /**
549
- * <p>The attachment state. Note that the <code>initiating</code> state has been deprecated.</p>
848
+ * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
550
849
  * @public
551
850
  */
552
- State?: TransitGatewayAttachmentState | undefined;
553
- /**
554
- * <p>The association.</p>
851
+ NextToken?: string | undefined;
852
+ }
853
+ /**
854
+ * @public
855
+ */
856
+ export interface DescribeTrafficMirrorSessionsRequest {
857
+ /**
858
+ * <p>The ID of the Traffic Mirror session.</p>
555
859
  * @public
556
860
  */
557
- Association?: TransitGatewayAttachmentAssociation | undefined;
861
+ TrafficMirrorSessionIds?: string[] | undefined;
558
862
  /**
559
- * <p>The creation time.</p>
863
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
864
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
865
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
560
866
  * @public
561
867
  */
562
- CreationTime?: Date | undefined;
868
+ DryRun?: boolean | undefined;
563
869
  /**
564
- * <p>The tags for the attachment.</p>
870
+ * <p>One or more filters. The possible values are:</p>
871
+ * <ul>
872
+ * <li>
873
+ * <p>
874
+ * <code>description</code>: The Traffic Mirror session description.</p>
875
+ * </li>
876
+ * <li>
877
+ * <p>
878
+ * <code>network-interface-id</code>: The ID of the Traffic Mirror session network interface.</p>
879
+ * </li>
880
+ * <li>
881
+ * <p>
882
+ * <code>owner-id</code>: The ID of the account that owns the Traffic Mirror session.</p>
883
+ * </li>
884
+ * <li>
885
+ * <p>
886
+ * <code>packet-length</code>: The assigned number of packets to mirror. </p>
887
+ * </li>
888
+ * <li>
889
+ * <p>
890
+ * <code>session-number</code>: The assigned session number. </p>
891
+ * </li>
892
+ * <li>
893
+ * <p>
894
+ * <code>traffic-mirror-filter-id</code>: The ID of the Traffic Mirror filter.</p>
895
+ * </li>
896
+ * <li>
897
+ * <p>
898
+ * <code>traffic-mirror-session-id</code>: The ID of the Traffic Mirror session.</p>
899
+ * </li>
900
+ * <li>
901
+ * <p>
902
+ * <code>traffic-mirror-target-id</code>: The ID of the Traffic Mirror target.</p>
903
+ * </li>
904
+ * <li>
905
+ * <p>
906
+ * <code>virtual-network-id</code>: The virtual network ID of the Traffic Mirror session.</p>
907
+ * </li>
908
+ * </ul>
565
909
  * @public
566
910
  */
567
- Tags?: Tag[] | undefined;
911
+ Filters?: Filter[] | undefined;
912
+ /**
913
+ * <p>The maximum number of results to return with a single call.
914
+ * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
915
+ * @public
916
+ */
917
+ MaxResults?: number | undefined;
918
+ /**
919
+ * <p>The token for the next page of results.</p>
920
+ * @public
921
+ */
922
+ NextToken?: string | undefined;
568
923
  }
569
924
  /**
570
925
  * @public
571
926
  */
572
- export interface DescribeTransitGatewayAttachmentsResult {
927
+ export interface DescribeTrafficMirrorSessionsResult {
573
928
  /**
574
- * <p>Information about the attachments.</p>
929
+ * <p>Describes one or more Traffic Mirror sessions. By default, all Traffic Mirror sessions are described. Alternatively, you can filter the results.</p>
575
930
  * @public
576
931
  */
577
- TransitGatewayAttachments?: TransitGatewayAttachment[] | undefined;
932
+ TrafficMirrorSessions?: TrafficMirrorSession[] | undefined;
578
933
  /**
579
- * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
934
+ * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
580
935
  * @public
581
936
  */
582
937
  NextToken?: string | undefined;
@@ -584,28 +939,41 @@ export interface DescribeTransitGatewayAttachmentsResult {
584
939
  /**
585
940
  * @public
586
941
  */
587
- export interface DescribeTransitGatewayConnectPeersRequest {
942
+ export interface DescribeTrafficMirrorTargetsRequest {
588
943
  /**
589
- * <p>The IDs of the Connect peers.</p>
944
+ * <p>The ID of the Traffic Mirror targets.</p>
590
945
  * @public
591
946
  */
592
- TransitGatewayConnectPeerIds?: string[] | undefined;
947
+ TrafficMirrorTargetIds?: string[] | undefined;
948
+ /**
949
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
950
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
951
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
952
+ * @public
953
+ */
954
+ DryRun?: boolean | undefined;
593
955
  /**
594
956
  * <p>One or more filters. The possible values are:</p>
595
957
  * <ul>
596
958
  * <li>
597
959
  * <p>
598
- * <code>state</code> - The state of the Connect peer (<code>pending</code> |
599
- * <code>available</code> | <code>deleting</code> |
600
- * <code>deleted</code>).</p>
960
+ * <code>description</code>: The Traffic Mirror target description.</p>
601
961
  * </li>
602
962
  * <li>
603
963
  * <p>
604
- * <code>transit-gateway-attachment-id</code> - The ID of the attachment.</p>
964
+ * <code>network-interface-id</code>: The ID of the Traffic Mirror session network interface.</p>
605
965
  * </li>
606
966
  * <li>
607
967
  * <p>
608
- * <code>transit-gateway-connect-peer-id</code> - The ID of the Connect peer.</p>
968
+ * <code>network-load-balancer-arn</code>: The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the session.</p>
969
+ * </li>
970
+ * <li>
971
+ * <p>
972
+ * <code>owner-id</code>: The ID of the account that owns the Traffic Mirror session.</p>
973
+ * </li>
974
+ * <li>
975
+ * <p>
976
+ * <code>traffic-mirror-target-id</code>: The ID of the Traffic Mirror target.</p>
609
977
  * </li>
610
978
  * </ul>
611
979
  * @public
@@ -622,25 +990,18 @@ export interface DescribeTransitGatewayConnectPeersRequest {
622
990
  * @public
623
991
  */
624
992
  NextToken?: string | undefined;
625
- /**
626
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
627
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
628
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
629
- * @public
630
- */
631
- DryRun?: boolean | undefined;
632
993
  }
633
994
  /**
634
995
  * @public
635
996
  */
636
- export interface DescribeTransitGatewayConnectPeersResult {
997
+ export interface DescribeTrafficMirrorTargetsResult {
637
998
  /**
638
- * <p>Information about the Connect peers.</p>
999
+ * <p>Information about one or more Traffic Mirror targets.</p>
639
1000
  * @public
640
1001
  */
641
- TransitGatewayConnectPeers?: TransitGatewayConnectPeer[] | undefined;
1002
+ TrafficMirrorTargets?: TrafficMirrorTarget[] | undefined;
642
1003
  /**
643
- * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
1004
+ * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no more results to return.</p>
644
1005
  * @public
645
1006
  */
646
1007
  NextToken?: string | undefined;
@@ -648,7 +1009,7 @@ export interface DescribeTransitGatewayConnectPeersResult {
648
1009
  /**
649
1010
  * @public
650
1011
  */
651
- export interface DescribeTransitGatewayConnectsRequest {
1012
+ export interface DescribeTransitGatewayAttachmentsRequest {
652
1013
  /**
653
1014
  * <p>The IDs of the attachments.</p>
654
1015
  * @public
@@ -659,21 +1020,34 @@ export interface DescribeTransitGatewayConnectsRequest {
659
1020
  * <ul>
660
1021
  * <li>
661
1022
  * <p>
662
- * <code>options.protocol</code> - The tunnel protocol (<code>gre</code>).</p>
1023
+ * <code>association.state</code> - The state of the association (<code>associating</code> | <code>associated</code> |
1024
+ * <code>disassociating</code>).</p>
663
1025
  * </li>
664
1026
  * <li>
665
1027
  * <p>
666
- * <code>state</code> - The state of the attachment (<code>initiating</code> |
667
- * <code>initiatingRequest</code> | <code>pendingAcceptance</code> |
668
- * <code>rollingBack</code> | <code>pending</code> | <code>available</code> |
669
- * <code>modifying</code> | <code>deleting</code> | <code>deleted</code> |
670
- * <code>failed</code> | <code>rejected</code> | <code>rejecting</code> |
671
- * <code>failing</code>).</p>
1028
+ * <code>association.transit-gateway-route-table-id</code> - The ID of the route table for the transit gateway.</p>
672
1029
  * </li>
673
1030
  * <li>
674
1031
  * <p>
675
- * <code>transit-gateway-attachment-id</code> - The ID of the
676
- * Connect attachment.</p>
1032
+ * <code>resource-id</code> - The ID of the resource.</p>
1033
+ * </li>
1034
+ * <li>
1035
+ * <p>
1036
+ * <code>resource-owner-id</code> - The ID of the Amazon Web Services account that owns the resource.</p>
1037
+ * </li>
1038
+ * <li>
1039
+ * <p>
1040
+ * <code>resource-type</code> - The resource type. Valid values are <code>vpc</code>
1041
+ * | <code>vpn</code> | <code>direct-connect-gateway</code> | <code>peering</code>
1042
+ * | <code>connect</code>.</p>
1043
+ * </li>
1044
+ * <li>
1045
+ * <p>
1046
+ * <code>state</code> - The state of the attachment. Valid values are <code>available</code> | <code>deleted</code> | <code>deleting</code> | <code>failed</code> | <code>failing</code> | <code>initiatingRequest</code> | <code>modifying</code> | <code>pendingAcceptance</code> | <code>pending</code> | <code>rollingBack</code> | <code>rejected</code> | <code>rejecting</code>.</p>
1047
+ * </li>
1048
+ * <li>
1049
+ * <p>
1050
+ * <code>transit-gateway-attachment-id</code> - The ID of the attachment.</p>
677
1051
  * </li>
678
1052
  * <li>
679
1053
  * <p>
@@ -681,7 +1055,7 @@ export interface DescribeTransitGatewayConnectsRequest {
681
1055
  * </li>
682
1056
  * <li>
683
1057
  * <p>
684
- * <code>transport-transit-gateway-attachment-id</code> - The ID of the transit gateway attachment from which the Connect attachment was created.</p>
1058
+ * <code>transit-gateway-owner-id</code> - The ID of the Amazon Web Services account that owns the transit gateway.</p>
685
1059
  * </li>
686
1060
  * </ul>
687
1061
  * @public
@@ -707,62 +1081,86 @@ export interface DescribeTransitGatewayConnectsRequest {
707
1081
  DryRun?: boolean | undefined;
708
1082
  }
709
1083
  /**
1084
+ * <p>Describes an association.</p>
710
1085
  * @public
711
1086
  */
712
- export interface DescribeTransitGatewayConnectsResult {
1087
+ export interface TransitGatewayAttachmentAssociation {
713
1088
  /**
714
- * <p>Information about the Connect attachments.</p>
1089
+ * <p>The ID of the route table for the transit gateway.</p>
715
1090
  * @public
716
1091
  */
717
- TransitGatewayConnects?: TransitGatewayConnect[] | undefined;
1092
+ TransitGatewayRouteTableId?: string | undefined;
718
1093
  /**
719
- * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
1094
+ * <p>The state of the association.</p>
720
1095
  * @public
721
1096
  */
722
- NextToken?: string | undefined;
1097
+ State?: TransitGatewayAssociationState | undefined;
723
1098
  }
724
1099
  /**
1100
+ * <p>Describes an attachment between a resource and a transit gateway.</p>
725
1101
  * @public
726
1102
  */
727
- export interface DescribeTransitGatewayMeteringPoliciesRequest {
1103
+ export interface TransitGatewayAttachment {
728
1104
  /**
729
- * <p>The IDs of the transit gateway metering policies to describe.</p>
1105
+ * <p>The ID of the attachment.</p>
730
1106
  * @public
731
1107
  */
732
- TransitGatewayMeteringPolicyIds?: string[] | undefined;
1108
+ TransitGatewayAttachmentId?: string | undefined;
733
1109
  /**
734
- * <p>One or more filters to apply when describing transit gateway metering policies.</p>
1110
+ * <p>The ID of the transit gateway.</p>
735
1111
  * @public
736
1112
  */
737
- Filters?: Filter[] | undefined;
1113
+ TransitGatewayId?: string | undefined;
738
1114
  /**
739
- * <p>The maximum number of results to return with a single call.
740
- * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
1115
+ * <p>The ID of the Amazon Web Services account that owns the transit gateway.</p>
741
1116
  * @public
742
1117
  */
743
- MaxResults?: number | undefined;
1118
+ TransitGatewayOwnerId?: string | undefined;
744
1119
  /**
745
- * <p>The token for the next page of results.</p>
1120
+ * <p>The ID of the Amazon Web Services account that owns the resource.</p>
746
1121
  * @public
747
1122
  */
748
- NextToken?: string | undefined;
1123
+ ResourceOwnerId?: string | undefined;
749
1124
  /**
750
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
751
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
752
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1125
+ * <p>The resource type. Note that the <code>tgw-peering</code> resource type has been deprecated.</p>
753
1126
  * @public
754
1127
  */
755
- DryRun?: boolean | undefined;
1128
+ ResourceType?: TransitGatewayAttachmentResourceType | undefined;
1129
+ /**
1130
+ * <p>The ID of the resource.</p>
1131
+ * @public
1132
+ */
1133
+ ResourceId?: string | undefined;
1134
+ /**
1135
+ * <p>The attachment state. Note that the <code>initiating</code> state has been deprecated.</p>
1136
+ * @public
1137
+ */
1138
+ State?: TransitGatewayAttachmentState | undefined;
1139
+ /**
1140
+ * <p>The association.</p>
1141
+ * @public
1142
+ */
1143
+ Association?: TransitGatewayAttachmentAssociation | undefined;
1144
+ /**
1145
+ * <p>The creation time.</p>
1146
+ * @public
1147
+ */
1148
+ CreationTime?: Date | undefined;
1149
+ /**
1150
+ * <p>The tags for the attachment.</p>
1151
+ * @public
1152
+ */
1153
+ Tags?: Tag[] | undefined;
756
1154
  }
757
1155
  /**
758
1156
  * @public
759
1157
  */
760
- export interface DescribeTransitGatewayMeteringPoliciesResult {
1158
+ export interface DescribeTransitGatewayAttachmentsResult {
761
1159
  /**
762
- * <p>Information about the transit gateway metering policies.</p>
1160
+ * <p>Information about the attachments.</p>
763
1161
  * @public
764
1162
  */
765
- TransitGatewayMeteringPolicies?: TransitGatewayMeteringPolicy[] | undefined;
1163
+ TransitGatewayAttachments?: TransitGatewayAttachment[] | undefined;
766
1164
  /**
767
1165
  * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
768
1166
  * @public
@@ -772,26 +1170,28 @@ export interface DescribeTransitGatewayMeteringPoliciesResult {
772
1170
  /**
773
1171
  * @public
774
1172
  */
775
- export interface DescribeTransitGatewayMulticastDomainsRequest {
1173
+ export interface DescribeTransitGatewayConnectPeersRequest {
776
1174
  /**
777
- * <p>The ID of the transit gateway multicast domain.</p>
1175
+ * <p>The IDs of the Connect peers.</p>
778
1176
  * @public
779
1177
  */
780
- TransitGatewayMulticastDomainIds?: string[] | undefined;
1178
+ TransitGatewayConnectPeerIds?: string[] | undefined;
781
1179
  /**
782
1180
  * <p>One or more filters. The possible values are:</p>
783
1181
  * <ul>
784
1182
  * <li>
785
1183
  * <p>
786
- * <code>state</code> - The state of the transit gateway multicast domain. Valid values are <code>pending</code> | <code>available</code> | <code>deleting</code> | <code>deleted</code>.</p>
1184
+ * <code>state</code> - The state of the Connect peer (<code>pending</code> |
1185
+ * <code>available</code> | <code>deleting</code> |
1186
+ * <code>deleted</code>).</p>
787
1187
  * </li>
788
1188
  * <li>
789
1189
  * <p>
790
- * <code>transit-gateway-id</code> - The ID of the transit gateway.</p>
1190
+ * <code>transit-gateway-attachment-id</code> - The ID of the attachment.</p>
791
1191
  * </li>
792
1192
  * <li>
793
1193
  * <p>
794
- * <code>transit-gateway-multicast-domain-id</code> - The ID of the transit gateway multicast domain.</p>
1194
+ * <code>transit-gateway-connect-peer-id</code> - The ID of the Connect peer.</p>
795
1195
  * </li>
796
1196
  * </ul>
797
1197
  * @public
@@ -819,12 +1219,12 @@ export interface DescribeTransitGatewayMulticastDomainsRequest {
819
1219
  /**
820
1220
  * @public
821
1221
  */
822
- export interface DescribeTransitGatewayMulticastDomainsResult {
1222
+ export interface DescribeTransitGatewayConnectPeersResult {
823
1223
  /**
824
- * <p>Information about the transit gateway multicast domains.</p>
1224
+ * <p>Information about the Connect peers.</p>
825
1225
  * @public
826
1226
  */
827
- TransitGatewayMulticastDomains?: TransitGatewayMulticastDomain[] | undefined;
1227
+ TransitGatewayConnectPeers?: TransitGatewayConnectPeer[] | undefined;
828
1228
  /**
829
1229
  * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
830
1230
  * @public
@@ -834,9 +1234,9 @@ export interface DescribeTransitGatewayMulticastDomainsResult {
834
1234
  /**
835
1235
  * @public
836
1236
  */
837
- export interface DescribeTransitGatewayPeeringAttachmentsRequest {
1237
+ export interface DescribeTransitGatewayConnectsRequest {
838
1238
  /**
839
- * <p>One or more IDs of the transit gateway peering attachments.</p>
1239
+ * <p>The IDs of the attachments.</p>
840
1240
  * @public
841
1241
  */
842
1242
  TransitGatewayAttachmentIds?: string[] | undefined;
@@ -845,16 +1245,202 @@ export interface DescribeTransitGatewayPeeringAttachmentsRequest {
845
1245
  * <ul>
846
1246
  * <li>
847
1247
  * <p>
848
- * <code>transit-gateway-attachment-id</code> - The ID of the transit gateway attachment.</p>
849
- * </li>
850
- * <li>
851
- * <p>
852
- * <code>local-owner-id</code> - The ID of your Amazon Web Services account.</p>
1248
+ * <code>options.protocol</code> - The tunnel protocol (<code>gre</code>).</p>
853
1249
  * </li>
854
1250
  * <li>
855
1251
  * <p>
856
- * <code>remote-owner-id</code> - The ID of the Amazon Web Services account in the remote Region that owns the transit gateway.</p>
857
- * </li>
1252
+ * <code>state</code> - The state of the attachment (<code>initiating</code> |
1253
+ * <code>initiatingRequest</code> | <code>pendingAcceptance</code> |
1254
+ * <code>rollingBack</code> | <code>pending</code> | <code>available</code> |
1255
+ * <code>modifying</code> | <code>deleting</code> | <code>deleted</code> |
1256
+ * <code>failed</code> | <code>rejected</code> | <code>rejecting</code> |
1257
+ * <code>failing</code>).</p>
1258
+ * </li>
1259
+ * <li>
1260
+ * <p>
1261
+ * <code>transit-gateway-attachment-id</code> - The ID of the
1262
+ * Connect attachment.</p>
1263
+ * </li>
1264
+ * <li>
1265
+ * <p>
1266
+ * <code>transit-gateway-id</code> - The ID of the transit gateway.</p>
1267
+ * </li>
1268
+ * <li>
1269
+ * <p>
1270
+ * <code>transport-transit-gateway-attachment-id</code> - The ID of the transit gateway attachment from which the Connect attachment was created.</p>
1271
+ * </li>
1272
+ * </ul>
1273
+ * @public
1274
+ */
1275
+ Filters?: Filter[] | undefined;
1276
+ /**
1277
+ * <p>The maximum number of results to return with a single call.
1278
+ * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
1279
+ * @public
1280
+ */
1281
+ MaxResults?: number | undefined;
1282
+ /**
1283
+ * <p>The token for the next page of results.</p>
1284
+ * @public
1285
+ */
1286
+ NextToken?: string | undefined;
1287
+ /**
1288
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
1289
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1290
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1291
+ * @public
1292
+ */
1293
+ DryRun?: boolean | undefined;
1294
+ }
1295
+ /**
1296
+ * @public
1297
+ */
1298
+ export interface DescribeTransitGatewayConnectsResult {
1299
+ /**
1300
+ * <p>Information about the Connect attachments.</p>
1301
+ * @public
1302
+ */
1303
+ TransitGatewayConnects?: TransitGatewayConnect[] | undefined;
1304
+ /**
1305
+ * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
1306
+ * @public
1307
+ */
1308
+ NextToken?: string | undefined;
1309
+ }
1310
+ /**
1311
+ * @public
1312
+ */
1313
+ export interface DescribeTransitGatewayMeteringPoliciesRequest {
1314
+ /**
1315
+ * <p>The IDs of the transit gateway metering policies to describe.</p>
1316
+ * @public
1317
+ */
1318
+ TransitGatewayMeteringPolicyIds?: string[] | undefined;
1319
+ /**
1320
+ * <p>One or more filters to apply when describing transit gateway metering policies.</p>
1321
+ * @public
1322
+ */
1323
+ Filters?: Filter[] | undefined;
1324
+ /**
1325
+ * <p>The maximum number of results to return with a single call.
1326
+ * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
1327
+ * @public
1328
+ */
1329
+ MaxResults?: number | undefined;
1330
+ /**
1331
+ * <p>The token for the next page of results.</p>
1332
+ * @public
1333
+ */
1334
+ NextToken?: string | undefined;
1335
+ /**
1336
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
1337
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1338
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1339
+ * @public
1340
+ */
1341
+ DryRun?: boolean | undefined;
1342
+ }
1343
+ /**
1344
+ * @public
1345
+ */
1346
+ export interface DescribeTransitGatewayMeteringPoliciesResult {
1347
+ /**
1348
+ * <p>Information about the transit gateway metering policies.</p>
1349
+ * @public
1350
+ */
1351
+ TransitGatewayMeteringPolicies?: TransitGatewayMeteringPolicy[] | undefined;
1352
+ /**
1353
+ * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
1354
+ * @public
1355
+ */
1356
+ NextToken?: string | undefined;
1357
+ }
1358
+ /**
1359
+ * @public
1360
+ */
1361
+ export interface DescribeTransitGatewayMulticastDomainsRequest {
1362
+ /**
1363
+ * <p>The ID of the transit gateway multicast domain.</p>
1364
+ * @public
1365
+ */
1366
+ TransitGatewayMulticastDomainIds?: string[] | undefined;
1367
+ /**
1368
+ * <p>One or more filters. The possible values are:</p>
1369
+ * <ul>
1370
+ * <li>
1371
+ * <p>
1372
+ * <code>state</code> - The state of the transit gateway multicast domain. Valid values are <code>pending</code> | <code>available</code> | <code>deleting</code> | <code>deleted</code>.</p>
1373
+ * </li>
1374
+ * <li>
1375
+ * <p>
1376
+ * <code>transit-gateway-id</code> - The ID of the transit gateway.</p>
1377
+ * </li>
1378
+ * <li>
1379
+ * <p>
1380
+ * <code>transit-gateway-multicast-domain-id</code> - The ID of the transit gateway multicast domain.</p>
1381
+ * </li>
1382
+ * </ul>
1383
+ * @public
1384
+ */
1385
+ Filters?: Filter[] | undefined;
1386
+ /**
1387
+ * <p>The maximum number of results to return with a single call.
1388
+ * To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
1389
+ * @public
1390
+ */
1391
+ MaxResults?: number | undefined;
1392
+ /**
1393
+ * <p>The token for the next page of results.</p>
1394
+ * @public
1395
+ */
1396
+ NextToken?: string | undefined;
1397
+ /**
1398
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
1399
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
1400
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
1401
+ * @public
1402
+ */
1403
+ DryRun?: boolean | undefined;
1404
+ }
1405
+ /**
1406
+ * @public
1407
+ */
1408
+ export interface DescribeTransitGatewayMulticastDomainsResult {
1409
+ /**
1410
+ * <p>Information about the transit gateway multicast domains.</p>
1411
+ * @public
1412
+ */
1413
+ TransitGatewayMulticastDomains?: TransitGatewayMulticastDomain[] | undefined;
1414
+ /**
1415
+ * <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
1416
+ * @public
1417
+ */
1418
+ NextToken?: string | undefined;
1419
+ }
1420
+ /**
1421
+ * @public
1422
+ */
1423
+ export interface DescribeTransitGatewayPeeringAttachmentsRequest {
1424
+ /**
1425
+ * <p>One or more IDs of the transit gateway peering attachments.</p>
1426
+ * @public
1427
+ */
1428
+ TransitGatewayAttachmentIds?: string[] | undefined;
1429
+ /**
1430
+ * <p>One or more filters. The possible values are:</p>
1431
+ * <ul>
1432
+ * <li>
1433
+ * <p>
1434
+ * <code>transit-gateway-attachment-id</code> - The ID of the transit gateway attachment.</p>
1435
+ * </li>
1436
+ * <li>
1437
+ * <p>
1438
+ * <code>local-owner-id</code> - The ID of your Amazon Web Services account.</p>
1439
+ * </li>
1440
+ * <li>
1441
+ * <p>
1442
+ * <code>remote-owner-id</code> - The ID of the Amazon Web Services account in the remote Region that owns the transit gateway.</p>
1443
+ * </li>
858
1444
  * <li>
859
1445
  * <p>
860
1446
  * <code>state</code> - The state of the peering attachment. Valid values are <code>available</code> | <code>deleted</code> | <code>deleting</code> | <code>failed</code> | <code>failing</code> | <code>initiatingRequest</code> | <code>modifying</code> | <code>pendingAcceptance</code> | <code>pending</code> | <code>rollingBack</code> | <code>rejected</code> | <code>rejecting</code>).</p>
@@ -2061,12 +2647,6 @@ export interface VolumeModification {
2061
2647
  * @public
2062
2648
  */
2063
2649
  EndTime?: Date | undefined;
2064
- /**
2065
- * <p>Describes whether the resource is managed by a service provider and, if so, describes
2066
- * the service provider that manages it.</p>
2067
- * @public
2068
- */
2069
- Operator?: OperatorResponse | undefined;
2070
2650
  }
2071
2651
  /**
2072
2652
  * @public
@@ -4130,6 +4710,39 @@ export interface DetachClassicLinkVpcResult {
4130
4710
  */
4131
4711
  Return?: boolean | undefined;
4132
4712
  }
4713
+ /**
4714
+ * @public
4715
+ */
4716
+ export interface DetachImageWatermarkRequest {
4717
+ /**
4718
+ * <p>The ID of the AMI.</p>
4719
+ * @public
4720
+ */
4721
+ ImageId: string | undefined;
4722
+ /**
4723
+ * <p>The watermark key to remove, in <code>accountId:watermarkName</code> format (for example,
4724
+ * <code>123456789012:approvedAmi</code>).</p>
4725
+ * @public
4726
+ */
4727
+ WatermarkKey: string | undefined;
4728
+ /**
4729
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
4730
+ * and provides an error response. If you have the required permissions, the error response is
4731
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
4732
+ * @public
4733
+ */
4734
+ DryRun?: boolean | undefined;
4735
+ }
4736
+ /**
4737
+ * @public
4738
+ */
4739
+ export interface DetachImageWatermarkResult {
4740
+ /**
4741
+ * <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
4742
+ * @public
4743
+ */
4744
+ Return?: boolean | undefined;
4745
+ }
4133
4746
  /**
4134
4747
  * @public
4135
4748
  */
@@ -7549,570 +8162,3 @@ export interface GetAwsNetworkPerformanceDataResult {
7549
8162
  */
7550
8163
  NextToken?: string | undefined;
7551
8164
  }
7552
- /**
7553
- * @public
7554
- */
7555
- export interface GetCapacityManagerAttributesRequest {
7556
- /**
7557
- * <p>
7558
- * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
7559
- * If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
7560
- * </p>
7561
- * @public
7562
- */
7563
- DryRun?: boolean | undefined;
7564
- }
7565
- /**
7566
- * @public
7567
- */
7568
- export interface GetCapacityManagerAttributesResult {
7569
- /**
7570
- * <p>
7571
- * The current status of Capacity Manager.
7572
- * </p>
7573
- * @public
7574
- */
7575
- CapacityManagerStatus?: CapacityManagerStatus | undefined;
7576
- /**
7577
- * <p>
7578
- * Indicates whether Organizations access is enabled for cross-account data aggregation.
7579
- * </p>
7580
- * @public
7581
- */
7582
- OrganizationsAccess?: boolean | undefined;
7583
- /**
7584
- * <p>
7585
- * The number of active data export configurations for this account. This count includes all data exports regardless of their current delivery status.
7586
- * </p>
7587
- * @public
7588
- */
7589
- DataExportCount?: number | undefined;
7590
- /**
7591
- * <p>
7592
- * The current data ingestion status. Initial ingestion may take several hours after enabling Capacity Manager.
7593
- * </p>
7594
- * @public
7595
- */
7596
- IngestionStatus?: IngestionStatus | undefined;
7597
- /**
7598
- * <p>
7599
- * A descriptive message providing additional details about the current ingestion status. This may include error information if ingestion has
7600
- * failed or progress details during initial setup.
7601
- * </p>
7602
- * @public
7603
- */
7604
- IngestionStatusMessage?: string | undefined;
7605
- /**
7606
- * <p>
7607
- * The timestamp of the earliest data point available in Capacity Manager, in milliseconds since epoch. This indicates how far back historical data is available for queries.
7608
- * </p>
7609
- * @public
7610
- */
7611
- EarliestDatapointTimestamp?: Date | undefined;
7612
- /**
7613
- * <p>
7614
- * The timestamp of the most recent data point ingested by Capacity Manager, in milliseconds since epoch. This indicates how current your capacity data is.
7615
- * </p>
7616
- * @public
7617
- */
7618
- LatestDatapointTimestamp?: Date | undefined;
7619
- }
7620
- /**
7621
- * <p>
7622
- * Specifies a condition for filtering capacity data based on dimension values. Used to create precise filters for metric queries and dimension lookups.
7623
- * </p>
7624
- * @public
7625
- */
7626
- export interface DimensionCondition {
7627
- /**
7628
- * <p>
7629
- * The name of the dimension to filter by.
7630
- * </p>
7631
- * @public
7632
- */
7633
- Dimension?: FilterByDimension | undefined;
7634
- /**
7635
- * <p>
7636
- * The comparison operator to use for the filter.
7637
- * </p>
7638
- * @public
7639
- */
7640
- Comparison?: Comparison | undefined;
7641
- /**
7642
- * <p>
7643
- * The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.
7644
- * </p>
7645
- * @public
7646
- */
7647
- Values?: string[] | undefined;
7648
- }
7649
- /**
7650
- * <p>
7651
- * Represents a filter condition for Capacity Manager queries. Contains dimension-based filtering criteria used to narrow down metric data and dimension results.
7652
- * </p>
7653
- * @public
7654
- */
7655
- export interface CapacityManagerCondition {
7656
- /**
7657
- * <p>
7658
- * The dimension-based condition that specifies how to filter the data based on dimension values.
7659
- * </p>
7660
- * @public
7661
- */
7662
- DimensionCondition?: DimensionCondition | undefined;
7663
- }
7664
- /**
7665
- * @public
7666
- */
7667
- export interface GetCapacityManagerMetricDataRequest {
7668
- /**
7669
- * <p>
7670
- * The names of the metrics to retrieve. Maximum of 10 metrics per request.
7671
- * </p>
7672
- * @public
7673
- */
7674
- MetricNames: Metric[] | undefined;
7675
- /**
7676
- * <p>
7677
- * The start time for the metric data query, in ISO 8601 format. The time range (end time - start time) must be a multiple of the specified period.
7678
- * </p>
7679
- * @public
7680
- */
7681
- StartTime: Date | undefined;
7682
- /**
7683
- * <p>
7684
- * The end time for the metric data query, in ISO 8601 format. If the end time is beyond the latest ingested data, it will be automatically adjusted to the latest available data point.
7685
- * </p>
7686
- * @public
7687
- */
7688
- EndTime: Date | undefined;
7689
- /**
7690
- * <p>
7691
- * The granularity, in seconds, of the returned data points.
7692
- * </p>
7693
- * @public
7694
- */
7695
- Period: number | undefined;
7696
- /**
7697
- * <p>
7698
- * The dimensions by which to group the metric data. This determines how the data is aggregated and returned.
7699
- * </p>
7700
- * @public
7701
- */
7702
- GroupBy?: GroupBy[] | undefined;
7703
- /**
7704
- * <p>
7705
- * Conditions to filter the metric data. Each filter specifies a dimension, comparison operator ('equals', 'in'), and values to match against.
7706
- * </p>
7707
- * @public
7708
- */
7709
- FilterBy?: CapacityManagerCondition[] | undefined;
7710
- /**
7711
- * <p>
7712
- * The maximum number of data points to return. Valid range is 1 to 100,000. Use with NextToken for pagination of large result sets.
7713
- * </p>
7714
- * @public
7715
- */
7716
- MaxResults?: number | undefined;
7717
- /**
7718
- * <p>
7719
- * The token for the next page of results. Use this value in a subsequent call to retrieve additional data points.
7720
- * </p>
7721
- * @public
7722
- */
7723
- NextToken?: string | undefined;
7724
- /**
7725
- * <p>
7726
- * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have
7727
- * the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
7728
- * </p>
7729
- * @public
7730
- */
7731
- DryRun?: boolean | undefined;
7732
- }
7733
- /**
7734
- * <p>
7735
- * A key-value pair representing a tag associated with a capacity resource in Capacity Manager.
7736
- * </p>
7737
- * @public
7738
- */
7739
- export interface CapacityManagerTagDimension {
7740
- /**
7741
- * <p>
7742
- * The tag key.
7743
- * </p>
7744
- * @public
7745
- */
7746
- Key?: string | undefined;
7747
- /**
7748
- * <p>
7749
- * The tag value.
7750
- * </p>
7751
- * @public
7752
- */
7753
- Value?: string | undefined;
7754
- }
7755
- /**
7756
- * <p>
7757
- * Represents dimension values for capacity metrics, including resource identifiers, geographic information, and reservation details used for grouping and filtering capacity data.
7758
- * </p>
7759
- * @public
7760
- */
7761
- export interface CapacityManagerDimension {
7762
- /**
7763
- * <p>
7764
- * The Amazon Web Services Region where the capacity resource is located.
7765
- * </p>
7766
- * @public
7767
- */
7768
- ResourceRegion?: string | undefined;
7769
- /**
7770
- * <p>
7771
- * The unique identifier of the Availability Zone where the capacity resource is located.
7772
- * </p>
7773
- * @public
7774
- */
7775
- AvailabilityZoneId?: string | undefined;
7776
- /**
7777
- * <p>
7778
- * The Amazon Web Services account ID that owns the capacity resource.
7779
- * </p>
7780
- * @public
7781
- */
7782
- AccountId?: string | undefined;
7783
- /**
7784
- * <p>
7785
- * The name of the Amazon Web Services account that owns the capacity resource. This dimension is only available when Organizations access is enabled for Capacity Manager.
7786
- * </p>
7787
- * @public
7788
- */
7789
- AccountName?: string | undefined;
7790
- /**
7791
- * <p>
7792
- * The EC2 instance family of the capacity resource.
7793
- * </p>
7794
- * @public
7795
- */
7796
- InstanceFamily?: string | undefined;
7797
- /**
7798
- * <p>
7799
- * The specific EC2 instance type of the capacity resource.
7800
- * </p>
7801
- * @public
7802
- */
7803
- InstanceType?: string | undefined;
7804
- /**
7805
- * <p>
7806
- * The platform or operating system of the instance.
7807
- * </p>
7808
- * @public
7809
- */
7810
- InstancePlatform?: string | undefined;
7811
- /**
7812
- * <p>
7813
- * The Amazon Resource Name (ARN) of the capacity reservation. This provides a unique identifier that can be used across Amazon Web Services services to reference the specific reservation.
7814
- * </p>
7815
- * @public
7816
- */
7817
- ReservationArn?: string | undefined;
7818
- /**
7819
- * <p>
7820
- * The unique identifier of the capacity reservation.
7821
- * </p>
7822
- * @public
7823
- */
7824
- ReservationId?: string | undefined;
7825
- /**
7826
- * <p>
7827
- * The type of capacity reservation.
7828
- * </p>
7829
- * @public
7830
- */
7831
- ReservationType?: ReservationType | undefined;
7832
- /**
7833
- * <p>
7834
- * The timestamp when the capacity reservation was originally created, in milliseconds since epoch. This differs from the start timestamp as
7835
- * reservations can be created before they become active.
7836
- * </p>
7837
- * @public
7838
- */
7839
- ReservationCreateTimestamp?: Date | undefined;
7840
- /**
7841
- * <p>
7842
- * The timestamp when the capacity reservation becomes active and available for use, in milliseconds since epoch. This is when the reservation begins providing capacity.
7843
- * </p>
7844
- * @public
7845
- */
7846
- ReservationStartTimestamp?: Date | undefined;
7847
- /**
7848
- * <p>
7849
- * The timestamp when the capacity reservation expires and is no longer available, in milliseconds since epoch. After this time, the reservation will not provide any capacity.
7850
- * </p>
7851
- * @public
7852
- */
7853
- ReservationEndTimestamp?: Date | undefined;
7854
- /**
7855
- * <p>
7856
- * The type of end date for the capacity reservation. This indicates whether the reservation has a fixed end date, is open-ended, or follows a specific termination pattern.
7857
- * </p>
7858
- * @public
7859
- */
7860
- ReservationEndDateType?: ReservationEndDateType | undefined;
7861
- /**
7862
- * <p>
7863
- * The tenancy of the EC2 instances associated with this capacity dimension. Valid values are 'default' for shared tenancy, 'dedicated' for dedicated instances, or 'host' for dedicated hosts.
7864
- * </p>
7865
- * @public
7866
- */
7867
- Tenancy?: CapacityTenancy | undefined;
7868
- /**
7869
- * <p>
7870
- * The current state of the capacity reservation.
7871
- * </p>
7872
- * @public
7873
- */
7874
- ReservationState?: ReservationState | undefined;
7875
- /**
7876
- * <p>
7877
- * The instance matching criteria for the capacity reservation, determining how instances are matched to the reservation.
7878
- * </p>
7879
- * @public
7880
- */
7881
- ReservationInstanceMatchCriteria?: string | undefined;
7882
- /**
7883
- * <p>
7884
- * The Amazon Web Services account ID that is financially responsible for unused capacity reservation costs.
7885
- * </p>
7886
- * @public
7887
- */
7888
- ReservationUnusedFinancialOwner?: string | undefined;
7889
- /**
7890
- * <p>
7891
- * The tags associated with the capacity resource, represented as key-value pairs. Only tags that have been activated for monitoring via <code>UpdateCapacityManagerMonitoredTagKeys</code> are included.
7892
- * </p>
7893
- * @public
7894
- */
7895
- Tags?: CapacityManagerTagDimension[] | undefined;
7896
- }
7897
- /**
7898
- * <p>
7899
- * Represents a single metric value with its associated statistic, such as the sum or average of unused capacity hours.
7900
- * </p>
7901
- * @public
7902
- */
7903
- export interface MetricValue {
7904
- /**
7905
- * <p>
7906
- * The name of the metric.
7907
- * </p>
7908
- * @public
7909
- */
7910
- Metric?: Metric | undefined;
7911
- /**
7912
- * <p>
7913
- * The numerical value of the metric for the specified statistic and time period.
7914
- * </p>
7915
- * @public
7916
- */
7917
- Value?: number | undefined;
7918
- }
7919
- /**
7920
- * <p>
7921
- * Contains a single data point from a capacity metrics query, including the dimension values, timestamp, and metric values for that specific combination.
7922
- * </p>
7923
- * @public
7924
- */
7925
- export interface MetricDataResult {
7926
- /**
7927
- * <p>
7928
- * The dimension values that identify this specific data point, such as account ID, region, and instance family.
7929
- * </p>
7930
- * @public
7931
- */
7932
- Dimension?: CapacityManagerDimension | undefined;
7933
- /**
7934
- * <p>
7935
- * The timestamp for this data point, indicating when the capacity usage occurred.
7936
- * </p>
7937
- * @public
7938
- */
7939
- Timestamp?: Date | undefined;
7940
- /**
7941
- * <p>
7942
- * The metric values and statistics for this data point, containing the actual capacity usage numbers.
7943
- * </p>
7944
- * @public
7945
- */
7946
- MetricValues?: MetricValue[] | undefined;
7947
- }
7948
- /**
7949
- * @public
7950
- */
7951
- export interface GetCapacityManagerMetricDataResult {
7952
- /**
7953
- * <p>
7954
- * The metric data points returned by the query. Each result contains dimension values, timestamp, and metric values with their associated statistics.
7955
- * </p>
7956
- * @public
7957
- */
7958
- MetricDataResults?: MetricDataResult[] | undefined;
7959
- /**
7960
- * <p>
7961
- * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
7962
- * </p>
7963
- * @public
7964
- */
7965
- NextToken?: string | undefined;
7966
- }
7967
- /**
7968
- * @public
7969
- */
7970
- export interface GetCapacityManagerMetricDimensionsRequest {
7971
- /**
7972
- * <p>
7973
- * The dimensions to group by when retrieving available dimension values. This determines which dimension combinations are returned. Required parameter.
7974
- * </p>
7975
- * @public
7976
- */
7977
- GroupBy: GroupBy[] | undefined;
7978
- /**
7979
- * <p>
7980
- * Conditions to filter which dimension values are returned. Each filter specifies a dimension, comparison operator, and values to match against.
7981
- * </p>
7982
- * @public
7983
- */
7984
- FilterBy?: CapacityManagerCondition[] | undefined;
7985
- /**
7986
- * <p>
7987
- * The start time for the dimension query, in ISO 8601 format. Only dimensions with data in this time range will be returned.
7988
- * </p>
7989
- * @public
7990
- */
7991
- StartTime: Date | undefined;
7992
- /**
7993
- * <p>
7994
- * The end time for the dimension query, in ISO 8601 format. Only dimensions with data in this time range will be returned.
7995
- * </p>
7996
- * @public
7997
- */
7998
- EndTime: Date | undefined;
7999
- /**
8000
- * <p>
8001
- * The metric names to use as an additional filter when retrieving dimensions. Only dimensions that have data for these
8002
- * metrics will be returned. Required parameter with maximum size of 1 for v1.
8003
- * </p>
8004
- * @public
8005
- */
8006
- MetricNames: Metric[] | undefined;
8007
- /**
8008
- * <p>
8009
- * The maximum number of dimension combinations to return. Valid range is 1 to 1000. Use with NextToken for pagination.
8010
- * </p>
8011
- * @public
8012
- */
8013
- MaxResults?: number | undefined;
8014
- /**
8015
- * <p>
8016
- * The token for the next page of results. Use this value in a subsequent call to retrieve additional dimension values.
8017
- * </p>
8018
- * @public
8019
- */
8020
- NextToken?: string | undefined;
8021
- /**
8022
- * <p>
8023
- * Checks whether you have the required permissions for the action, without actually making the request, and provides
8024
- * an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
8025
- * </p>
8026
- * @public
8027
- */
8028
- DryRun?: boolean | undefined;
8029
- }
8030
- /**
8031
- * @public
8032
- */
8033
- export interface GetCapacityManagerMetricDimensionsResult {
8034
- /**
8035
- * <p>
8036
- * The available dimension combinations that have data within the specified time range and filters.
8037
- * </p>
8038
- * @public
8039
- */
8040
- MetricDimensionResults?: CapacityManagerDimension[] | undefined;
8041
- /**
8042
- * <p>
8043
- * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
8044
- * </p>
8045
- * @public
8046
- */
8047
- NextToken?: string | undefined;
8048
- }
8049
- /**
8050
- * @public
8051
- */
8052
- export interface GetCapacityManagerMonitoredTagKeysRequest {
8053
- /**
8054
- * <p>
8055
- * The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value. If not specified, up to 1000 results are returned.
8056
- * </p>
8057
- * @public
8058
- */
8059
- MaxResults?: number | undefined;
8060
- /**
8061
- * <p>
8062
- * The token for the next page of results. Use the value returned from a previous call to retrieve additional results.
8063
- * </p>
8064
- * @public
8065
- */
8066
- NextToken?: string | undefined;
8067
- /**
8068
- * <p>
8069
- * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
8070
- * If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
8071
- * </p>
8072
- * @public
8073
- */
8074
- DryRun?: boolean | undefined;
8075
- }
8076
- /**
8077
- * <p>
8078
- * Describes a tag key that is being monitored by Capacity Manager, including its activation status and the earliest available data point.
8079
- * </p>
8080
- * @public
8081
- */
8082
- export interface CapacityManagerMonitoredTagKey {
8083
- /**
8084
- * <p>
8085
- * The tag key being monitored.
8086
- * </p>
8087
- * @public
8088
- */
8089
- TagKey?: string | undefined;
8090
- /**
8091
- * <p>
8092
- * The current status of the monitored tag key. Valid values are <code>activating</code>, <code>activated</code>, <code>deactivating</code>, and <code>suspended</code>.
8093
- * </p>
8094
- * @public
8095
- */
8096
- Status?: CapacityManagerMonitoredTagKeyStatus | undefined;
8097
- /**
8098
- * <p>
8099
- * A message providing additional details about the current status of the monitored tag key.
8100
- * </p>
8101
- * @public
8102
- */
8103
- StatusMessage?: string | undefined;
8104
- /**
8105
- * <p>
8106
- * Indicates whether this tag key is provided by Capacity Manager by default, rather than being user-activated.
8107
- * </p>
8108
- * @public
8109
- */
8110
- CapacityManagerProvided?: boolean | undefined;
8111
- /**
8112
- * <p>
8113
- * The earliest timestamp from which tag data is available for queries, in UTC ISO 8601 format.
8114
- * </p>
8115
- * @public
8116
- */
8117
- EarliestDatapointTimestamp?: Date | undefined;
8118
- }