@aws-sdk/client-ec2 3.47.1 → 3.50.0

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 (799) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/EC2.js +75 -0
  3. package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
  4. package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
  5. package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
  7. package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
  8. package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
  9. package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
  10. package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
  11. package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
  12. package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
  13. package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
  14. package/dist-cjs/commands/ListImagesInRecycleBinCommand.js +36 -0
  15. package/dist-cjs/commands/ResetInstanceAttributeCommand.js +2 -2
  16. package/dist-cjs/commands/ResetNetworkInterfaceAttributeCommand.js +2 -2
  17. package/dist-cjs/commands/ResetSnapshotAttributeCommand.js +2 -2
  18. package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
  19. package/dist-cjs/commands/RestoreImageFromRecycleBinCommand.js +36 -0
  20. package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
  21. package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
  22. package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
  23. package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
  24. package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
  25. package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
  26. package/dist-cjs/commands/index.js +5 -0
  27. package/dist-cjs/models/models_0.js +14 -7
  28. package/dist-cjs/models/models_1.js +11 -6
  29. package/dist-cjs/models/models_2.js +7 -13
  30. package/dist-cjs/models/models_3.js +61 -53
  31. package/dist-cjs/models/models_4.js +89 -101
  32. package/dist-cjs/models/models_5.js +119 -114
  33. package/dist-cjs/models/models_6.js +122 -2
  34. package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListImagesInRecycleBinPaginator.js +35 -0
  36. package/dist-cjs/pagination/index.js +2 -0
  37. package/dist-cjs/protocols/Aws_ec2.js +695 -17
  38. package/dist-es/EC2.js +75 -0
  39. package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
  40. package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
  41. package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
  42. package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
  43. package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
  44. package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
  45. package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
  46. package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
  47. package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
  48. package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
  49. package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
  50. package/dist-es/commands/ListImagesInRecycleBinCommand.js +39 -0
  51. package/dist-es/commands/ResetInstanceAttributeCommand.js +1 -1
  52. package/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +1 -1
  53. package/dist-es/commands/ResetSnapshotAttributeCommand.js +1 -1
  54. package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
  55. package/dist-es/commands/RestoreImageFromRecycleBinCommand.js +39 -0
  56. package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
  57. package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
  58. package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
  59. package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
  60. package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
  61. package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
  62. package/dist-es/commands/index.js +5 -0
  63. package/dist-es/models/models_0.js +10 -5
  64. package/dist-es/models/models_1.js +5 -0
  65. package/dist-es/models/models_2.js +4 -8
  66. package/dist-es/models/models_3.js +41 -33
  67. package/dist-es/models/models_4.js +57 -75
  68. package/dist-es/models/models_5.js +87 -72
  69. package/dist-es/models/models_6.js +80 -0
  70. package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
  71. package/dist-es/pagination/ListImagesInRecycleBinPaginator.js +74 -0
  72. package/dist-es/pagination/index.js +2 -0
  73. package/dist-es/protocols/Aws_ec2.js +1734 -1028
  74. package/dist-types/EC2.d.ts +68 -4
  75. package/dist-types/EC2Client.d.ts +7 -2
  76. package/dist-types/commands/CreateImageCommand.d.ts +6 -0
  77. package/dist-types/commands/DeregisterImageCommand.d.ts +12 -4
  78. package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
  79. package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
  80. package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
  81. package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
  82. package/dist-types/commands/DisableFastLaunchCommand.d.ts +40 -0
  83. package/dist-types/commands/EnableFastLaunchCommand.d.ts +43 -0
  84. package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
  85. package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
  86. package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
  87. package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
  88. package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
  89. package/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +37 -0
  90. package/dist-types/commands/ResetInstanceAttributeCommand.d.ts +1 -1
  91. package/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +1 -1
  92. package/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +1 -1
  93. package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
  94. package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +35 -0
  95. package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
  96. package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
  97. package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
  98. package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
  99. package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
  100. package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
  101. package/dist-types/commands/index.d.ts +5 -0
  102. package/dist-types/models/models_0.d.ts +53 -11
  103. package/dist-types/models/models_1.d.ts +11 -8
  104. package/dist-types/models/models_2.d.ts +43 -71
  105. package/dist-types/models/models_3.d.ts +240 -298
  106. package/dist-types/models/models_4.d.ts +500 -334
  107. package/dist-types/models/models_5.d.ts +451 -522
  108. package/dist-types/models/models_6.d.ts +520 -5
  109. package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
  110. package/dist-types/pagination/ListImagesInRecycleBinPaginator.d.ts +4 -0
  111. package/dist-types/pagination/index.d.ts +2 -0
  112. package/dist-types/protocols/Aws_ec2.d.ts +15 -0
  113. package/package.json +41 -35
  114. package/dist-types/ts3.4/EC2.d.ts +0 -2585
  115. package/dist-types/ts3.4/EC2Client.d.ts +0 -589
  116. package/dist-types/ts3.4/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +0 -17
  117. package/dist-types/ts3.4/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +0 -17
  118. package/dist-types/ts3.4/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +0 -17
  119. package/dist-types/ts3.4/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +0 -17
  120. package/dist-types/ts3.4/commands/AcceptVpcEndpointConnectionsCommand.d.ts +0 -17
  121. package/dist-types/ts3.4/commands/AcceptVpcPeeringConnectionCommand.d.ts +0 -17
  122. package/dist-types/ts3.4/commands/AdvertiseByoipCidrCommand.d.ts +0 -17
  123. package/dist-types/ts3.4/commands/AllocateAddressCommand.d.ts +0 -17
  124. package/dist-types/ts3.4/commands/AllocateHostsCommand.d.ts +0 -17
  125. package/dist-types/ts3.4/commands/AllocateIpamPoolCidrCommand.d.ts +0 -17
  126. package/dist-types/ts3.4/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +0 -17
  127. package/dist-types/ts3.4/commands/AssignIpv6AddressesCommand.d.ts +0 -17
  128. package/dist-types/ts3.4/commands/AssignPrivateIpAddressesCommand.d.ts +0 -17
  129. package/dist-types/ts3.4/commands/AssociateAddressCommand.d.ts +0 -17
  130. package/dist-types/ts3.4/commands/AssociateClientVpnTargetNetworkCommand.d.ts +0 -17
  131. package/dist-types/ts3.4/commands/AssociateDhcpOptionsCommand.d.ts +0 -17
  132. package/dist-types/ts3.4/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +0 -17
  133. package/dist-types/ts3.4/commands/AssociateIamInstanceProfileCommand.d.ts +0 -17
  134. package/dist-types/ts3.4/commands/AssociateInstanceEventWindowCommand.d.ts +0 -17
  135. package/dist-types/ts3.4/commands/AssociateRouteTableCommand.d.ts +0 -17
  136. package/dist-types/ts3.4/commands/AssociateSubnetCidrBlockCommand.d.ts +0 -17
  137. package/dist-types/ts3.4/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +0 -17
  138. package/dist-types/ts3.4/commands/AssociateTransitGatewayRouteTableCommand.d.ts +0 -17
  139. package/dist-types/ts3.4/commands/AssociateTrunkInterfaceCommand.d.ts +0 -17
  140. package/dist-types/ts3.4/commands/AssociateVpcCidrBlockCommand.d.ts +0 -17
  141. package/dist-types/ts3.4/commands/AttachClassicLinkVpcCommand.d.ts +0 -17
  142. package/dist-types/ts3.4/commands/AttachInternetGatewayCommand.d.ts +0 -17
  143. package/dist-types/ts3.4/commands/AttachNetworkInterfaceCommand.d.ts +0 -17
  144. package/dist-types/ts3.4/commands/AttachVolumeCommand.d.ts +0 -17
  145. package/dist-types/ts3.4/commands/AttachVpnGatewayCommand.d.ts +0 -17
  146. package/dist-types/ts3.4/commands/AuthorizeClientVpnIngressCommand.d.ts +0 -17
  147. package/dist-types/ts3.4/commands/AuthorizeSecurityGroupEgressCommand.d.ts +0 -17
  148. package/dist-types/ts3.4/commands/AuthorizeSecurityGroupIngressCommand.d.ts +0 -17
  149. package/dist-types/ts3.4/commands/BundleInstanceCommand.d.ts +0 -17
  150. package/dist-types/ts3.4/commands/CancelBundleTaskCommand.d.ts +0 -17
  151. package/dist-types/ts3.4/commands/CancelCapacityReservationCommand.d.ts +0 -17
  152. package/dist-types/ts3.4/commands/CancelCapacityReservationFleetsCommand.d.ts +0 -17
  153. package/dist-types/ts3.4/commands/CancelConversionTaskCommand.d.ts +0 -17
  154. package/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +0 -17
  155. package/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +0 -17
  156. package/dist-types/ts3.4/commands/CancelReservedInstancesListingCommand.d.ts +0 -17
  157. package/dist-types/ts3.4/commands/CancelSpotFleetRequestsCommand.d.ts +0 -17
  158. package/dist-types/ts3.4/commands/CancelSpotInstanceRequestsCommand.d.ts +0 -17
  159. package/dist-types/ts3.4/commands/ConfirmProductInstanceCommand.d.ts +0 -17
  160. package/dist-types/ts3.4/commands/CopyFpgaImageCommand.d.ts +0 -17
  161. package/dist-types/ts3.4/commands/CopyImageCommand.d.ts +0 -17
  162. package/dist-types/ts3.4/commands/CopySnapshotCommand.d.ts +0 -17
  163. package/dist-types/ts3.4/commands/CreateCapacityReservationCommand.d.ts +0 -17
  164. package/dist-types/ts3.4/commands/CreateCapacityReservationFleetCommand.d.ts +0 -17
  165. package/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +0 -17
  166. package/dist-types/ts3.4/commands/CreateClientVpnEndpointCommand.d.ts +0 -17
  167. package/dist-types/ts3.4/commands/CreateClientVpnRouteCommand.d.ts +0 -17
  168. package/dist-types/ts3.4/commands/CreateCustomerGatewayCommand.d.ts +0 -17
  169. package/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +0 -17
  170. package/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +0 -17
  171. package/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +0 -17
  172. package/dist-types/ts3.4/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +0 -17
  173. package/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +0 -17
  174. package/dist-types/ts3.4/commands/CreateFlowLogsCommand.d.ts +0 -17
  175. package/dist-types/ts3.4/commands/CreateFpgaImageCommand.d.ts +0 -17
  176. package/dist-types/ts3.4/commands/CreateImageCommand.d.ts +0 -17
  177. package/dist-types/ts3.4/commands/CreateInstanceEventWindowCommand.d.ts +0 -17
  178. package/dist-types/ts3.4/commands/CreateInstanceExportTaskCommand.d.ts +0 -17
  179. package/dist-types/ts3.4/commands/CreateInternetGatewayCommand.d.ts +0 -17
  180. package/dist-types/ts3.4/commands/CreateIpamCommand.d.ts +0 -17
  181. package/dist-types/ts3.4/commands/CreateIpamPoolCommand.d.ts +0 -17
  182. package/dist-types/ts3.4/commands/CreateIpamScopeCommand.d.ts +0 -17
  183. package/dist-types/ts3.4/commands/CreateKeyPairCommand.d.ts +0 -17
  184. package/dist-types/ts3.4/commands/CreateLaunchTemplateCommand.d.ts +0 -17
  185. package/dist-types/ts3.4/commands/CreateLaunchTemplateVersionCommand.d.ts +0 -17
  186. package/dist-types/ts3.4/commands/CreateLocalGatewayRouteCommand.d.ts +0 -17
  187. package/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +0 -17
  188. package/dist-types/ts3.4/commands/CreateManagedPrefixListCommand.d.ts +0 -17
  189. package/dist-types/ts3.4/commands/CreateNatGatewayCommand.d.ts +0 -17
  190. package/dist-types/ts3.4/commands/CreateNetworkAclCommand.d.ts +0 -17
  191. package/dist-types/ts3.4/commands/CreateNetworkAclEntryCommand.d.ts +0 -17
  192. package/dist-types/ts3.4/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +0 -17
  193. package/dist-types/ts3.4/commands/CreateNetworkInsightsPathCommand.d.ts +0 -17
  194. package/dist-types/ts3.4/commands/CreateNetworkInterfaceCommand.d.ts +0 -17
  195. package/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +0 -17
  196. package/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +0 -17
  197. package/dist-types/ts3.4/commands/CreatePublicIpv4PoolCommand.d.ts +0 -17
  198. package/dist-types/ts3.4/commands/CreateReplaceRootVolumeTaskCommand.d.ts +0 -17
  199. package/dist-types/ts3.4/commands/CreateReservedInstancesListingCommand.d.ts +0 -17
  200. package/dist-types/ts3.4/commands/CreateRestoreImageTaskCommand.d.ts +0 -17
  201. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +0 -17
  202. package/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +0 -17
  203. package/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +0 -17
  204. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +0 -17
  205. package/dist-types/ts3.4/commands/CreateSnapshotsCommand.d.ts +0 -17
  206. package/dist-types/ts3.4/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +0 -17
  207. package/dist-types/ts3.4/commands/CreateStoreImageTaskCommand.d.ts +0 -17
  208. package/dist-types/ts3.4/commands/CreateSubnetCidrReservationCommand.d.ts +0 -17
  209. package/dist-types/ts3.4/commands/CreateSubnetCommand.d.ts +0 -17
  210. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +0 -17
  211. package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +0 -17
  212. package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +0 -17
  213. package/dist-types/ts3.4/commands/CreateTrafficMirrorSessionCommand.d.ts +0 -17
  214. package/dist-types/ts3.4/commands/CreateTrafficMirrorTargetCommand.d.ts +0 -17
  215. package/dist-types/ts3.4/commands/CreateTransitGatewayCommand.d.ts +0 -17
  216. package/dist-types/ts3.4/commands/CreateTransitGatewayConnectCommand.d.ts +0 -17
  217. package/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +0 -18
  218. package/dist-types/ts3.4/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +0 -17
  219. package/dist-types/ts3.4/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +0 -17
  220. package/dist-types/ts3.4/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +0 -17
  221. package/dist-types/ts3.4/commands/CreateTransitGatewayRouteCommand.d.ts +0 -17
  222. package/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableCommand.d.ts +0 -17
  223. package/dist-types/ts3.4/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +0 -17
  224. package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +0 -17
  225. package/dist-types/ts3.4/commands/CreateVpcCommand.d.ts +0 -17
  226. package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +0 -17
  227. package/dist-types/ts3.4/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +0 -17
  228. package/dist-types/ts3.4/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +0 -17
  229. package/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +0 -17
  230. package/dist-types/ts3.4/commands/CreateVpnConnectionCommand.d.ts +0 -17
  231. package/dist-types/ts3.4/commands/CreateVpnConnectionRouteCommand.d.ts +0 -17
  232. package/dist-types/ts3.4/commands/CreateVpnGatewayCommand.d.ts +0 -17
  233. package/dist-types/ts3.4/commands/DeleteCarrierGatewayCommand.d.ts +0 -17
  234. package/dist-types/ts3.4/commands/DeleteClientVpnEndpointCommand.d.ts +0 -17
  235. package/dist-types/ts3.4/commands/DeleteClientVpnRouteCommand.d.ts +0 -17
  236. package/dist-types/ts3.4/commands/DeleteCustomerGatewayCommand.d.ts +0 -17
  237. package/dist-types/ts3.4/commands/DeleteDhcpOptionsCommand.d.ts +0 -17
  238. package/dist-types/ts3.4/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +0 -17
  239. package/dist-types/ts3.4/commands/DeleteFleetsCommand.d.ts +0 -17
  240. package/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +0 -17
  241. package/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +0 -17
  242. package/dist-types/ts3.4/commands/DeleteInstanceEventWindowCommand.d.ts +0 -17
  243. package/dist-types/ts3.4/commands/DeleteInternetGatewayCommand.d.ts +0 -17
  244. package/dist-types/ts3.4/commands/DeleteIpamCommand.d.ts +0 -17
  245. package/dist-types/ts3.4/commands/DeleteIpamPoolCommand.d.ts +0 -17
  246. package/dist-types/ts3.4/commands/DeleteIpamScopeCommand.d.ts +0 -17
  247. package/dist-types/ts3.4/commands/DeleteKeyPairCommand.d.ts +0 -17
  248. package/dist-types/ts3.4/commands/DeleteLaunchTemplateCommand.d.ts +0 -17
  249. package/dist-types/ts3.4/commands/DeleteLaunchTemplateVersionsCommand.d.ts +0 -17
  250. package/dist-types/ts3.4/commands/DeleteLocalGatewayRouteCommand.d.ts +0 -17
  251. package/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +0 -17
  252. package/dist-types/ts3.4/commands/DeleteManagedPrefixListCommand.d.ts +0 -17
  253. package/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +0 -17
  254. package/dist-types/ts3.4/commands/DeleteNetworkAclCommand.d.ts +0 -17
  255. package/dist-types/ts3.4/commands/DeleteNetworkAclEntryCommand.d.ts +0 -17
  256. package/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +0 -17
  257. package/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +0 -17
  258. package/dist-types/ts3.4/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +0 -17
  259. package/dist-types/ts3.4/commands/DeleteNetworkInsightsPathCommand.d.ts +0 -17
  260. package/dist-types/ts3.4/commands/DeleteNetworkInterfaceCommand.d.ts +0 -17
  261. package/dist-types/ts3.4/commands/DeleteNetworkInterfacePermissionCommand.d.ts +0 -17
  262. package/dist-types/ts3.4/commands/DeletePlacementGroupCommand.d.ts +0 -17
  263. package/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +0 -17
  264. package/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +0 -17
  265. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +0 -17
  266. package/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +0 -17
  267. package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +0 -17
  268. package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +0 -17
  269. package/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +0 -17
  270. package/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +0 -17
  271. package/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +0 -17
  272. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +0 -17
  273. package/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +0 -17
  274. package/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +0 -17
  275. package/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +0 -17
  276. package/dist-types/ts3.4/commands/DeleteTrafficMirrorTargetCommand.d.ts +0 -17
  277. package/dist-types/ts3.4/commands/DeleteTransitGatewayCommand.d.ts +0 -17
  278. package/dist-types/ts3.4/commands/DeleteTransitGatewayConnectCommand.d.ts +0 -17
  279. package/dist-types/ts3.4/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +0 -17
  280. package/dist-types/ts3.4/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +0 -17
  281. package/dist-types/ts3.4/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +0 -17
  282. package/dist-types/ts3.4/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +0 -17
  283. package/dist-types/ts3.4/commands/DeleteTransitGatewayRouteCommand.d.ts +0 -17
  284. package/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableCommand.d.ts +0 -17
  285. package/dist-types/ts3.4/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +0 -17
  286. package/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +0 -17
  287. package/dist-types/ts3.4/commands/DeleteVpcCommand.d.ts +0 -17
  288. package/dist-types/ts3.4/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +0 -17
  289. package/dist-types/ts3.4/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +0 -17
  290. package/dist-types/ts3.4/commands/DeleteVpcEndpointsCommand.d.ts +0 -17
  291. package/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +0 -17
  292. package/dist-types/ts3.4/commands/DeleteVpnConnectionCommand.d.ts +0 -17
  293. package/dist-types/ts3.4/commands/DeleteVpnConnectionRouteCommand.d.ts +0 -17
  294. package/dist-types/ts3.4/commands/DeleteVpnGatewayCommand.d.ts +0 -17
  295. package/dist-types/ts3.4/commands/DeprovisionByoipCidrCommand.d.ts +0 -17
  296. package/dist-types/ts3.4/commands/DeprovisionIpamPoolCidrCommand.d.ts +0 -17
  297. package/dist-types/ts3.4/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +0 -17
  298. package/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +0 -17
  299. package/dist-types/ts3.4/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +0 -17
  300. package/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +0 -17
  301. package/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +0 -17
  302. package/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +0 -17
  303. package/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +0 -17
  304. package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +0 -17
  305. package/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +0 -17
  306. package/dist-types/ts3.4/commands/DescribeAvailabilityZonesCommand.d.ts +0 -17
  307. package/dist-types/ts3.4/commands/DescribeBundleTasksCommand.d.ts +0 -17
  308. package/dist-types/ts3.4/commands/DescribeByoipCidrsCommand.d.ts +0 -17
  309. package/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +0 -17
  310. package/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +0 -17
  311. package/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +0 -17
  312. package/dist-types/ts3.4/commands/DescribeClassicLinkInstancesCommand.d.ts +0 -17
  313. package/dist-types/ts3.4/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +0 -17
  314. package/dist-types/ts3.4/commands/DescribeClientVpnConnectionsCommand.d.ts +0 -17
  315. package/dist-types/ts3.4/commands/DescribeClientVpnEndpointsCommand.d.ts +0 -17
  316. package/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +0 -17
  317. package/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +0 -17
  318. package/dist-types/ts3.4/commands/DescribeCoipPoolsCommand.d.ts +0 -17
  319. package/dist-types/ts3.4/commands/DescribeConversionTasksCommand.d.ts +0 -18
  320. package/dist-types/ts3.4/commands/DescribeCustomerGatewaysCommand.d.ts +0 -17
  321. package/dist-types/ts3.4/commands/DescribeDhcpOptionsCommand.d.ts +0 -17
  322. package/dist-types/ts3.4/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +0 -17
  323. package/dist-types/ts3.4/commands/DescribeElasticGpusCommand.d.ts +0 -17
  324. package/dist-types/ts3.4/commands/DescribeExportImageTasksCommand.d.ts +0 -17
  325. package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +0 -17
  326. package/dist-types/ts3.4/commands/DescribeFastSnapshotRestoresCommand.d.ts +0 -17
  327. package/dist-types/ts3.4/commands/DescribeFleetHistoryCommand.d.ts +0 -17
  328. package/dist-types/ts3.4/commands/DescribeFleetInstancesCommand.d.ts +0 -17
  329. package/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +0 -17
  330. package/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +0 -17
  331. package/dist-types/ts3.4/commands/DescribeFpgaImageAttributeCommand.d.ts +0 -17
  332. package/dist-types/ts3.4/commands/DescribeFpgaImagesCommand.d.ts +0 -17
  333. package/dist-types/ts3.4/commands/DescribeHostReservationOfferingsCommand.d.ts +0 -17
  334. package/dist-types/ts3.4/commands/DescribeHostReservationsCommand.d.ts +0 -17
  335. package/dist-types/ts3.4/commands/DescribeHostsCommand.d.ts +0 -17
  336. package/dist-types/ts3.4/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +0 -17
  337. package/dist-types/ts3.4/commands/DescribeIdFormatCommand.d.ts +0 -17
  338. package/dist-types/ts3.4/commands/DescribeIdentityIdFormatCommand.d.ts +0 -17
  339. package/dist-types/ts3.4/commands/DescribeImageAttributeCommand.d.ts +0 -17
  340. package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +0 -17
  341. package/dist-types/ts3.4/commands/DescribeImportImageTasksCommand.d.ts +0 -17
  342. package/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +0 -17
  343. package/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +0 -17
  344. package/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +0 -17
  345. package/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +0 -17
  346. package/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +0 -17
  347. package/dist-types/ts3.4/commands/DescribeInstanceStatusCommand.d.ts +0 -17
  348. package/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +0 -17
  349. package/dist-types/ts3.4/commands/DescribeInstanceTypesCommand.d.ts +0 -17
  350. package/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +0 -17
  351. package/dist-types/ts3.4/commands/DescribeInternetGatewaysCommand.d.ts +0 -17
  352. package/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +0 -17
  353. package/dist-types/ts3.4/commands/DescribeIpamScopesCommand.d.ts +0 -17
  354. package/dist-types/ts3.4/commands/DescribeIpamsCommand.d.ts +0 -17
  355. package/dist-types/ts3.4/commands/DescribeIpv6PoolsCommand.d.ts +0 -17
  356. package/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +0 -17
  357. package/dist-types/ts3.4/commands/DescribeLaunchTemplateVersionsCommand.d.ts +0 -17
  358. package/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +0 -17
  359. package/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +0 -17
  360. package/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +0 -17
  361. package/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +0 -17
  362. package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +0 -17
  363. package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +0 -17
  364. package/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +0 -17
  365. package/dist-types/ts3.4/commands/DescribeManagedPrefixListsCommand.d.ts +0 -17
  366. package/dist-types/ts3.4/commands/DescribeMovingAddressesCommand.d.ts +0 -17
  367. package/dist-types/ts3.4/commands/DescribeNatGatewaysCommand.d.ts +0 -17
  368. package/dist-types/ts3.4/commands/DescribeNetworkAclsCommand.d.ts +0 -17
  369. package/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +0 -17
  370. package/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +0 -17
  371. package/dist-types/ts3.4/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +0 -17
  372. package/dist-types/ts3.4/commands/DescribeNetworkInsightsPathsCommand.d.ts +0 -17
  373. package/dist-types/ts3.4/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +0 -17
  374. package/dist-types/ts3.4/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +0 -17
  375. package/dist-types/ts3.4/commands/DescribeNetworkInterfacesCommand.d.ts +0 -17
  376. package/dist-types/ts3.4/commands/DescribePlacementGroupsCommand.d.ts +0 -17
  377. package/dist-types/ts3.4/commands/DescribePrefixListsCommand.d.ts +0 -17
  378. package/dist-types/ts3.4/commands/DescribePrincipalIdFormatCommand.d.ts +0 -17
  379. package/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +0 -17
  380. package/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +0 -17
  381. package/dist-types/ts3.4/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +0 -17
  382. package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +0 -17
  383. package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +0 -17
  384. package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +0 -18
  385. package/dist-types/ts3.4/commands/DescribeReservedInstancesOfferingsCommand.d.ts +0 -17
  386. package/dist-types/ts3.4/commands/DescribeRouteTablesCommand.d.ts +0 -17
  387. package/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +0 -17
  388. package/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +0 -17
  389. package/dist-types/ts3.4/commands/DescribeSecurityGroupReferencesCommand.d.ts +0 -17
  390. package/dist-types/ts3.4/commands/DescribeSecurityGroupRulesCommand.d.ts +0 -17
  391. package/dist-types/ts3.4/commands/DescribeSecurityGroupsCommand.d.ts +0 -17
  392. package/dist-types/ts3.4/commands/DescribeSnapshotAttributeCommand.d.ts +0 -17
  393. package/dist-types/ts3.4/commands/DescribeSnapshotTierStatusCommand.d.ts +0 -17
  394. package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +0 -17
  395. package/dist-types/ts3.4/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +0 -17
  396. package/dist-types/ts3.4/commands/DescribeSpotFleetInstancesCommand.d.ts +0 -17
  397. package/dist-types/ts3.4/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +0 -17
  398. package/dist-types/ts3.4/commands/DescribeSpotFleetRequestsCommand.d.ts +0 -17
  399. package/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +0 -17
  400. package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +0 -17
  401. package/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +0 -17
  402. package/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +0 -17
  403. package/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +0 -17
  404. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +0 -17
  405. package/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +0 -17
  406. package/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +0 -17
  407. package/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +0 -17
  408. package/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +0 -17
  409. package/dist-types/ts3.4/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +0 -17
  410. package/dist-types/ts3.4/commands/DescribeTransitGatewayConnectsCommand.d.ts +0 -17
  411. package/dist-types/ts3.4/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +0 -17
  412. package/dist-types/ts3.4/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +0 -17
  413. package/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +0 -17
  414. package/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +0 -17
  415. package/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +0 -17
  416. package/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +0 -17
  417. package/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +0 -17
  418. package/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +0 -17
  419. package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +0 -17
  420. package/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +0 -17
  421. package/dist-types/ts3.4/commands/DescribeVpcAttributeCommand.d.ts +0 -17
  422. package/dist-types/ts3.4/commands/DescribeVpcClassicLinkCommand.d.ts +0 -17
  423. package/dist-types/ts3.4/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +0 -17
  424. package/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +0 -17
  425. package/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +0 -17
  426. package/dist-types/ts3.4/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +0 -17
  427. package/dist-types/ts3.4/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +0 -17
  428. package/dist-types/ts3.4/commands/DescribeVpcEndpointServicesCommand.d.ts +0 -17
  429. package/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +0 -17
  430. package/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +0 -17
  431. package/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +0 -17
  432. package/dist-types/ts3.4/commands/DescribeVpnConnectionsCommand.d.ts +0 -17
  433. package/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +0 -17
  434. package/dist-types/ts3.4/commands/DetachClassicLinkVpcCommand.d.ts +0 -17
  435. package/dist-types/ts3.4/commands/DetachInternetGatewayCommand.d.ts +0 -17
  436. package/dist-types/ts3.4/commands/DetachNetworkInterfaceCommand.d.ts +0 -17
  437. package/dist-types/ts3.4/commands/DetachVolumeCommand.d.ts +0 -18
  438. package/dist-types/ts3.4/commands/DetachVpnGatewayCommand.d.ts +0 -17
  439. package/dist-types/ts3.4/commands/DisableEbsEncryptionByDefaultCommand.d.ts +0 -17
  440. package/dist-types/ts3.4/commands/DisableFastSnapshotRestoresCommand.d.ts +0 -17
  441. package/dist-types/ts3.4/commands/DisableImageDeprecationCommand.d.ts +0 -17
  442. package/dist-types/ts3.4/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +0 -17
  443. package/dist-types/ts3.4/commands/DisableSerialConsoleAccessCommand.d.ts +0 -17
  444. package/dist-types/ts3.4/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +0 -17
  445. package/dist-types/ts3.4/commands/DisableVgwRoutePropagationCommand.d.ts +0 -17
  446. package/dist-types/ts3.4/commands/DisableVpcClassicLinkCommand.d.ts +0 -17
  447. package/dist-types/ts3.4/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +0 -17
  448. package/dist-types/ts3.4/commands/DisassociateAddressCommand.d.ts +0 -17
  449. package/dist-types/ts3.4/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +0 -17
  450. package/dist-types/ts3.4/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +0 -17
  451. package/dist-types/ts3.4/commands/DisassociateIamInstanceProfileCommand.d.ts +0 -17
  452. package/dist-types/ts3.4/commands/DisassociateInstanceEventWindowCommand.d.ts +0 -17
  453. package/dist-types/ts3.4/commands/DisassociateRouteTableCommand.d.ts +0 -17
  454. package/dist-types/ts3.4/commands/DisassociateSubnetCidrBlockCommand.d.ts +0 -17
  455. package/dist-types/ts3.4/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +0 -17
  456. package/dist-types/ts3.4/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +0 -17
  457. package/dist-types/ts3.4/commands/DisassociateTrunkInterfaceCommand.d.ts +0 -17
  458. package/dist-types/ts3.4/commands/DisassociateVpcCidrBlockCommand.d.ts +0 -17
  459. package/dist-types/ts3.4/commands/EnableEbsEncryptionByDefaultCommand.d.ts +0 -17
  460. package/dist-types/ts3.4/commands/EnableFastSnapshotRestoresCommand.d.ts +0 -17
  461. package/dist-types/ts3.4/commands/EnableImageDeprecationCommand.d.ts +0 -17
  462. package/dist-types/ts3.4/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +0 -17
  463. package/dist-types/ts3.4/commands/EnableSerialConsoleAccessCommand.d.ts +0 -17
  464. package/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +0 -17
  465. package/dist-types/ts3.4/commands/EnableVgwRoutePropagationCommand.d.ts +0 -17
  466. package/dist-types/ts3.4/commands/EnableVolumeIOCommand.d.ts +0 -17
  467. package/dist-types/ts3.4/commands/EnableVpcClassicLinkCommand.d.ts +0 -17
  468. package/dist-types/ts3.4/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +0 -17
  469. package/dist-types/ts3.4/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +0 -17
  470. package/dist-types/ts3.4/commands/ExportClientVpnClientConfigurationCommand.d.ts +0 -17
  471. package/dist-types/ts3.4/commands/ExportImageCommand.d.ts +0 -17
  472. package/dist-types/ts3.4/commands/ExportTransitGatewayRoutesCommand.d.ts +0 -17
  473. package/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +0 -17
  474. package/dist-types/ts3.4/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +0 -17
  475. package/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +0 -17
  476. package/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +0 -17
  477. package/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +0 -17
  478. package/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +0 -17
  479. package/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +0 -17
  480. package/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +0 -17
  481. package/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +0 -17
  482. package/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +0 -17
  483. package/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +0 -17
  484. package/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +0 -17
  485. package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +0 -17
  486. package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +0 -17
  487. package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +0 -17
  488. package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +0 -17
  489. package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +0 -18
  490. package/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +0 -17
  491. package/dist-types/ts3.4/commands/GetManagedPrefixListAssociationsCommand.d.ts +0 -17
  492. package/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +0 -17
  493. package/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +0 -17
  494. package/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +0 -17
  495. package/dist-types/ts3.4/commands/GetPasswordDataCommand.d.ts +0 -17
  496. package/dist-types/ts3.4/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +0 -17
  497. package/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +0 -17
  498. package/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +0 -17
  499. package/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +0 -17
  500. package/dist-types/ts3.4/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +0 -17
  501. package/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +0 -17
  502. package/dist-types/ts3.4/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +0 -17
  503. package/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +0 -17
  504. package/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +0 -17
  505. package/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +0 -17
  506. package/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +0 -17
  507. package/dist-types/ts3.4/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +0 -17
  508. package/dist-types/ts3.4/commands/ImportImageCommand.d.ts +0 -17
  509. package/dist-types/ts3.4/commands/ImportInstanceCommand.d.ts +0 -17
  510. package/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +0 -17
  511. package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +0 -17
  512. package/dist-types/ts3.4/commands/ImportVolumeCommand.d.ts +0 -17
  513. package/dist-types/ts3.4/commands/ListSnapshotsInRecycleBinCommand.d.ts +0 -17
  514. package/dist-types/ts3.4/commands/ModifyAddressAttributeCommand.d.ts +0 -17
  515. package/dist-types/ts3.4/commands/ModifyAvailabilityZoneGroupCommand.d.ts +0 -17
  516. package/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +0 -17
  517. package/dist-types/ts3.4/commands/ModifyCapacityReservationFleetCommand.d.ts +0 -17
  518. package/dist-types/ts3.4/commands/ModifyClientVpnEndpointCommand.d.ts +0 -17
  519. package/dist-types/ts3.4/commands/ModifyDefaultCreditSpecificationCommand.d.ts +0 -17
  520. package/dist-types/ts3.4/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +0 -17
  521. package/dist-types/ts3.4/commands/ModifyFleetCommand.d.ts +0 -17
  522. package/dist-types/ts3.4/commands/ModifyFpgaImageAttributeCommand.d.ts +0 -17
  523. package/dist-types/ts3.4/commands/ModifyHostsCommand.d.ts +0 -17
  524. package/dist-types/ts3.4/commands/ModifyIdFormatCommand.d.ts +0 -17
  525. package/dist-types/ts3.4/commands/ModifyIdentityIdFormatCommand.d.ts +0 -17
  526. package/dist-types/ts3.4/commands/ModifyImageAttributeCommand.d.ts +0 -17
  527. package/dist-types/ts3.4/commands/ModifyInstanceAttributeCommand.d.ts +0 -17
  528. package/dist-types/ts3.4/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +0 -17
  529. package/dist-types/ts3.4/commands/ModifyInstanceCreditSpecificationCommand.d.ts +0 -17
  530. package/dist-types/ts3.4/commands/ModifyInstanceEventStartTimeCommand.d.ts +0 -17
  531. package/dist-types/ts3.4/commands/ModifyInstanceEventWindowCommand.d.ts +0 -17
  532. package/dist-types/ts3.4/commands/ModifyInstanceMetadataOptionsCommand.d.ts +0 -17
  533. package/dist-types/ts3.4/commands/ModifyInstancePlacementCommand.d.ts +0 -17
  534. package/dist-types/ts3.4/commands/ModifyIpamCommand.d.ts +0 -17
  535. package/dist-types/ts3.4/commands/ModifyIpamPoolCommand.d.ts +0 -17
  536. package/dist-types/ts3.4/commands/ModifyIpamResourceCidrCommand.d.ts +0 -17
  537. package/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +0 -17
  538. package/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +0 -17
  539. package/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +0 -17
  540. package/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +0 -17
  541. package/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +0 -17
  542. package/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +0 -17
  543. package/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +0 -17
  544. package/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +0 -17
  545. package/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +0 -17
  546. package/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +0 -17
  547. package/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +0 -17
  548. package/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +0 -17
  549. package/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +0 -17
  550. package/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +0 -17
  551. package/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +0 -17
  552. package/dist-types/ts3.4/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +0 -17
  553. package/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +0 -17
  554. package/dist-types/ts3.4/commands/ModifyVolumeAttributeCommand.d.ts +0 -17
  555. package/dist-types/ts3.4/commands/ModifyVolumeCommand.d.ts +0 -17
  556. package/dist-types/ts3.4/commands/ModifyVpcAttributeCommand.d.ts +0 -17
  557. package/dist-types/ts3.4/commands/ModifyVpcEndpointCommand.d.ts +0 -17
  558. package/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +0 -17
  559. package/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +0 -17
  560. package/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +0 -17
  561. package/dist-types/ts3.4/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +0 -17
  562. package/dist-types/ts3.4/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +0 -17
  563. package/dist-types/ts3.4/commands/ModifyVpcTenancyCommand.d.ts +0 -17
  564. package/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +0 -17
  565. package/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +0 -17
  566. package/dist-types/ts3.4/commands/ModifyVpnTunnelCertificateCommand.d.ts +0 -17
  567. package/dist-types/ts3.4/commands/ModifyVpnTunnelOptionsCommand.d.ts +0 -17
  568. package/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +0 -17
  569. package/dist-types/ts3.4/commands/MoveAddressToVpcCommand.d.ts +0 -17
  570. package/dist-types/ts3.4/commands/MoveByoipCidrToIpamCommand.d.ts +0 -17
  571. package/dist-types/ts3.4/commands/ProvisionByoipCidrCommand.d.ts +0 -17
  572. package/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +0 -17
  573. package/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +0 -17
  574. package/dist-types/ts3.4/commands/PurchaseHostReservationCommand.d.ts +0 -17
  575. package/dist-types/ts3.4/commands/PurchaseReservedInstancesOfferingCommand.d.ts +0 -17
  576. package/dist-types/ts3.4/commands/PurchaseScheduledInstancesCommand.d.ts +0 -17
  577. package/dist-types/ts3.4/commands/RebootInstancesCommand.d.ts +0 -17
  578. package/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +0 -17
  579. package/dist-types/ts3.4/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +0 -17
  580. package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +0 -17
  581. package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +0 -17
  582. package/dist-types/ts3.4/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +0 -17
  583. package/dist-types/ts3.4/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +0 -17
  584. package/dist-types/ts3.4/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +0 -17
  585. package/dist-types/ts3.4/commands/RejectVpcEndpointConnectionsCommand.d.ts +0 -17
  586. package/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +0 -17
  587. package/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +0 -17
  588. package/dist-types/ts3.4/commands/ReleaseHostsCommand.d.ts +0 -17
  589. package/dist-types/ts3.4/commands/ReleaseIpamPoolAllocationCommand.d.ts +0 -17
  590. package/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +0 -17
  591. package/dist-types/ts3.4/commands/ReplaceNetworkAclAssociationCommand.d.ts +0 -17
  592. package/dist-types/ts3.4/commands/ReplaceNetworkAclEntryCommand.d.ts +0 -17
  593. package/dist-types/ts3.4/commands/ReplaceRouteCommand.d.ts +0 -17
  594. package/dist-types/ts3.4/commands/ReplaceRouteTableAssociationCommand.d.ts +0 -17
  595. package/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +0 -17
  596. package/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +0 -17
  597. package/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +0 -17
  598. package/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +0 -17
  599. package/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +0 -17
  600. package/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +0 -17
  601. package/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +0 -17
  602. package/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +0 -17
  603. package/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +0 -17
  604. package/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +0 -17
  605. package/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +0 -17
  606. package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +0 -17
  607. package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +0 -17
  608. package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +0 -17
  609. package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +0 -17
  610. package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +0 -17
  611. package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +0 -17
  612. package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +0 -17
  613. package/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +0 -18
  614. package/dist-types/ts3.4/commands/RunScheduledInstancesCommand.d.ts +0 -17
  615. package/dist-types/ts3.4/commands/SearchLocalGatewayRoutesCommand.d.ts +0 -17
  616. package/dist-types/ts3.4/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +0 -17
  617. package/dist-types/ts3.4/commands/SearchTransitGatewayRoutesCommand.d.ts +0 -17
  618. package/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +0 -17
  619. package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +0 -17
  620. package/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +0 -17
  621. package/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +0 -17
  622. package/dist-types/ts3.4/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +0 -17
  623. package/dist-types/ts3.4/commands/StopInstancesCommand.d.ts +0 -17
  624. package/dist-types/ts3.4/commands/TerminateClientVpnConnectionsCommand.d.ts +0 -17
  625. package/dist-types/ts3.4/commands/TerminateInstancesCommand.d.ts +0 -17
  626. package/dist-types/ts3.4/commands/UnassignIpv6AddressesCommand.d.ts +0 -17
  627. package/dist-types/ts3.4/commands/UnassignPrivateIpAddressesCommand.d.ts +0 -17
  628. package/dist-types/ts3.4/commands/UnmonitorInstancesCommand.d.ts +0 -17
  629. package/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +0 -17
  630. package/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +0 -17
  631. package/dist-types/ts3.4/commands/WithdrawByoipCidrCommand.d.ts +0 -17
  632. package/dist-types/ts3.4/commands/index.d.ts +0 -516
  633. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  634. package/dist-types/ts3.4/index.d.ts +0 -6
  635. package/dist-types/ts3.4/models/index.d.ts +0 -7
  636. package/dist-types/ts3.4/models/models_0.d.ts +0 -3384
  637. package/dist-types/ts3.4/models/models_1.d.ts +0 -3931
  638. package/dist-types/ts3.4/models/models_2.d.ts +0 -3447
  639. package/dist-types/ts3.4/models/models_3.d.ts +0 -3964
  640. package/dist-types/ts3.4/models/models_4.d.ts +0 -3903
  641. package/dist-types/ts3.4/models/models_5.d.ts +0 -3854
  642. package/dist-types/ts3.4/models/models_6.d.ts +0 -798
  643. package/dist-types/ts3.4/pagination/DescribeAddressesAttributePaginator.d.ts +0 -4
  644. package/dist-types/ts3.4/pagination/DescribeByoipCidrsPaginator.d.ts +0 -4
  645. package/dist-types/ts3.4/pagination/DescribeCapacityReservationFleetsPaginator.d.ts +0 -4
  646. package/dist-types/ts3.4/pagination/DescribeCapacityReservationsPaginator.d.ts +0 -4
  647. package/dist-types/ts3.4/pagination/DescribeCarrierGatewaysPaginator.d.ts +0 -4
  648. package/dist-types/ts3.4/pagination/DescribeClassicLinkInstancesPaginator.d.ts +0 -4
  649. package/dist-types/ts3.4/pagination/DescribeClientVpnAuthorizationRulesPaginator.d.ts +0 -4
  650. package/dist-types/ts3.4/pagination/DescribeClientVpnConnectionsPaginator.d.ts +0 -4
  651. package/dist-types/ts3.4/pagination/DescribeClientVpnEndpointsPaginator.d.ts +0 -4
  652. package/dist-types/ts3.4/pagination/DescribeClientVpnRoutesPaginator.d.ts +0 -4
  653. package/dist-types/ts3.4/pagination/DescribeClientVpnTargetNetworksPaginator.d.ts +0 -4
  654. package/dist-types/ts3.4/pagination/DescribeCoipPoolsPaginator.d.ts +0 -4
  655. package/dist-types/ts3.4/pagination/DescribeDhcpOptionsPaginator.d.ts +0 -4
  656. package/dist-types/ts3.4/pagination/DescribeEgressOnlyInternetGatewaysPaginator.d.ts +0 -4
  657. package/dist-types/ts3.4/pagination/DescribeExportImageTasksPaginator.d.ts +0 -4
  658. package/dist-types/ts3.4/pagination/DescribeFastSnapshotRestoresPaginator.d.ts +0 -4
  659. package/dist-types/ts3.4/pagination/DescribeFleetsPaginator.d.ts +0 -4
  660. package/dist-types/ts3.4/pagination/DescribeFlowLogsPaginator.d.ts +0 -4
  661. package/dist-types/ts3.4/pagination/DescribeFpgaImagesPaginator.d.ts +0 -4
  662. package/dist-types/ts3.4/pagination/DescribeHostReservationOfferingsPaginator.d.ts +0 -4
  663. package/dist-types/ts3.4/pagination/DescribeHostReservationsPaginator.d.ts +0 -4
  664. package/dist-types/ts3.4/pagination/DescribeHostsPaginator.d.ts +0 -4
  665. package/dist-types/ts3.4/pagination/DescribeIamInstanceProfileAssociationsPaginator.d.ts +0 -4
  666. package/dist-types/ts3.4/pagination/DescribeImportImageTasksPaginator.d.ts +0 -4
  667. package/dist-types/ts3.4/pagination/DescribeImportSnapshotTasksPaginator.d.ts +0 -4
  668. package/dist-types/ts3.4/pagination/DescribeInstanceCreditSpecificationsPaginator.d.ts +0 -4
  669. package/dist-types/ts3.4/pagination/DescribeInstanceEventWindowsPaginator.d.ts +0 -4
  670. package/dist-types/ts3.4/pagination/DescribeInstanceStatusPaginator.d.ts +0 -4
  671. package/dist-types/ts3.4/pagination/DescribeInstanceTypeOfferingsPaginator.d.ts +0 -4
  672. package/dist-types/ts3.4/pagination/DescribeInstanceTypesPaginator.d.ts +0 -4
  673. package/dist-types/ts3.4/pagination/DescribeInstancesPaginator.d.ts +0 -4
  674. package/dist-types/ts3.4/pagination/DescribeInternetGatewaysPaginator.d.ts +0 -4
  675. package/dist-types/ts3.4/pagination/DescribeIpamPoolsPaginator.d.ts +0 -4
  676. package/dist-types/ts3.4/pagination/DescribeIpamScopesPaginator.d.ts +0 -4
  677. package/dist-types/ts3.4/pagination/DescribeIpamsPaginator.d.ts +0 -4
  678. package/dist-types/ts3.4/pagination/DescribeIpv6PoolsPaginator.d.ts +0 -4
  679. package/dist-types/ts3.4/pagination/DescribeLaunchTemplateVersionsPaginator.d.ts +0 -4
  680. package/dist-types/ts3.4/pagination/DescribeLaunchTemplatesPaginator.d.ts +0 -4
  681. package/dist-types/ts3.4/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.d.ts +0 -4
  682. package/dist-types/ts3.4/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.d.ts +0 -4
  683. package/dist-types/ts3.4/pagination/DescribeLocalGatewayRouteTablesPaginator.d.ts +0 -4
  684. package/dist-types/ts3.4/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.d.ts +0 -4
  685. package/dist-types/ts3.4/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.d.ts +0 -4
  686. package/dist-types/ts3.4/pagination/DescribeLocalGatewaysPaginator.d.ts +0 -4
  687. package/dist-types/ts3.4/pagination/DescribeManagedPrefixListsPaginator.d.ts +0 -4
  688. package/dist-types/ts3.4/pagination/DescribeMovingAddressesPaginator.d.ts +0 -4
  689. package/dist-types/ts3.4/pagination/DescribeNatGatewaysPaginator.d.ts +0 -4
  690. package/dist-types/ts3.4/pagination/DescribeNetworkAclsPaginator.d.ts +0 -4
  691. package/dist-types/ts3.4/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.d.ts +0 -4
  692. package/dist-types/ts3.4/pagination/DescribeNetworkInsightsAccessScopesPaginator.d.ts +0 -4
  693. package/dist-types/ts3.4/pagination/DescribeNetworkInsightsAnalysesPaginator.d.ts +0 -4
  694. package/dist-types/ts3.4/pagination/DescribeNetworkInsightsPathsPaginator.d.ts +0 -4
  695. package/dist-types/ts3.4/pagination/DescribeNetworkInterfacePermissionsPaginator.d.ts +0 -4
  696. package/dist-types/ts3.4/pagination/DescribeNetworkInterfacesPaginator.d.ts +0 -4
  697. package/dist-types/ts3.4/pagination/DescribePrefixListsPaginator.d.ts +0 -4
  698. package/dist-types/ts3.4/pagination/DescribePrincipalIdFormatPaginator.d.ts +0 -4
  699. package/dist-types/ts3.4/pagination/DescribePublicIpv4PoolsPaginator.d.ts +0 -4
  700. package/dist-types/ts3.4/pagination/DescribeReplaceRootVolumeTasksPaginator.d.ts +0 -4
  701. package/dist-types/ts3.4/pagination/DescribeReservedInstancesModificationsPaginator.d.ts +0 -4
  702. package/dist-types/ts3.4/pagination/DescribeReservedInstancesOfferingsPaginator.d.ts +0 -4
  703. package/dist-types/ts3.4/pagination/DescribeRouteTablesPaginator.d.ts +0 -4
  704. package/dist-types/ts3.4/pagination/DescribeScheduledInstanceAvailabilityPaginator.d.ts +0 -4
  705. package/dist-types/ts3.4/pagination/DescribeScheduledInstancesPaginator.d.ts +0 -4
  706. package/dist-types/ts3.4/pagination/DescribeSecurityGroupRulesPaginator.d.ts +0 -4
  707. package/dist-types/ts3.4/pagination/DescribeSecurityGroupsPaginator.d.ts +0 -4
  708. package/dist-types/ts3.4/pagination/DescribeSnapshotTierStatusPaginator.d.ts +0 -4
  709. package/dist-types/ts3.4/pagination/DescribeSnapshotsPaginator.d.ts +0 -4
  710. package/dist-types/ts3.4/pagination/DescribeSpotFleetRequestsPaginator.d.ts +0 -4
  711. package/dist-types/ts3.4/pagination/DescribeSpotInstanceRequestsPaginator.d.ts +0 -4
  712. package/dist-types/ts3.4/pagination/DescribeSpotPriceHistoryPaginator.d.ts +0 -4
  713. package/dist-types/ts3.4/pagination/DescribeStaleSecurityGroupsPaginator.d.ts +0 -4
  714. package/dist-types/ts3.4/pagination/DescribeStoreImageTasksPaginator.d.ts +0 -4
  715. package/dist-types/ts3.4/pagination/DescribeSubnetsPaginator.d.ts +0 -4
  716. package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +0 -4
  717. package/dist-types/ts3.4/pagination/DescribeTrafficMirrorFiltersPaginator.d.ts +0 -4
  718. package/dist-types/ts3.4/pagination/DescribeTrafficMirrorSessionsPaginator.d.ts +0 -4
  719. package/dist-types/ts3.4/pagination/DescribeTrafficMirrorTargetsPaginator.d.ts +0 -4
  720. package/dist-types/ts3.4/pagination/DescribeTransitGatewayAttachmentsPaginator.d.ts +0 -4
  721. package/dist-types/ts3.4/pagination/DescribeTransitGatewayConnectPeersPaginator.d.ts +0 -4
  722. package/dist-types/ts3.4/pagination/DescribeTransitGatewayConnectsPaginator.d.ts +0 -4
  723. package/dist-types/ts3.4/pagination/DescribeTransitGatewayMulticastDomainsPaginator.d.ts +0 -4
  724. package/dist-types/ts3.4/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.d.ts +0 -4
  725. package/dist-types/ts3.4/pagination/DescribeTransitGatewayRouteTablesPaginator.d.ts +0 -4
  726. package/dist-types/ts3.4/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.d.ts +0 -4
  727. package/dist-types/ts3.4/pagination/DescribeTransitGatewaysPaginator.d.ts +0 -4
  728. package/dist-types/ts3.4/pagination/DescribeTrunkInterfaceAssociationsPaginator.d.ts +0 -4
  729. package/dist-types/ts3.4/pagination/DescribeVolumeStatusPaginator.d.ts +0 -4
  730. package/dist-types/ts3.4/pagination/DescribeVolumesModificationsPaginator.d.ts +0 -4
  731. package/dist-types/ts3.4/pagination/DescribeVolumesPaginator.d.ts +0 -4
  732. package/dist-types/ts3.4/pagination/DescribeVpcClassicLinkDnsSupportPaginator.d.ts +0 -4
  733. package/dist-types/ts3.4/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.d.ts +0 -4
  734. package/dist-types/ts3.4/pagination/DescribeVpcEndpointConnectionsPaginator.d.ts +0 -4
  735. package/dist-types/ts3.4/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.d.ts +0 -4
  736. package/dist-types/ts3.4/pagination/DescribeVpcEndpointServicePermissionsPaginator.d.ts +0 -4
  737. package/dist-types/ts3.4/pagination/DescribeVpcEndpointsPaginator.d.ts +0 -4
  738. package/dist-types/ts3.4/pagination/DescribeVpcPeeringConnectionsPaginator.d.ts +0 -4
  739. package/dist-types/ts3.4/pagination/DescribeVpcsPaginator.d.ts +0 -4
  740. package/dist-types/ts3.4/pagination/GetAssociatedIpv6PoolCidrsPaginator.d.ts +0 -4
  741. package/dist-types/ts3.4/pagination/GetGroupsForCapacityReservationPaginator.d.ts +0 -4
  742. package/dist-types/ts3.4/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.d.ts +0 -4
  743. package/dist-types/ts3.4/pagination/GetIpamAddressHistoryPaginator.d.ts +0 -4
  744. package/dist-types/ts3.4/pagination/GetIpamPoolAllocationsPaginator.d.ts +0 -4
  745. package/dist-types/ts3.4/pagination/GetIpamPoolCidrsPaginator.d.ts +0 -4
  746. package/dist-types/ts3.4/pagination/GetIpamResourceCidrsPaginator.d.ts +0 -4
  747. package/dist-types/ts3.4/pagination/GetManagedPrefixListAssociationsPaginator.d.ts +0 -4
  748. package/dist-types/ts3.4/pagination/GetManagedPrefixListEntriesPaginator.d.ts +0 -4
  749. package/dist-types/ts3.4/pagination/GetSpotPlacementScoresPaginator.d.ts +0 -4
  750. package/dist-types/ts3.4/pagination/GetTransitGatewayAttachmentPropagationsPaginator.d.ts +0 -4
  751. package/dist-types/ts3.4/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.d.ts +0 -4
  752. package/dist-types/ts3.4/pagination/GetTransitGatewayPrefixListReferencesPaginator.d.ts +0 -4
  753. package/dist-types/ts3.4/pagination/GetTransitGatewayRouteTableAssociationsPaginator.d.ts +0 -4
  754. package/dist-types/ts3.4/pagination/GetTransitGatewayRouteTablePropagationsPaginator.d.ts +0 -4
  755. package/dist-types/ts3.4/pagination/GetVpnConnectionDeviceTypesPaginator.d.ts +0 -4
  756. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  757. package/dist-types/ts3.4/pagination/ListSnapshotsInRecycleBinPaginator.d.ts +0 -4
  758. package/dist-types/ts3.4/pagination/SearchLocalGatewayRoutesPaginator.d.ts +0 -4
  759. package/dist-types/ts3.4/pagination/SearchTransitGatewayMulticastGroupsPaginator.d.ts +0 -4
  760. package/dist-types/ts3.4/pagination/index.d.ts +0 -117
  761. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +0 -1550
  762. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  763. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  764. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  765. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
  766. package/dist-types/ts3.4/waiters/index.d.ts +0 -33
  767. package/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +0 -7
  768. package/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +0 -7
  769. package/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +0 -7
  770. package/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +0 -7
  771. package/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +0 -7
  772. package/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +0 -7
  773. package/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +0 -7
  774. package/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +0 -7
  775. package/dist-types/ts3.4/waiters/waitForImageExists.d.ts +0 -7
  776. package/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +0 -7
  777. package/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +0 -7
  778. package/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +0 -7
  779. package/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +0 -7
  780. package/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +0 -7
  781. package/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +0 -7
  782. package/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +0 -7
  783. package/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +0 -7
  784. package/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +0 -7
  785. package/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +0 -7
  786. package/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +0 -7
  787. package/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +0 -7
  788. package/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +0 -7
  789. package/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +0 -7
  790. package/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +0 -7
  791. package/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +0 -7
  792. package/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +0 -7
  793. package/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +0 -7
  794. package/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +0 -7
  795. package/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +0 -7
  796. package/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +0 -7
  797. package/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +0 -7
  798. package/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +0 -7
  799. package/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +0 -7
@@ -1,2585 +0,0 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AcceptReservedInstancesExchangeQuoteCommandInput, AcceptReservedInstancesExchangeQuoteCommandOutput } from "./commands/AcceptReservedInstancesExchangeQuoteCommand";
3
- import { AcceptTransitGatewayMulticastDomainAssociationsCommandInput, AcceptTransitGatewayMulticastDomainAssociationsCommandOutput } from "./commands/AcceptTransitGatewayMulticastDomainAssociationsCommand";
4
- import { AcceptTransitGatewayPeeringAttachmentCommandInput, AcceptTransitGatewayPeeringAttachmentCommandOutput } from "./commands/AcceptTransitGatewayPeeringAttachmentCommand";
5
- import { AcceptTransitGatewayVpcAttachmentCommandInput, AcceptTransitGatewayVpcAttachmentCommandOutput } from "./commands/AcceptTransitGatewayVpcAttachmentCommand";
6
- import { AcceptVpcEndpointConnectionsCommandInput, AcceptVpcEndpointConnectionsCommandOutput } from "./commands/AcceptVpcEndpointConnectionsCommand";
7
- import { AcceptVpcPeeringConnectionCommandInput, AcceptVpcPeeringConnectionCommandOutput } from "./commands/AcceptVpcPeeringConnectionCommand";
8
- import { AdvertiseByoipCidrCommandInput, AdvertiseByoipCidrCommandOutput } from "./commands/AdvertiseByoipCidrCommand";
9
- import { AllocateAddressCommandInput, AllocateAddressCommandOutput } from "./commands/AllocateAddressCommand";
10
- import { AllocateHostsCommandInput, AllocateHostsCommandOutput } from "./commands/AllocateHostsCommand";
11
- import { AllocateIpamPoolCidrCommandInput, AllocateIpamPoolCidrCommandOutput } from "./commands/AllocateIpamPoolCidrCommand";
12
- import { ApplySecurityGroupsToClientVpnTargetNetworkCommandInput, ApplySecurityGroupsToClientVpnTargetNetworkCommandOutput } from "./commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand";
13
- import { AssignIpv6AddressesCommandInput, AssignIpv6AddressesCommandOutput } from "./commands/AssignIpv6AddressesCommand";
14
- import { AssignPrivateIpAddressesCommandInput, AssignPrivateIpAddressesCommandOutput } from "./commands/AssignPrivateIpAddressesCommand";
15
- import { AssociateAddressCommandInput, AssociateAddressCommandOutput } from "./commands/AssociateAddressCommand";
16
- import { AssociateClientVpnTargetNetworkCommandInput, AssociateClientVpnTargetNetworkCommandOutput } from "./commands/AssociateClientVpnTargetNetworkCommand";
17
- import { AssociateDhcpOptionsCommandInput, AssociateDhcpOptionsCommandOutput } from "./commands/AssociateDhcpOptionsCommand";
18
- import { AssociateEnclaveCertificateIamRoleCommandInput, AssociateEnclaveCertificateIamRoleCommandOutput } from "./commands/AssociateEnclaveCertificateIamRoleCommand";
19
- import { AssociateIamInstanceProfileCommandInput, AssociateIamInstanceProfileCommandOutput } from "./commands/AssociateIamInstanceProfileCommand";
20
- import { AssociateInstanceEventWindowCommandInput, AssociateInstanceEventWindowCommandOutput } from "./commands/AssociateInstanceEventWindowCommand";
21
- import { AssociateRouteTableCommandInput, AssociateRouteTableCommandOutput } from "./commands/AssociateRouteTableCommand";
22
- import { AssociateSubnetCidrBlockCommandInput, AssociateSubnetCidrBlockCommandOutput } from "./commands/AssociateSubnetCidrBlockCommand";
23
- import { AssociateTransitGatewayMulticastDomainCommandInput, AssociateTransitGatewayMulticastDomainCommandOutput } from "./commands/AssociateTransitGatewayMulticastDomainCommand";
24
- import { AssociateTransitGatewayRouteTableCommandInput, AssociateTransitGatewayRouteTableCommandOutput } from "./commands/AssociateTransitGatewayRouteTableCommand";
25
- import { AssociateTrunkInterfaceCommandInput, AssociateTrunkInterfaceCommandOutput } from "./commands/AssociateTrunkInterfaceCommand";
26
- import { AssociateVpcCidrBlockCommandInput, AssociateVpcCidrBlockCommandOutput } from "./commands/AssociateVpcCidrBlockCommand";
27
- import { AttachClassicLinkVpcCommandInput, AttachClassicLinkVpcCommandOutput } from "./commands/AttachClassicLinkVpcCommand";
28
- import { AttachInternetGatewayCommandInput, AttachInternetGatewayCommandOutput } from "./commands/AttachInternetGatewayCommand";
29
- import { AttachNetworkInterfaceCommandInput, AttachNetworkInterfaceCommandOutput } from "./commands/AttachNetworkInterfaceCommand";
30
- import { AttachVolumeCommandInput, AttachVolumeCommandOutput } from "./commands/AttachVolumeCommand";
31
- import { AttachVpnGatewayCommandInput, AttachVpnGatewayCommandOutput } from "./commands/AttachVpnGatewayCommand";
32
- import { AuthorizeClientVpnIngressCommandInput, AuthorizeClientVpnIngressCommandOutput } from "./commands/AuthorizeClientVpnIngressCommand";
33
- import { AuthorizeSecurityGroupEgressCommandInput, AuthorizeSecurityGroupEgressCommandOutput } from "./commands/AuthorizeSecurityGroupEgressCommand";
34
- import { AuthorizeSecurityGroupIngressCommandInput, AuthorizeSecurityGroupIngressCommandOutput } from "./commands/AuthorizeSecurityGroupIngressCommand";
35
- import { BundleInstanceCommandInput, BundleInstanceCommandOutput } from "./commands/BundleInstanceCommand";
36
- import { CancelBundleTaskCommandInput, CancelBundleTaskCommandOutput } from "./commands/CancelBundleTaskCommand";
37
- import { CancelCapacityReservationCommandInput, CancelCapacityReservationCommandOutput } from "./commands/CancelCapacityReservationCommand";
38
- import { CancelCapacityReservationFleetsCommandInput, CancelCapacityReservationFleetsCommandOutput } from "./commands/CancelCapacityReservationFleetsCommand";
39
- import { CancelConversionTaskCommandInput, CancelConversionTaskCommandOutput } from "./commands/CancelConversionTaskCommand";
40
- import { CancelExportTaskCommandInput, CancelExportTaskCommandOutput } from "./commands/CancelExportTaskCommand";
41
- import { CancelImportTaskCommandInput, CancelImportTaskCommandOutput } from "./commands/CancelImportTaskCommand";
42
- import { CancelReservedInstancesListingCommandInput, CancelReservedInstancesListingCommandOutput } from "./commands/CancelReservedInstancesListingCommand";
43
- import { CancelSpotFleetRequestsCommandInput, CancelSpotFleetRequestsCommandOutput } from "./commands/CancelSpotFleetRequestsCommand";
44
- import { CancelSpotInstanceRequestsCommandInput, CancelSpotInstanceRequestsCommandOutput } from "./commands/CancelSpotInstanceRequestsCommand";
45
- import { ConfirmProductInstanceCommandInput, ConfirmProductInstanceCommandOutput } from "./commands/ConfirmProductInstanceCommand";
46
- import { CopyFpgaImageCommandInput, CopyFpgaImageCommandOutput } from "./commands/CopyFpgaImageCommand";
47
- import { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
48
- import { CopySnapshotCommandInput, CopySnapshotCommandOutput } from "./commands/CopySnapshotCommand";
49
- import { CreateCapacityReservationCommandInput, CreateCapacityReservationCommandOutput } from "./commands/CreateCapacityReservationCommand";
50
- import { CreateCapacityReservationFleetCommandInput, CreateCapacityReservationFleetCommandOutput } from "./commands/CreateCapacityReservationFleetCommand";
51
- import { CreateCarrierGatewayCommandInput, CreateCarrierGatewayCommandOutput } from "./commands/CreateCarrierGatewayCommand";
52
- import { CreateClientVpnEndpointCommandInput, CreateClientVpnEndpointCommandOutput } from "./commands/CreateClientVpnEndpointCommand";
53
- import { CreateClientVpnRouteCommandInput, CreateClientVpnRouteCommandOutput } from "./commands/CreateClientVpnRouteCommand";
54
- import { CreateCustomerGatewayCommandInput, CreateCustomerGatewayCommandOutput } from "./commands/CreateCustomerGatewayCommand";
55
- import { CreateDefaultSubnetCommandInput, CreateDefaultSubnetCommandOutput } from "./commands/CreateDefaultSubnetCommand";
56
- import { CreateDefaultVpcCommandInput, CreateDefaultVpcCommandOutput } from "./commands/CreateDefaultVpcCommand";
57
- import { CreateDhcpOptionsCommandInput, CreateDhcpOptionsCommandOutput } from "./commands/CreateDhcpOptionsCommand";
58
- import { CreateEgressOnlyInternetGatewayCommandInput, CreateEgressOnlyInternetGatewayCommandOutput } from "./commands/CreateEgressOnlyInternetGatewayCommand";
59
- import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
60
- import { CreateFlowLogsCommandInput, CreateFlowLogsCommandOutput } from "./commands/CreateFlowLogsCommand";
61
- import { CreateFpgaImageCommandInput, CreateFpgaImageCommandOutput } from "./commands/CreateFpgaImageCommand";
62
- import { CreateImageCommandInput, CreateImageCommandOutput } from "./commands/CreateImageCommand";
63
- import { CreateInstanceEventWindowCommandInput, CreateInstanceEventWindowCommandOutput } from "./commands/CreateInstanceEventWindowCommand";
64
- import { CreateInstanceExportTaskCommandInput, CreateInstanceExportTaskCommandOutput } from "./commands/CreateInstanceExportTaskCommand";
65
- import { CreateInternetGatewayCommandInput, CreateInternetGatewayCommandOutput } from "./commands/CreateInternetGatewayCommand";
66
- import { CreateIpamCommandInput, CreateIpamCommandOutput } from "./commands/CreateIpamCommand";
67
- import { CreateIpamPoolCommandInput, CreateIpamPoolCommandOutput } from "./commands/CreateIpamPoolCommand";
68
- import { CreateIpamScopeCommandInput, CreateIpamScopeCommandOutput } from "./commands/CreateIpamScopeCommand";
69
- import { CreateKeyPairCommandInput, CreateKeyPairCommandOutput } from "./commands/CreateKeyPairCommand";
70
- import { CreateLaunchTemplateCommandInput, CreateLaunchTemplateCommandOutput } from "./commands/CreateLaunchTemplateCommand";
71
- import { CreateLaunchTemplateVersionCommandInput, CreateLaunchTemplateVersionCommandOutput } from "./commands/CreateLaunchTemplateVersionCommand";
72
- import { CreateLocalGatewayRouteCommandInput, CreateLocalGatewayRouteCommandOutput } from "./commands/CreateLocalGatewayRouteCommand";
73
- import { CreateLocalGatewayRouteTableVpcAssociationCommandInput, CreateLocalGatewayRouteTableVpcAssociationCommandOutput } from "./commands/CreateLocalGatewayRouteTableVpcAssociationCommand";
74
- import { CreateManagedPrefixListCommandInput, CreateManagedPrefixListCommandOutput } from "./commands/CreateManagedPrefixListCommand";
75
- import { CreateNatGatewayCommandInput, CreateNatGatewayCommandOutput } from "./commands/CreateNatGatewayCommand";
76
- import { CreateNetworkAclCommandInput, CreateNetworkAclCommandOutput } from "./commands/CreateNetworkAclCommand";
77
- import { CreateNetworkAclEntryCommandInput, CreateNetworkAclEntryCommandOutput } from "./commands/CreateNetworkAclEntryCommand";
78
- import { CreateNetworkInsightsAccessScopeCommandInput, CreateNetworkInsightsAccessScopeCommandOutput } from "./commands/CreateNetworkInsightsAccessScopeCommand";
79
- import { CreateNetworkInsightsPathCommandInput, CreateNetworkInsightsPathCommandOutput } from "./commands/CreateNetworkInsightsPathCommand";
80
- import { CreateNetworkInterfaceCommandInput, CreateNetworkInterfaceCommandOutput } from "./commands/CreateNetworkInterfaceCommand";
81
- import { CreateNetworkInterfacePermissionCommandInput, CreateNetworkInterfacePermissionCommandOutput } from "./commands/CreateNetworkInterfacePermissionCommand";
82
- import { CreatePlacementGroupCommandInput, CreatePlacementGroupCommandOutput } from "./commands/CreatePlacementGroupCommand";
83
- import { CreatePublicIpv4PoolCommandInput, CreatePublicIpv4PoolCommandOutput } from "./commands/CreatePublicIpv4PoolCommand";
84
- import { CreateReplaceRootVolumeTaskCommandInput, CreateReplaceRootVolumeTaskCommandOutput } from "./commands/CreateReplaceRootVolumeTaskCommand";
85
- import { CreateReservedInstancesListingCommandInput, CreateReservedInstancesListingCommandOutput } from "./commands/CreateReservedInstancesListingCommand";
86
- import { CreateRestoreImageTaskCommandInput, CreateRestoreImageTaskCommandOutput } from "./commands/CreateRestoreImageTaskCommand";
87
- import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
88
- import { CreateRouteTableCommandInput, CreateRouteTableCommandOutput } from "./commands/CreateRouteTableCommand";
89
- import { CreateSecurityGroupCommandInput, CreateSecurityGroupCommandOutput } from "./commands/CreateSecurityGroupCommand";
90
- import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand";
91
- import { CreateSnapshotsCommandInput, CreateSnapshotsCommandOutput } from "./commands/CreateSnapshotsCommand";
92
- import { CreateSpotDatafeedSubscriptionCommandInput, CreateSpotDatafeedSubscriptionCommandOutput } from "./commands/CreateSpotDatafeedSubscriptionCommand";
93
- import { CreateStoreImageTaskCommandInput, CreateStoreImageTaskCommandOutput } from "./commands/CreateStoreImageTaskCommand";
94
- import { CreateSubnetCidrReservationCommandInput, CreateSubnetCidrReservationCommandOutput } from "./commands/CreateSubnetCidrReservationCommand";
95
- import { CreateSubnetCommandInput, CreateSubnetCommandOutput } from "./commands/CreateSubnetCommand";
96
- import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
97
- import { CreateTrafficMirrorFilterCommandInput, CreateTrafficMirrorFilterCommandOutput } from "./commands/CreateTrafficMirrorFilterCommand";
98
- import { CreateTrafficMirrorFilterRuleCommandInput, CreateTrafficMirrorFilterRuleCommandOutput } from "./commands/CreateTrafficMirrorFilterRuleCommand";
99
- import { CreateTrafficMirrorSessionCommandInput, CreateTrafficMirrorSessionCommandOutput } from "./commands/CreateTrafficMirrorSessionCommand";
100
- import { CreateTrafficMirrorTargetCommandInput, CreateTrafficMirrorTargetCommandOutput } from "./commands/CreateTrafficMirrorTargetCommand";
101
- import { CreateTransitGatewayCommandInput, CreateTransitGatewayCommandOutput } from "./commands/CreateTransitGatewayCommand";
102
- import { CreateTransitGatewayConnectCommandInput, CreateTransitGatewayConnectCommandOutput } from "./commands/CreateTransitGatewayConnectCommand";
103
- import { CreateTransitGatewayConnectPeerCommandInput, CreateTransitGatewayConnectPeerCommandOutput } from "./commands/CreateTransitGatewayConnectPeerCommand";
104
- import { CreateTransitGatewayMulticastDomainCommandInput, CreateTransitGatewayMulticastDomainCommandOutput } from "./commands/CreateTransitGatewayMulticastDomainCommand";
105
- import { CreateTransitGatewayPeeringAttachmentCommandInput, CreateTransitGatewayPeeringAttachmentCommandOutput } from "./commands/CreateTransitGatewayPeeringAttachmentCommand";
106
- import { CreateTransitGatewayPrefixListReferenceCommandInput, CreateTransitGatewayPrefixListReferenceCommandOutput } from "./commands/CreateTransitGatewayPrefixListReferenceCommand";
107
- import { CreateTransitGatewayRouteCommandInput, CreateTransitGatewayRouteCommandOutput } from "./commands/CreateTransitGatewayRouteCommand";
108
- import { CreateTransitGatewayRouteTableCommandInput, CreateTransitGatewayRouteTableCommandOutput } from "./commands/CreateTransitGatewayRouteTableCommand";
109
- import { CreateTransitGatewayVpcAttachmentCommandInput, CreateTransitGatewayVpcAttachmentCommandOutput } from "./commands/CreateTransitGatewayVpcAttachmentCommand";
110
- import { CreateVolumeCommandInput, CreateVolumeCommandOutput } from "./commands/CreateVolumeCommand";
111
- import { CreateVpcCommandInput, CreateVpcCommandOutput } from "./commands/CreateVpcCommand";
112
- import { CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput } from "./commands/CreateVpcEndpointCommand";
113
- import { CreateVpcEndpointConnectionNotificationCommandInput, CreateVpcEndpointConnectionNotificationCommandOutput } from "./commands/CreateVpcEndpointConnectionNotificationCommand";
114
- import { CreateVpcEndpointServiceConfigurationCommandInput, CreateVpcEndpointServiceConfigurationCommandOutput } from "./commands/CreateVpcEndpointServiceConfigurationCommand";
115
- import { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
116
- import { CreateVpnConnectionCommandInput, CreateVpnConnectionCommandOutput } from "./commands/CreateVpnConnectionCommand";
117
- import { CreateVpnConnectionRouteCommandInput, CreateVpnConnectionRouteCommandOutput } from "./commands/CreateVpnConnectionRouteCommand";
118
- import { CreateVpnGatewayCommandInput, CreateVpnGatewayCommandOutput } from "./commands/CreateVpnGatewayCommand";
119
- import { DeleteCarrierGatewayCommandInput, DeleteCarrierGatewayCommandOutput } from "./commands/DeleteCarrierGatewayCommand";
120
- import { DeleteClientVpnEndpointCommandInput, DeleteClientVpnEndpointCommandOutput } from "./commands/DeleteClientVpnEndpointCommand";
121
- import { DeleteClientVpnRouteCommandInput, DeleteClientVpnRouteCommandOutput } from "./commands/DeleteClientVpnRouteCommand";
122
- import { DeleteCustomerGatewayCommandInput, DeleteCustomerGatewayCommandOutput } from "./commands/DeleteCustomerGatewayCommand";
123
- import { DeleteDhcpOptionsCommandInput, DeleteDhcpOptionsCommandOutput } from "./commands/DeleteDhcpOptionsCommand";
124
- import { DeleteEgressOnlyInternetGatewayCommandInput, DeleteEgressOnlyInternetGatewayCommandOutput } from "./commands/DeleteEgressOnlyInternetGatewayCommand";
125
- import { DeleteFleetsCommandInput, DeleteFleetsCommandOutput } from "./commands/DeleteFleetsCommand";
126
- import { DeleteFlowLogsCommandInput, DeleteFlowLogsCommandOutput } from "./commands/DeleteFlowLogsCommand";
127
- import { DeleteFpgaImageCommandInput, DeleteFpgaImageCommandOutput } from "./commands/DeleteFpgaImageCommand";
128
- import { DeleteInstanceEventWindowCommandInput, DeleteInstanceEventWindowCommandOutput } from "./commands/DeleteInstanceEventWindowCommand";
129
- import { DeleteInternetGatewayCommandInput, DeleteInternetGatewayCommandOutput } from "./commands/DeleteInternetGatewayCommand";
130
- import { DeleteIpamCommandInput, DeleteIpamCommandOutput } from "./commands/DeleteIpamCommand";
131
- import { DeleteIpamPoolCommandInput, DeleteIpamPoolCommandOutput } from "./commands/DeleteIpamPoolCommand";
132
- import { DeleteIpamScopeCommandInput, DeleteIpamScopeCommandOutput } from "./commands/DeleteIpamScopeCommand";
133
- import { DeleteKeyPairCommandInput, DeleteKeyPairCommandOutput } from "./commands/DeleteKeyPairCommand";
134
- import { DeleteLaunchTemplateCommandInput, DeleteLaunchTemplateCommandOutput } from "./commands/DeleteLaunchTemplateCommand";
135
- import { DeleteLaunchTemplateVersionsCommandInput, DeleteLaunchTemplateVersionsCommandOutput } from "./commands/DeleteLaunchTemplateVersionsCommand";
136
- import { DeleteLocalGatewayRouteCommandInput, DeleteLocalGatewayRouteCommandOutput } from "./commands/DeleteLocalGatewayRouteCommand";
137
- import { DeleteLocalGatewayRouteTableVpcAssociationCommandInput, DeleteLocalGatewayRouteTableVpcAssociationCommandOutput } from "./commands/DeleteLocalGatewayRouteTableVpcAssociationCommand";
138
- import { DeleteManagedPrefixListCommandInput, DeleteManagedPrefixListCommandOutput } from "./commands/DeleteManagedPrefixListCommand";
139
- import { DeleteNatGatewayCommandInput, DeleteNatGatewayCommandOutput } from "./commands/DeleteNatGatewayCommand";
140
- import { DeleteNetworkAclCommandInput, DeleteNetworkAclCommandOutput } from "./commands/DeleteNetworkAclCommand";
141
- import { DeleteNetworkAclEntryCommandInput, DeleteNetworkAclEntryCommandOutput } from "./commands/DeleteNetworkAclEntryCommand";
142
- import { DeleteNetworkInsightsAccessScopeAnalysisCommandInput, DeleteNetworkInsightsAccessScopeAnalysisCommandOutput } from "./commands/DeleteNetworkInsightsAccessScopeAnalysisCommand";
143
- import { DeleteNetworkInsightsAccessScopeCommandInput, DeleteNetworkInsightsAccessScopeCommandOutput } from "./commands/DeleteNetworkInsightsAccessScopeCommand";
144
- import { DeleteNetworkInsightsAnalysisCommandInput, DeleteNetworkInsightsAnalysisCommandOutput } from "./commands/DeleteNetworkInsightsAnalysisCommand";
145
- import { DeleteNetworkInsightsPathCommandInput, DeleteNetworkInsightsPathCommandOutput } from "./commands/DeleteNetworkInsightsPathCommand";
146
- import { DeleteNetworkInterfaceCommandInput, DeleteNetworkInterfaceCommandOutput } from "./commands/DeleteNetworkInterfaceCommand";
147
- import { DeleteNetworkInterfacePermissionCommandInput, DeleteNetworkInterfacePermissionCommandOutput } from "./commands/DeleteNetworkInterfacePermissionCommand";
148
- import { DeletePlacementGroupCommandInput, DeletePlacementGroupCommandOutput } from "./commands/DeletePlacementGroupCommand";
149
- import { DeletePublicIpv4PoolCommandInput, DeletePublicIpv4PoolCommandOutput } from "./commands/DeletePublicIpv4PoolCommand";
150
- import { DeleteQueuedReservedInstancesCommandInput, DeleteQueuedReservedInstancesCommandOutput } from "./commands/DeleteQueuedReservedInstancesCommand";
151
- import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
152
- import { DeleteRouteTableCommandInput, DeleteRouteTableCommandOutput } from "./commands/DeleteRouteTableCommand";
153
- import { DeleteSecurityGroupCommandInput, DeleteSecurityGroupCommandOutput } from "./commands/DeleteSecurityGroupCommand";
154
- import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "./commands/DeleteSnapshotCommand";
155
- import { DeleteSpotDatafeedSubscriptionCommandInput, DeleteSpotDatafeedSubscriptionCommandOutput } from "./commands/DeleteSpotDatafeedSubscriptionCommand";
156
- import { DeleteSubnetCidrReservationCommandInput, DeleteSubnetCidrReservationCommandOutput } from "./commands/DeleteSubnetCidrReservationCommand";
157
- import { DeleteSubnetCommandInput, DeleteSubnetCommandOutput } from "./commands/DeleteSubnetCommand";
158
- import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
159
- import { DeleteTrafficMirrorFilterCommandInput, DeleteTrafficMirrorFilterCommandOutput } from "./commands/DeleteTrafficMirrorFilterCommand";
160
- import { DeleteTrafficMirrorFilterRuleCommandInput, DeleteTrafficMirrorFilterRuleCommandOutput } from "./commands/DeleteTrafficMirrorFilterRuleCommand";
161
- import { DeleteTrafficMirrorSessionCommandInput, DeleteTrafficMirrorSessionCommandOutput } from "./commands/DeleteTrafficMirrorSessionCommand";
162
- import { DeleteTrafficMirrorTargetCommandInput, DeleteTrafficMirrorTargetCommandOutput } from "./commands/DeleteTrafficMirrorTargetCommand";
163
- import { DeleteTransitGatewayCommandInput, DeleteTransitGatewayCommandOutput } from "./commands/DeleteTransitGatewayCommand";
164
- import { DeleteTransitGatewayConnectCommandInput, DeleteTransitGatewayConnectCommandOutput } from "./commands/DeleteTransitGatewayConnectCommand";
165
- import { DeleteTransitGatewayConnectPeerCommandInput, DeleteTransitGatewayConnectPeerCommandOutput } from "./commands/DeleteTransitGatewayConnectPeerCommand";
166
- import { DeleteTransitGatewayMulticastDomainCommandInput, DeleteTransitGatewayMulticastDomainCommandOutput } from "./commands/DeleteTransitGatewayMulticastDomainCommand";
167
- import { DeleteTransitGatewayPeeringAttachmentCommandInput, DeleteTransitGatewayPeeringAttachmentCommandOutput } from "./commands/DeleteTransitGatewayPeeringAttachmentCommand";
168
- import { DeleteTransitGatewayPrefixListReferenceCommandInput, DeleteTransitGatewayPrefixListReferenceCommandOutput } from "./commands/DeleteTransitGatewayPrefixListReferenceCommand";
169
- import { DeleteTransitGatewayRouteCommandInput, DeleteTransitGatewayRouteCommandOutput } from "./commands/DeleteTransitGatewayRouteCommand";
170
- import { DeleteTransitGatewayRouteTableCommandInput, DeleteTransitGatewayRouteTableCommandOutput } from "./commands/DeleteTransitGatewayRouteTableCommand";
171
- import { DeleteTransitGatewayVpcAttachmentCommandInput, DeleteTransitGatewayVpcAttachmentCommandOutput } from "./commands/DeleteTransitGatewayVpcAttachmentCommand";
172
- import { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "./commands/DeleteVolumeCommand";
173
- import { DeleteVpcCommandInput, DeleteVpcCommandOutput } from "./commands/DeleteVpcCommand";
174
- import { DeleteVpcEndpointConnectionNotificationsCommandInput, DeleteVpcEndpointConnectionNotificationsCommandOutput } from "./commands/DeleteVpcEndpointConnectionNotificationsCommand";
175
- import { DeleteVpcEndpointsCommandInput, DeleteVpcEndpointsCommandOutput } from "./commands/DeleteVpcEndpointsCommand";
176
- import { DeleteVpcEndpointServiceConfigurationsCommandInput, DeleteVpcEndpointServiceConfigurationsCommandOutput } from "./commands/DeleteVpcEndpointServiceConfigurationsCommand";
177
- import { DeleteVpcPeeringConnectionCommandInput, DeleteVpcPeeringConnectionCommandOutput } from "./commands/DeleteVpcPeeringConnectionCommand";
178
- import { DeleteVpnConnectionCommandInput, DeleteVpnConnectionCommandOutput } from "./commands/DeleteVpnConnectionCommand";
179
- import { DeleteVpnConnectionRouteCommandInput, DeleteVpnConnectionRouteCommandOutput } from "./commands/DeleteVpnConnectionRouteCommand";
180
- import { DeleteVpnGatewayCommandInput, DeleteVpnGatewayCommandOutput } from "./commands/DeleteVpnGatewayCommand";
181
- import { DeprovisionByoipCidrCommandInput, DeprovisionByoipCidrCommandOutput } from "./commands/DeprovisionByoipCidrCommand";
182
- import { DeprovisionIpamPoolCidrCommandInput, DeprovisionIpamPoolCidrCommandOutput } from "./commands/DeprovisionIpamPoolCidrCommand";
183
- import { DeprovisionPublicIpv4PoolCidrCommandInput, DeprovisionPublicIpv4PoolCidrCommandOutput } from "./commands/DeprovisionPublicIpv4PoolCidrCommand";
184
- import { DeregisterImageCommandInput, DeregisterImageCommandOutput } from "./commands/DeregisterImageCommand";
185
- import { DeregisterInstanceEventNotificationAttributesCommandInput, DeregisterInstanceEventNotificationAttributesCommandOutput } from "./commands/DeregisterInstanceEventNotificationAttributesCommand";
186
- import { DeregisterTransitGatewayMulticastGroupMembersCommandInput, DeregisterTransitGatewayMulticastGroupMembersCommandOutput } from "./commands/DeregisterTransitGatewayMulticastGroupMembersCommand";
187
- import { DeregisterTransitGatewayMulticastGroupSourcesCommandInput, DeregisterTransitGatewayMulticastGroupSourcesCommandOutput } from "./commands/DeregisterTransitGatewayMulticastGroupSourcesCommand";
188
- import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
189
- import { DescribeAddressesAttributeCommandInput, DescribeAddressesAttributeCommandOutput } from "./commands/DescribeAddressesAttributeCommand";
190
- import { DescribeAddressesCommandInput, DescribeAddressesCommandOutput } from "./commands/DescribeAddressesCommand";
191
- import { DescribeAggregateIdFormatCommandInput, DescribeAggregateIdFormatCommandOutput } from "./commands/DescribeAggregateIdFormatCommand";
192
- import { DescribeAvailabilityZonesCommandInput, DescribeAvailabilityZonesCommandOutput } from "./commands/DescribeAvailabilityZonesCommand";
193
- import { DescribeBundleTasksCommandInput, DescribeBundleTasksCommandOutput } from "./commands/DescribeBundleTasksCommand";
194
- import { DescribeByoipCidrsCommandInput, DescribeByoipCidrsCommandOutput } from "./commands/DescribeByoipCidrsCommand";
195
- import { DescribeCapacityReservationFleetsCommandInput, DescribeCapacityReservationFleetsCommandOutput } from "./commands/DescribeCapacityReservationFleetsCommand";
196
- import { DescribeCapacityReservationsCommandInput, DescribeCapacityReservationsCommandOutput } from "./commands/DescribeCapacityReservationsCommand";
197
- import { DescribeCarrierGatewaysCommandInput, DescribeCarrierGatewaysCommandOutput } from "./commands/DescribeCarrierGatewaysCommand";
198
- import { DescribeClassicLinkInstancesCommandInput, DescribeClassicLinkInstancesCommandOutput } from "./commands/DescribeClassicLinkInstancesCommand";
199
- import { DescribeClientVpnAuthorizationRulesCommandInput, DescribeClientVpnAuthorizationRulesCommandOutput } from "./commands/DescribeClientVpnAuthorizationRulesCommand";
200
- import { DescribeClientVpnConnectionsCommandInput, DescribeClientVpnConnectionsCommandOutput } from "./commands/DescribeClientVpnConnectionsCommand";
201
- import { DescribeClientVpnEndpointsCommandInput, DescribeClientVpnEndpointsCommandOutput } from "./commands/DescribeClientVpnEndpointsCommand";
202
- import { DescribeClientVpnRoutesCommandInput, DescribeClientVpnRoutesCommandOutput } from "./commands/DescribeClientVpnRoutesCommand";
203
- import { DescribeClientVpnTargetNetworksCommandInput, DescribeClientVpnTargetNetworksCommandOutput } from "./commands/DescribeClientVpnTargetNetworksCommand";
204
- import { DescribeCoipPoolsCommandInput, DescribeCoipPoolsCommandOutput } from "./commands/DescribeCoipPoolsCommand";
205
- import { DescribeConversionTasksCommandInput, DescribeConversionTasksCommandOutput } from "./commands/DescribeConversionTasksCommand";
206
- import { DescribeCustomerGatewaysCommandInput, DescribeCustomerGatewaysCommandOutput } from "./commands/DescribeCustomerGatewaysCommand";
207
- import { DescribeDhcpOptionsCommandInput, DescribeDhcpOptionsCommandOutput } from "./commands/DescribeDhcpOptionsCommand";
208
- import { DescribeEgressOnlyInternetGatewaysCommandInput, DescribeEgressOnlyInternetGatewaysCommandOutput } from "./commands/DescribeEgressOnlyInternetGatewaysCommand";
209
- import { DescribeElasticGpusCommandInput, DescribeElasticGpusCommandOutput } from "./commands/DescribeElasticGpusCommand";
210
- import { DescribeExportImageTasksCommandInput, DescribeExportImageTasksCommandOutput } from "./commands/DescribeExportImageTasksCommand";
211
- import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
212
- import { DescribeFastSnapshotRestoresCommandInput, DescribeFastSnapshotRestoresCommandOutput } from "./commands/DescribeFastSnapshotRestoresCommand";
213
- import { DescribeFleetHistoryCommandInput, DescribeFleetHistoryCommandOutput } from "./commands/DescribeFleetHistoryCommand";
214
- import { DescribeFleetInstancesCommandInput, DescribeFleetInstancesCommandOutput } from "./commands/DescribeFleetInstancesCommand";
215
- import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
216
- import { DescribeFlowLogsCommandInput, DescribeFlowLogsCommandOutput } from "./commands/DescribeFlowLogsCommand";
217
- import { DescribeFpgaImageAttributeCommandInput, DescribeFpgaImageAttributeCommandOutput } from "./commands/DescribeFpgaImageAttributeCommand";
218
- import { DescribeFpgaImagesCommandInput, DescribeFpgaImagesCommandOutput } from "./commands/DescribeFpgaImagesCommand";
219
- import { DescribeHostReservationOfferingsCommandInput, DescribeHostReservationOfferingsCommandOutput } from "./commands/DescribeHostReservationOfferingsCommand";
220
- import { DescribeHostReservationsCommandInput, DescribeHostReservationsCommandOutput } from "./commands/DescribeHostReservationsCommand";
221
- import { DescribeHostsCommandInput, DescribeHostsCommandOutput } from "./commands/DescribeHostsCommand";
222
- import { DescribeIamInstanceProfileAssociationsCommandInput, DescribeIamInstanceProfileAssociationsCommandOutput } from "./commands/DescribeIamInstanceProfileAssociationsCommand";
223
- import { DescribeIdentityIdFormatCommandInput, DescribeIdentityIdFormatCommandOutput } from "./commands/DescribeIdentityIdFormatCommand";
224
- import { DescribeIdFormatCommandInput, DescribeIdFormatCommandOutput } from "./commands/DescribeIdFormatCommand";
225
- import { DescribeImageAttributeCommandInput, DescribeImageAttributeCommandOutput } from "./commands/DescribeImageAttributeCommand";
226
- import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
227
- import { DescribeImportImageTasksCommandInput, DescribeImportImageTasksCommandOutput } from "./commands/DescribeImportImageTasksCommand";
228
- import { DescribeImportSnapshotTasksCommandInput, DescribeImportSnapshotTasksCommandOutput } from "./commands/DescribeImportSnapshotTasksCommand";
229
- import { DescribeInstanceAttributeCommandInput, DescribeInstanceAttributeCommandOutput } from "./commands/DescribeInstanceAttributeCommand";
230
- import { DescribeInstanceCreditSpecificationsCommandInput, DescribeInstanceCreditSpecificationsCommandOutput } from "./commands/DescribeInstanceCreditSpecificationsCommand";
231
- import { DescribeInstanceEventNotificationAttributesCommandInput, DescribeInstanceEventNotificationAttributesCommandOutput } from "./commands/DescribeInstanceEventNotificationAttributesCommand";
232
- import { DescribeInstanceEventWindowsCommandInput, DescribeInstanceEventWindowsCommandOutput } from "./commands/DescribeInstanceEventWindowsCommand";
233
- import { DescribeInstancesCommandInput, DescribeInstancesCommandOutput } from "./commands/DescribeInstancesCommand";
234
- import { DescribeInstanceStatusCommandInput, DescribeInstanceStatusCommandOutput } from "./commands/DescribeInstanceStatusCommand";
235
- import { DescribeInstanceTypeOfferingsCommandInput, DescribeInstanceTypeOfferingsCommandOutput } from "./commands/DescribeInstanceTypeOfferingsCommand";
236
- import { DescribeInstanceTypesCommandInput, DescribeInstanceTypesCommandOutput } from "./commands/DescribeInstanceTypesCommand";
237
- import { DescribeInternetGatewaysCommandInput, DescribeInternetGatewaysCommandOutput } from "./commands/DescribeInternetGatewaysCommand";
238
- import { DescribeIpamPoolsCommandInput, DescribeIpamPoolsCommandOutput } from "./commands/DescribeIpamPoolsCommand";
239
- import { DescribeIpamsCommandInput, DescribeIpamsCommandOutput } from "./commands/DescribeIpamsCommand";
240
- import { DescribeIpamScopesCommandInput, DescribeIpamScopesCommandOutput } from "./commands/DescribeIpamScopesCommand";
241
- import { DescribeIpv6PoolsCommandInput, DescribeIpv6PoolsCommandOutput } from "./commands/DescribeIpv6PoolsCommand";
242
- import { DescribeKeyPairsCommandInput, DescribeKeyPairsCommandOutput } from "./commands/DescribeKeyPairsCommand";
243
- import { DescribeLaunchTemplatesCommandInput, DescribeLaunchTemplatesCommandOutput } from "./commands/DescribeLaunchTemplatesCommand";
244
- import { DescribeLaunchTemplateVersionsCommandInput, DescribeLaunchTemplateVersionsCommandOutput } from "./commands/DescribeLaunchTemplateVersionsCommand";
245
- import { DescribeLocalGatewayRouteTablesCommandInput, DescribeLocalGatewayRouteTablesCommandOutput } from "./commands/DescribeLocalGatewayRouteTablesCommand";
246
- import { DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput, DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput } from "./commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand";
247
- import { DescribeLocalGatewayRouteTableVpcAssociationsCommandInput, DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput } from "./commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand";
248
- import { DescribeLocalGatewaysCommandInput, DescribeLocalGatewaysCommandOutput } from "./commands/DescribeLocalGatewaysCommand";
249
- import { DescribeLocalGatewayVirtualInterfaceGroupsCommandInput, DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput } from "./commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand";
250
- import { DescribeLocalGatewayVirtualInterfacesCommandInput, DescribeLocalGatewayVirtualInterfacesCommandOutput } from "./commands/DescribeLocalGatewayVirtualInterfacesCommand";
251
- import { DescribeManagedPrefixListsCommandInput, DescribeManagedPrefixListsCommandOutput } from "./commands/DescribeManagedPrefixListsCommand";
252
- import { DescribeMovingAddressesCommandInput, DescribeMovingAddressesCommandOutput } from "./commands/DescribeMovingAddressesCommand";
253
- import { DescribeNatGatewaysCommandInput, DescribeNatGatewaysCommandOutput } from "./commands/DescribeNatGatewaysCommand";
254
- import { DescribeNetworkAclsCommandInput, DescribeNetworkAclsCommandOutput } from "./commands/DescribeNetworkAclsCommand";
255
- import { DescribeNetworkInsightsAccessScopeAnalysesCommandInput, DescribeNetworkInsightsAccessScopeAnalysesCommandOutput } from "./commands/DescribeNetworkInsightsAccessScopeAnalysesCommand";
256
- import { DescribeNetworkInsightsAccessScopesCommandInput, DescribeNetworkInsightsAccessScopesCommandOutput } from "./commands/DescribeNetworkInsightsAccessScopesCommand";
257
- import { DescribeNetworkInsightsAnalysesCommandInput, DescribeNetworkInsightsAnalysesCommandOutput } from "./commands/DescribeNetworkInsightsAnalysesCommand";
258
- import { DescribeNetworkInsightsPathsCommandInput, DescribeNetworkInsightsPathsCommandOutput } from "./commands/DescribeNetworkInsightsPathsCommand";
259
- import { DescribeNetworkInterfaceAttributeCommandInput, DescribeNetworkInterfaceAttributeCommandOutput } from "./commands/DescribeNetworkInterfaceAttributeCommand";
260
- import { DescribeNetworkInterfacePermissionsCommandInput, DescribeNetworkInterfacePermissionsCommandOutput } from "./commands/DescribeNetworkInterfacePermissionsCommand";
261
- import { DescribeNetworkInterfacesCommandInput, DescribeNetworkInterfacesCommandOutput } from "./commands/DescribeNetworkInterfacesCommand";
262
- import { DescribePlacementGroupsCommandInput, DescribePlacementGroupsCommandOutput } from "./commands/DescribePlacementGroupsCommand";
263
- import { DescribePrefixListsCommandInput, DescribePrefixListsCommandOutput } from "./commands/DescribePrefixListsCommand";
264
- import { DescribePrincipalIdFormatCommandInput, DescribePrincipalIdFormatCommandOutput } from "./commands/DescribePrincipalIdFormatCommand";
265
- import { DescribePublicIpv4PoolsCommandInput, DescribePublicIpv4PoolsCommandOutput } from "./commands/DescribePublicIpv4PoolsCommand";
266
- import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "./commands/DescribeRegionsCommand";
267
- import { DescribeReplaceRootVolumeTasksCommandInput, DescribeReplaceRootVolumeTasksCommandOutput } from "./commands/DescribeReplaceRootVolumeTasksCommand";
268
- import { DescribeReservedInstancesCommandInput, DescribeReservedInstancesCommandOutput } from "./commands/DescribeReservedInstancesCommand";
269
- import { DescribeReservedInstancesListingsCommandInput, DescribeReservedInstancesListingsCommandOutput } from "./commands/DescribeReservedInstancesListingsCommand";
270
- import { DescribeReservedInstancesModificationsCommandInput, DescribeReservedInstancesModificationsCommandOutput } from "./commands/DescribeReservedInstancesModificationsCommand";
271
- import { DescribeReservedInstancesOfferingsCommandInput, DescribeReservedInstancesOfferingsCommandOutput } from "./commands/DescribeReservedInstancesOfferingsCommand";
272
- import { DescribeRouteTablesCommandInput, DescribeRouteTablesCommandOutput } from "./commands/DescribeRouteTablesCommand";
273
- import { DescribeScheduledInstanceAvailabilityCommandInput, DescribeScheduledInstanceAvailabilityCommandOutput } from "./commands/DescribeScheduledInstanceAvailabilityCommand";
274
- import { DescribeScheduledInstancesCommandInput, DescribeScheduledInstancesCommandOutput } from "./commands/DescribeScheduledInstancesCommand";
275
- import { DescribeSecurityGroupReferencesCommandInput, DescribeSecurityGroupReferencesCommandOutput } from "./commands/DescribeSecurityGroupReferencesCommand";
276
- import { DescribeSecurityGroupRulesCommandInput, DescribeSecurityGroupRulesCommandOutput } from "./commands/DescribeSecurityGroupRulesCommand";
277
- import { DescribeSecurityGroupsCommandInput, DescribeSecurityGroupsCommandOutput } from "./commands/DescribeSecurityGroupsCommand";
278
- import { DescribeSnapshotAttributeCommandInput, DescribeSnapshotAttributeCommandOutput } from "./commands/DescribeSnapshotAttributeCommand";
279
- import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
280
- import { DescribeSnapshotTierStatusCommandInput, DescribeSnapshotTierStatusCommandOutput } from "./commands/DescribeSnapshotTierStatusCommand";
281
- import { DescribeSpotDatafeedSubscriptionCommandInput, DescribeSpotDatafeedSubscriptionCommandOutput } from "./commands/DescribeSpotDatafeedSubscriptionCommand";
282
- import { DescribeSpotFleetInstancesCommandInput, DescribeSpotFleetInstancesCommandOutput } from "./commands/DescribeSpotFleetInstancesCommand";
283
- import { DescribeSpotFleetRequestHistoryCommandInput, DescribeSpotFleetRequestHistoryCommandOutput } from "./commands/DescribeSpotFleetRequestHistoryCommand";
284
- import { DescribeSpotFleetRequestsCommandInput, DescribeSpotFleetRequestsCommandOutput } from "./commands/DescribeSpotFleetRequestsCommand";
285
- import { DescribeSpotInstanceRequestsCommandInput, DescribeSpotInstanceRequestsCommandOutput } from "./commands/DescribeSpotInstanceRequestsCommand";
286
- import { DescribeSpotPriceHistoryCommandInput, DescribeSpotPriceHistoryCommandOutput } from "./commands/DescribeSpotPriceHistoryCommand";
287
- import { DescribeStaleSecurityGroupsCommandInput, DescribeStaleSecurityGroupsCommandOutput } from "./commands/DescribeStaleSecurityGroupsCommand";
288
- import { DescribeStoreImageTasksCommandInput, DescribeStoreImageTasksCommandOutput } from "./commands/DescribeStoreImageTasksCommand";
289
- import { DescribeSubnetsCommandInput, DescribeSubnetsCommandOutput } from "./commands/DescribeSubnetsCommand";
290
- import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
291
- import { DescribeTrafficMirrorFiltersCommandInput, DescribeTrafficMirrorFiltersCommandOutput } from "./commands/DescribeTrafficMirrorFiltersCommand";
292
- import { DescribeTrafficMirrorSessionsCommandInput, DescribeTrafficMirrorSessionsCommandOutput } from "./commands/DescribeTrafficMirrorSessionsCommand";
293
- import { DescribeTrafficMirrorTargetsCommandInput, DescribeTrafficMirrorTargetsCommandOutput } from "./commands/DescribeTrafficMirrorTargetsCommand";
294
- import { DescribeTransitGatewayAttachmentsCommandInput, DescribeTransitGatewayAttachmentsCommandOutput } from "./commands/DescribeTransitGatewayAttachmentsCommand";
295
- import { DescribeTransitGatewayConnectPeersCommandInput, DescribeTransitGatewayConnectPeersCommandOutput } from "./commands/DescribeTransitGatewayConnectPeersCommand";
296
- import { DescribeTransitGatewayConnectsCommandInput, DescribeTransitGatewayConnectsCommandOutput } from "./commands/DescribeTransitGatewayConnectsCommand";
297
- import { DescribeTransitGatewayMulticastDomainsCommandInput, DescribeTransitGatewayMulticastDomainsCommandOutput } from "./commands/DescribeTransitGatewayMulticastDomainsCommand";
298
- import { DescribeTransitGatewayPeeringAttachmentsCommandInput, DescribeTransitGatewayPeeringAttachmentsCommandOutput } from "./commands/DescribeTransitGatewayPeeringAttachmentsCommand";
299
- import { DescribeTransitGatewayRouteTablesCommandInput, DescribeTransitGatewayRouteTablesCommandOutput } from "./commands/DescribeTransitGatewayRouteTablesCommand";
300
- import { DescribeTransitGatewaysCommandInput, DescribeTransitGatewaysCommandOutput } from "./commands/DescribeTransitGatewaysCommand";
301
- import { DescribeTransitGatewayVpcAttachmentsCommandInput, DescribeTransitGatewayVpcAttachmentsCommandOutput } from "./commands/DescribeTransitGatewayVpcAttachmentsCommand";
302
- import { DescribeTrunkInterfaceAssociationsCommandInput, DescribeTrunkInterfaceAssociationsCommandOutput } from "./commands/DescribeTrunkInterfaceAssociationsCommand";
303
- import { DescribeVolumeAttributeCommandInput, DescribeVolumeAttributeCommandOutput } from "./commands/DescribeVolumeAttributeCommand";
304
- import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "./commands/DescribeVolumesCommand";
305
- import { DescribeVolumesModificationsCommandInput, DescribeVolumesModificationsCommandOutput } from "./commands/DescribeVolumesModificationsCommand";
306
- import { DescribeVolumeStatusCommandInput, DescribeVolumeStatusCommandOutput } from "./commands/DescribeVolumeStatusCommand";
307
- import { DescribeVpcAttributeCommandInput, DescribeVpcAttributeCommandOutput } from "./commands/DescribeVpcAttributeCommand";
308
- import { DescribeVpcClassicLinkCommandInput, DescribeVpcClassicLinkCommandOutput } from "./commands/DescribeVpcClassicLinkCommand";
309
- import { DescribeVpcClassicLinkDnsSupportCommandInput, DescribeVpcClassicLinkDnsSupportCommandOutput } from "./commands/DescribeVpcClassicLinkDnsSupportCommand";
310
- import { DescribeVpcEndpointConnectionNotificationsCommandInput, DescribeVpcEndpointConnectionNotificationsCommandOutput } from "./commands/DescribeVpcEndpointConnectionNotificationsCommand";
311
- import { DescribeVpcEndpointConnectionsCommandInput, DescribeVpcEndpointConnectionsCommandOutput } from "./commands/DescribeVpcEndpointConnectionsCommand";
312
- import { DescribeVpcEndpointsCommandInput, DescribeVpcEndpointsCommandOutput } from "./commands/DescribeVpcEndpointsCommand";
313
- import { DescribeVpcEndpointServiceConfigurationsCommandInput, DescribeVpcEndpointServiceConfigurationsCommandOutput } from "./commands/DescribeVpcEndpointServiceConfigurationsCommand";
314
- import { DescribeVpcEndpointServicePermissionsCommandInput, DescribeVpcEndpointServicePermissionsCommandOutput } from "./commands/DescribeVpcEndpointServicePermissionsCommand";
315
- import { DescribeVpcEndpointServicesCommandInput, DescribeVpcEndpointServicesCommandOutput } from "./commands/DescribeVpcEndpointServicesCommand";
316
- import { DescribeVpcPeeringConnectionsCommandInput, DescribeVpcPeeringConnectionsCommandOutput } from "./commands/DescribeVpcPeeringConnectionsCommand";
317
- import { DescribeVpcsCommandInput, DescribeVpcsCommandOutput } from "./commands/DescribeVpcsCommand";
318
- import { DescribeVpnConnectionsCommandInput, DescribeVpnConnectionsCommandOutput } from "./commands/DescribeVpnConnectionsCommand";
319
- import { DescribeVpnGatewaysCommandInput, DescribeVpnGatewaysCommandOutput } from "./commands/DescribeVpnGatewaysCommand";
320
- import { DetachClassicLinkVpcCommandInput, DetachClassicLinkVpcCommandOutput } from "./commands/DetachClassicLinkVpcCommand";
321
- import { DetachInternetGatewayCommandInput, DetachInternetGatewayCommandOutput } from "./commands/DetachInternetGatewayCommand";
322
- import { DetachNetworkInterfaceCommandInput, DetachNetworkInterfaceCommandOutput } from "./commands/DetachNetworkInterfaceCommand";
323
- import { DetachVolumeCommandInput, DetachVolumeCommandOutput } from "./commands/DetachVolumeCommand";
324
- import { DetachVpnGatewayCommandInput, DetachVpnGatewayCommandOutput } from "./commands/DetachVpnGatewayCommand";
325
- import { DisableEbsEncryptionByDefaultCommandInput, DisableEbsEncryptionByDefaultCommandOutput } from "./commands/DisableEbsEncryptionByDefaultCommand";
326
- import { DisableFastSnapshotRestoresCommandInput, DisableFastSnapshotRestoresCommandOutput } from "./commands/DisableFastSnapshotRestoresCommand";
327
- import { DisableImageDeprecationCommandInput, DisableImageDeprecationCommandOutput } from "./commands/DisableImageDeprecationCommand";
328
- import { DisableIpamOrganizationAdminAccountCommandInput, DisableIpamOrganizationAdminAccountCommandOutput } from "./commands/DisableIpamOrganizationAdminAccountCommand";
329
- import { DisableSerialConsoleAccessCommandInput, DisableSerialConsoleAccessCommandOutput } from "./commands/DisableSerialConsoleAccessCommand";
330
- import { DisableTransitGatewayRouteTablePropagationCommandInput, DisableTransitGatewayRouteTablePropagationCommandOutput } from "./commands/DisableTransitGatewayRouteTablePropagationCommand";
331
- import { DisableVgwRoutePropagationCommandInput, DisableVgwRoutePropagationCommandOutput } from "./commands/DisableVgwRoutePropagationCommand";
332
- import { DisableVpcClassicLinkCommandInput, DisableVpcClassicLinkCommandOutput } from "./commands/DisableVpcClassicLinkCommand";
333
- import { DisableVpcClassicLinkDnsSupportCommandInput, DisableVpcClassicLinkDnsSupportCommandOutput } from "./commands/DisableVpcClassicLinkDnsSupportCommand";
334
- import { DisassociateAddressCommandInput, DisassociateAddressCommandOutput } from "./commands/DisassociateAddressCommand";
335
- import { DisassociateClientVpnTargetNetworkCommandInput, DisassociateClientVpnTargetNetworkCommandOutput } from "./commands/DisassociateClientVpnTargetNetworkCommand";
336
- import { DisassociateEnclaveCertificateIamRoleCommandInput, DisassociateEnclaveCertificateIamRoleCommandOutput } from "./commands/DisassociateEnclaveCertificateIamRoleCommand";
337
- import { DisassociateIamInstanceProfileCommandInput, DisassociateIamInstanceProfileCommandOutput } from "./commands/DisassociateIamInstanceProfileCommand";
338
- import { DisassociateInstanceEventWindowCommandInput, DisassociateInstanceEventWindowCommandOutput } from "./commands/DisassociateInstanceEventWindowCommand";
339
- import { DisassociateRouteTableCommandInput, DisassociateRouteTableCommandOutput } from "./commands/DisassociateRouteTableCommand";
340
- import { DisassociateSubnetCidrBlockCommandInput, DisassociateSubnetCidrBlockCommandOutput } from "./commands/DisassociateSubnetCidrBlockCommand";
341
- import { DisassociateTransitGatewayMulticastDomainCommandInput, DisassociateTransitGatewayMulticastDomainCommandOutput } from "./commands/DisassociateTransitGatewayMulticastDomainCommand";
342
- import { DisassociateTransitGatewayRouteTableCommandInput, DisassociateTransitGatewayRouteTableCommandOutput } from "./commands/DisassociateTransitGatewayRouteTableCommand";
343
- import { DisassociateTrunkInterfaceCommandInput, DisassociateTrunkInterfaceCommandOutput } from "./commands/DisassociateTrunkInterfaceCommand";
344
- import { DisassociateVpcCidrBlockCommandInput, DisassociateVpcCidrBlockCommandOutput } from "./commands/DisassociateVpcCidrBlockCommand";
345
- import { EnableEbsEncryptionByDefaultCommandInput, EnableEbsEncryptionByDefaultCommandOutput } from "./commands/EnableEbsEncryptionByDefaultCommand";
346
- import { EnableFastSnapshotRestoresCommandInput, EnableFastSnapshotRestoresCommandOutput } from "./commands/EnableFastSnapshotRestoresCommand";
347
- import { EnableImageDeprecationCommandInput, EnableImageDeprecationCommandOutput } from "./commands/EnableImageDeprecationCommand";
348
- import { EnableIpamOrganizationAdminAccountCommandInput, EnableIpamOrganizationAdminAccountCommandOutput } from "./commands/EnableIpamOrganizationAdminAccountCommand";
349
- import { EnableSerialConsoleAccessCommandInput, EnableSerialConsoleAccessCommandOutput } from "./commands/EnableSerialConsoleAccessCommand";
350
- import { EnableTransitGatewayRouteTablePropagationCommandInput, EnableTransitGatewayRouteTablePropagationCommandOutput } from "./commands/EnableTransitGatewayRouteTablePropagationCommand";
351
- import { EnableVgwRoutePropagationCommandInput, EnableVgwRoutePropagationCommandOutput } from "./commands/EnableVgwRoutePropagationCommand";
352
- import { EnableVolumeIOCommandInput, EnableVolumeIOCommandOutput } from "./commands/EnableVolumeIOCommand";
353
- import { EnableVpcClassicLinkCommandInput, EnableVpcClassicLinkCommandOutput } from "./commands/EnableVpcClassicLinkCommand";
354
- import { EnableVpcClassicLinkDnsSupportCommandInput, EnableVpcClassicLinkDnsSupportCommandOutput } from "./commands/EnableVpcClassicLinkDnsSupportCommand";
355
- import { ExportClientVpnClientCertificateRevocationListCommandInput, ExportClientVpnClientCertificateRevocationListCommandOutput } from "./commands/ExportClientVpnClientCertificateRevocationListCommand";
356
- import { ExportClientVpnClientConfigurationCommandInput, ExportClientVpnClientConfigurationCommandOutput } from "./commands/ExportClientVpnClientConfigurationCommand";
357
- import { ExportImageCommandInput, ExportImageCommandOutput } from "./commands/ExportImageCommand";
358
- import { ExportTransitGatewayRoutesCommandInput, ExportTransitGatewayRoutesCommandOutput } from "./commands/ExportTransitGatewayRoutesCommand";
359
- import { GetAssociatedEnclaveCertificateIamRolesCommandInput, GetAssociatedEnclaveCertificateIamRolesCommandOutput } from "./commands/GetAssociatedEnclaveCertificateIamRolesCommand";
360
- import { GetAssociatedIpv6PoolCidrsCommandInput, GetAssociatedIpv6PoolCidrsCommandOutput } from "./commands/GetAssociatedIpv6PoolCidrsCommand";
361
- import { GetCapacityReservationUsageCommandInput, GetCapacityReservationUsageCommandOutput } from "./commands/GetCapacityReservationUsageCommand";
362
- import { GetCoipPoolUsageCommandInput, GetCoipPoolUsageCommandOutput } from "./commands/GetCoipPoolUsageCommand";
363
- import { GetConsoleOutputCommandInput, GetConsoleOutputCommandOutput } from "./commands/GetConsoleOutputCommand";
364
- import { GetConsoleScreenshotCommandInput, GetConsoleScreenshotCommandOutput } from "./commands/GetConsoleScreenshotCommand";
365
- import { GetDefaultCreditSpecificationCommandInput, GetDefaultCreditSpecificationCommandOutput } from "./commands/GetDefaultCreditSpecificationCommand";
366
- import { GetEbsDefaultKmsKeyIdCommandInput, GetEbsDefaultKmsKeyIdCommandOutput } from "./commands/GetEbsDefaultKmsKeyIdCommand";
367
- import { GetEbsEncryptionByDefaultCommandInput, GetEbsEncryptionByDefaultCommandOutput } from "./commands/GetEbsEncryptionByDefaultCommand";
368
- import { GetFlowLogsIntegrationTemplateCommandInput, GetFlowLogsIntegrationTemplateCommandOutput } from "./commands/GetFlowLogsIntegrationTemplateCommand";
369
- import { GetGroupsForCapacityReservationCommandInput, GetGroupsForCapacityReservationCommandOutput } from "./commands/GetGroupsForCapacityReservationCommand";
370
- import { GetHostReservationPurchasePreviewCommandInput, GetHostReservationPurchasePreviewCommandOutput } from "./commands/GetHostReservationPurchasePreviewCommand";
371
- import { GetInstanceTypesFromInstanceRequirementsCommandInput, GetInstanceTypesFromInstanceRequirementsCommandOutput } from "./commands/GetInstanceTypesFromInstanceRequirementsCommand";
372
- import { GetIpamAddressHistoryCommandInput, GetIpamAddressHistoryCommandOutput } from "./commands/GetIpamAddressHistoryCommand";
373
- import { GetIpamPoolAllocationsCommandInput, GetIpamPoolAllocationsCommandOutput } from "./commands/GetIpamPoolAllocationsCommand";
374
- import { GetIpamPoolCidrsCommandInput, GetIpamPoolCidrsCommandOutput } from "./commands/GetIpamPoolCidrsCommand";
375
- import { GetIpamResourceCidrsCommandInput, GetIpamResourceCidrsCommandOutput } from "./commands/GetIpamResourceCidrsCommand";
376
- import { GetLaunchTemplateDataCommandInput, GetLaunchTemplateDataCommandOutput } from "./commands/GetLaunchTemplateDataCommand";
377
- import { GetManagedPrefixListAssociationsCommandInput, GetManagedPrefixListAssociationsCommandOutput } from "./commands/GetManagedPrefixListAssociationsCommand";
378
- import { GetManagedPrefixListEntriesCommandInput, GetManagedPrefixListEntriesCommandOutput } from "./commands/GetManagedPrefixListEntriesCommand";
379
- import { GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput } from "./commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand";
380
- import { GetNetworkInsightsAccessScopeContentCommandInput, GetNetworkInsightsAccessScopeContentCommandOutput } from "./commands/GetNetworkInsightsAccessScopeContentCommand";
381
- import { GetPasswordDataCommandInput, GetPasswordDataCommandOutput } from "./commands/GetPasswordDataCommand";
382
- import { GetReservedInstancesExchangeQuoteCommandInput, GetReservedInstancesExchangeQuoteCommandOutput } from "./commands/GetReservedInstancesExchangeQuoteCommand";
383
- import { GetSerialConsoleAccessStatusCommandInput, GetSerialConsoleAccessStatusCommandOutput } from "./commands/GetSerialConsoleAccessStatusCommand";
384
- import { GetSpotPlacementScoresCommandInput, GetSpotPlacementScoresCommandOutput } from "./commands/GetSpotPlacementScoresCommand";
385
- import { GetSubnetCidrReservationsCommandInput, GetSubnetCidrReservationsCommandOutput } from "./commands/GetSubnetCidrReservationsCommand";
386
- import { GetTransitGatewayAttachmentPropagationsCommandInput, GetTransitGatewayAttachmentPropagationsCommandOutput } from "./commands/GetTransitGatewayAttachmentPropagationsCommand";
387
- import { GetTransitGatewayMulticastDomainAssociationsCommandInput, GetTransitGatewayMulticastDomainAssociationsCommandOutput } from "./commands/GetTransitGatewayMulticastDomainAssociationsCommand";
388
- import { GetTransitGatewayPrefixListReferencesCommandInput, GetTransitGatewayPrefixListReferencesCommandOutput } from "./commands/GetTransitGatewayPrefixListReferencesCommand";
389
- import { GetTransitGatewayRouteTableAssociationsCommandInput, GetTransitGatewayRouteTableAssociationsCommandOutput } from "./commands/GetTransitGatewayRouteTableAssociationsCommand";
390
- import { GetTransitGatewayRouteTablePropagationsCommandInput, GetTransitGatewayRouteTablePropagationsCommandOutput } from "./commands/GetTransitGatewayRouteTablePropagationsCommand";
391
- import { GetVpnConnectionDeviceSampleConfigurationCommandInput, GetVpnConnectionDeviceSampleConfigurationCommandOutput } from "./commands/GetVpnConnectionDeviceSampleConfigurationCommand";
392
- import { GetVpnConnectionDeviceTypesCommandInput, GetVpnConnectionDeviceTypesCommandOutput } from "./commands/GetVpnConnectionDeviceTypesCommand";
393
- import { ImportClientVpnClientCertificateRevocationListCommandInput, ImportClientVpnClientCertificateRevocationListCommandOutput } from "./commands/ImportClientVpnClientCertificateRevocationListCommand";
394
- import { ImportImageCommandInput, ImportImageCommandOutput } from "./commands/ImportImageCommand";
395
- import { ImportInstanceCommandInput, ImportInstanceCommandOutput } from "./commands/ImportInstanceCommand";
396
- import { ImportKeyPairCommandInput, ImportKeyPairCommandOutput } from "./commands/ImportKeyPairCommand";
397
- import { ImportSnapshotCommandInput, ImportSnapshotCommandOutput } from "./commands/ImportSnapshotCommand";
398
- import { ImportVolumeCommandInput, ImportVolumeCommandOutput } from "./commands/ImportVolumeCommand";
399
- import { ListSnapshotsInRecycleBinCommandInput, ListSnapshotsInRecycleBinCommandOutput } from "./commands/ListSnapshotsInRecycleBinCommand";
400
- import { ModifyAddressAttributeCommandInput, ModifyAddressAttributeCommandOutput } from "./commands/ModifyAddressAttributeCommand";
401
- import { ModifyAvailabilityZoneGroupCommandInput, ModifyAvailabilityZoneGroupCommandOutput } from "./commands/ModifyAvailabilityZoneGroupCommand";
402
- import { ModifyCapacityReservationCommandInput, ModifyCapacityReservationCommandOutput } from "./commands/ModifyCapacityReservationCommand";
403
- import { ModifyCapacityReservationFleetCommandInput, ModifyCapacityReservationFleetCommandOutput } from "./commands/ModifyCapacityReservationFleetCommand";
404
- import { ModifyClientVpnEndpointCommandInput, ModifyClientVpnEndpointCommandOutput } from "./commands/ModifyClientVpnEndpointCommand";
405
- import { ModifyDefaultCreditSpecificationCommandInput, ModifyDefaultCreditSpecificationCommandOutput } from "./commands/ModifyDefaultCreditSpecificationCommand";
406
- import { ModifyEbsDefaultKmsKeyIdCommandInput, ModifyEbsDefaultKmsKeyIdCommandOutput } from "./commands/ModifyEbsDefaultKmsKeyIdCommand";
407
- import { ModifyFleetCommandInput, ModifyFleetCommandOutput } from "./commands/ModifyFleetCommand";
408
- import { ModifyFpgaImageAttributeCommandInput, ModifyFpgaImageAttributeCommandOutput } from "./commands/ModifyFpgaImageAttributeCommand";
409
- import { ModifyHostsCommandInput, ModifyHostsCommandOutput } from "./commands/ModifyHostsCommand";
410
- import { ModifyIdentityIdFormatCommandInput, ModifyIdentityIdFormatCommandOutput } from "./commands/ModifyIdentityIdFormatCommand";
411
- import { ModifyIdFormatCommandInput, ModifyIdFormatCommandOutput } from "./commands/ModifyIdFormatCommand";
412
- import { ModifyImageAttributeCommandInput, ModifyImageAttributeCommandOutput } from "./commands/ModifyImageAttributeCommand";
413
- import { ModifyInstanceAttributeCommandInput, ModifyInstanceAttributeCommandOutput } from "./commands/ModifyInstanceAttributeCommand";
414
- import { ModifyInstanceCapacityReservationAttributesCommandInput, ModifyInstanceCapacityReservationAttributesCommandOutput } from "./commands/ModifyInstanceCapacityReservationAttributesCommand";
415
- import { ModifyInstanceCreditSpecificationCommandInput, ModifyInstanceCreditSpecificationCommandOutput } from "./commands/ModifyInstanceCreditSpecificationCommand";
416
- import { ModifyInstanceEventStartTimeCommandInput, ModifyInstanceEventStartTimeCommandOutput } from "./commands/ModifyInstanceEventStartTimeCommand";
417
- import { ModifyInstanceEventWindowCommandInput, ModifyInstanceEventWindowCommandOutput } from "./commands/ModifyInstanceEventWindowCommand";
418
- import { ModifyInstanceMetadataOptionsCommandInput, ModifyInstanceMetadataOptionsCommandOutput } from "./commands/ModifyInstanceMetadataOptionsCommand";
419
- import { ModifyInstancePlacementCommandInput, ModifyInstancePlacementCommandOutput } from "./commands/ModifyInstancePlacementCommand";
420
- import { ModifyIpamCommandInput, ModifyIpamCommandOutput } from "./commands/ModifyIpamCommand";
421
- import { ModifyIpamPoolCommandInput, ModifyIpamPoolCommandOutput } from "./commands/ModifyIpamPoolCommand";
422
- import { ModifyIpamResourceCidrCommandInput, ModifyIpamResourceCidrCommandOutput } from "./commands/ModifyIpamResourceCidrCommand";
423
- import { ModifyIpamScopeCommandInput, ModifyIpamScopeCommandOutput } from "./commands/ModifyIpamScopeCommand";
424
- import { ModifyLaunchTemplateCommandInput, ModifyLaunchTemplateCommandOutput } from "./commands/ModifyLaunchTemplateCommand";
425
- import { ModifyManagedPrefixListCommandInput, ModifyManagedPrefixListCommandOutput } from "./commands/ModifyManagedPrefixListCommand";
426
- import { ModifyNetworkInterfaceAttributeCommandInput, ModifyNetworkInterfaceAttributeCommandOutput } from "./commands/ModifyNetworkInterfaceAttributeCommand";
427
- import { ModifyPrivateDnsNameOptionsCommandInput, ModifyPrivateDnsNameOptionsCommandOutput } from "./commands/ModifyPrivateDnsNameOptionsCommand";
428
- import { ModifyReservedInstancesCommandInput, ModifyReservedInstancesCommandOutput } from "./commands/ModifyReservedInstancesCommand";
429
- import { ModifySecurityGroupRulesCommandInput, ModifySecurityGroupRulesCommandOutput } from "./commands/ModifySecurityGroupRulesCommand";
430
- import { ModifySnapshotAttributeCommandInput, ModifySnapshotAttributeCommandOutput } from "./commands/ModifySnapshotAttributeCommand";
431
- import { ModifySnapshotTierCommandInput, ModifySnapshotTierCommandOutput } from "./commands/ModifySnapshotTierCommand";
432
- import { ModifySpotFleetRequestCommandInput, ModifySpotFleetRequestCommandOutput } from "./commands/ModifySpotFleetRequestCommand";
433
- import { ModifySubnetAttributeCommandInput, ModifySubnetAttributeCommandOutput } from "./commands/ModifySubnetAttributeCommand";
434
- import { ModifyTrafficMirrorFilterNetworkServicesCommandInput, ModifyTrafficMirrorFilterNetworkServicesCommandOutput } from "./commands/ModifyTrafficMirrorFilterNetworkServicesCommand";
435
- import { ModifyTrafficMirrorFilterRuleCommandInput, ModifyTrafficMirrorFilterRuleCommandOutput } from "./commands/ModifyTrafficMirrorFilterRuleCommand";
436
- import { ModifyTrafficMirrorSessionCommandInput, ModifyTrafficMirrorSessionCommandOutput } from "./commands/ModifyTrafficMirrorSessionCommand";
437
- import { ModifyTransitGatewayCommandInput, ModifyTransitGatewayCommandOutput } from "./commands/ModifyTransitGatewayCommand";
438
- import { ModifyTransitGatewayPrefixListReferenceCommandInput, ModifyTransitGatewayPrefixListReferenceCommandOutput } from "./commands/ModifyTransitGatewayPrefixListReferenceCommand";
439
- import { ModifyTransitGatewayVpcAttachmentCommandInput, ModifyTransitGatewayVpcAttachmentCommandOutput } from "./commands/ModifyTransitGatewayVpcAttachmentCommand";
440
- import { ModifyVolumeAttributeCommandInput, ModifyVolumeAttributeCommandOutput } from "./commands/ModifyVolumeAttributeCommand";
441
- import { ModifyVolumeCommandInput, ModifyVolumeCommandOutput } from "./commands/ModifyVolumeCommand";
442
- import { ModifyVpcAttributeCommandInput, ModifyVpcAttributeCommandOutput } from "./commands/ModifyVpcAttributeCommand";
443
- import { ModifyVpcEndpointCommandInput, ModifyVpcEndpointCommandOutput } from "./commands/ModifyVpcEndpointCommand";
444
- import { ModifyVpcEndpointConnectionNotificationCommandInput, ModifyVpcEndpointConnectionNotificationCommandOutput } from "./commands/ModifyVpcEndpointConnectionNotificationCommand";
445
- import { ModifyVpcEndpointServiceConfigurationCommandInput, ModifyVpcEndpointServiceConfigurationCommandOutput } from "./commands/ModifyVpcEndpointServiceConfigurationCommand";
446
- import { ModifyVpcEndpointServicePayerResponsibilityCommandInput, ModifyVpcEndpointServicePayerResponsibilityCommandOutput } from "./commands/ModifyVpcEndpointServicePayerResponsibilityCommand";
447
- import { ModifyVpcEndpointServicePermissionsCommandInput, ModifyVpcEndpointServicePermissionsCommandOutput } from "./commands/ModifyVpcEndpointServicePermissionsCommand";
448
- import { ModifyVpcPeeringConnectionOptionsCommandInput, ModifyVpcPeeringConnectionOptionsCommandOutput } from "./commands/ModifyVpcPeeringConnectionOptionsCommand";
449
- import { ModifyVpcTenancyCommandInput, ModifyVpcTenancyCommandOutput } from "./commands/ModifyVpcTenancyCommand";
450
- import { ModifyVpnConnectionCommandInput, ModifyVpnConnectionCommandOutput } from "./commands/ModifyVpnConnectionCommand";
451
- import { ModifyVpnConnectionOptionsCommandInput, ModifyVpnConnectionOptionsCommandOutput } from "./commands/ModifyVpnConnectionOptionsCommand";
452
- import { ModifyVpnTunnelCertificateCommandInput, ModifyVpnTunnelCertificateCommandOutput } from "./commands/ModifyVpnTunnelCertificateCommand";
453
- import { ModifyVpnTunnelOptionsCommandInput, ModifyVpnTunnelOptionsCommandOutput } from "./commands/ModifyVpnTunnelOptionsCommand";
454
- import { MonitorInstancesCommandInput, MonitorInstancesCommandOutput } from "./commands/MonitorInstancesCommand";
455
- import { MoveAddressToVpcCommandInput, MoveAddressToVpcCommandOutput } from "./commands/MoveAddressToVpcCommand";
456
- import { MoveByoipCidrToIpamCommandInput, MoveByoipCidrToIpamCommandOutput } from "./commands/MoveByoipCidrToIpamCommand";
457
- import { ProvisionByoipCidrCommandInput, ProvisionByoipCidrCommandOutput } from "./commands/ProvisionByoipCidrCommand";
458
- import { ProvisionIpamPoolCidrCommandInput, ProvisionIpamPoolCidrCommandOutput } from "./commands/ProvisionIpamPoolCidrCommand";
459
- import { ProvisionPublicIpv4PoolCidrCommandInput, ProvisionPublicIpv4PoolCidrCommandOutput } from "./commands/ProvisionPublicIpv4PoolCidrCommand";
460
- import { PurchaseHostReservationCommandInput, PurchaseHostReservationCommandOutput } from "./commands/PurchaseHostReservationCommand";
461
- import { PurchaseReservedInstancesOfferingCommandInput, PurchaseReservedInstancesOfferingCommandOutput } from "./commands/PurchaseReservedInstancesOfferingCommand";
462
- import { PurchaseScheduledInstancesCommandInput, PurchaseScheduledInstancesCommandOutput } from "./commands/PurchaseScheduledInstancesCommand";
463
- import { RebootInstancesCommandInput, RebootInstancesCommandOutput } from "./commands/RebootInstancesCommand";
464
- import { RegisterImageCommandInput, RegisterImageCommandOutput } from "./commands/RegisterImageCommand";
465
- import { RegisterInstanceEventNotificationAttributesCommandInput, RegisterInstanceEventNotificationAttributesCommandOutput } from "./commands/RegisterInstanceEventNotificationAttributesCommand";
466
- import { RegisterTransitGatewayMulticastGroupMembersCommandInput, RegisterTransitGatewayMulticastGroupMembersCommandOutput } from "./commands/RegisterTransitGatewayMulticastGroupMembersCommand";
467
- import { RegisterTransitGatewayMulticastGroupSourcesCommandInput, RegisterTransitGatewayMulticastGroupSourcesCommandOutput } from "./commands/RegisterTransitGatewayMulticastGroupSourcesCommand";
468
- import { RejectTransitGatewayMulticastDomainAssociationsCommandInput, RejectTransitGatewayMulticastDomainAssociationsCommandOutput } from "./commands/RejectTransitGatewayMulticastDomainAssociationsCommand";
469
- import { RejectTransitGatewayPeeringAttachmentCommandInput, RejectTransitGatewayPeeringAttachmentCommandOutput } from "./commands/RejectTransitGatewayPeeringAttachmentCommand";
470
- import { RejectTransitGatewayVpcAttachmentCommandInput, RejectTransitGatewayVpcAttachmentCommandOutput } from "./commands/RejectTransitGatewayVpcAttachmentCommand";
471
- import { RejectVpcEndpointConnectionsCommandInput, RejectVpcEndpointConnectionsCommandOutput } from "./commands/RejectVpcEndpointConnectionsCommand";
472
- import { RejectVpcPeeringConnectionCommandInput, RejectVpcPeeringConnectionCommandOutput } from "./commands/RejectVpcPeeringConnectionCommand";
473
- import { ReleaseAddressCommandInput, ReleaseAddressCommandOutput } from "./commands/ReleaseAddressCommand";
474
- import { ReleaseHostsCommandInput, ReleaseHostsCommandOutput } from "./commands/ReleaseHostsCommand";
475
- import { ReleaseIpamPoolAllocationCommandInput, ReleaseIpamPoolAllocationCommandOutput } from "./commands/ReleaseIpamPoolAllocationCommand";
476
- import { ReplaceIamInstanceProfileAssociationCommandInput, ReplaceIamInstanceProfileAssociationCommandOutput } from "./commands/ReplaceIamInstanceProfileAssociationCommand";
477
- import { ReplaceNetworkAclAssociationCommandInput, ReplaceNetworkAclAssociationCommandOutput } from "./commands/ReplaceNetworkAclAssociationCommand";
478
- import { ReplaceNetworkAclEntryCommandInput, ReplaceNetworkAclEntryCommandOutput } from "./commands/ReplaceNetworkAclEntryCommand";
479
- import { ReplaceRouteCommandInput, ReplaceRouteCommandOutput } from "./commands/ReplaceRouteCommand";
480
- import { ReplaceRouteTableAssociationCommandInput, ReplaceRouteTableAssociationCommandOutput } from "./commands/ReplaceRouteTableAssociationCommand";
481
- import { ReplaceTransitGatewayRouteCommandInput, ReplaceTransitGatewayRouteCommandOutput } from "./commands/ReplaceTransitGatewayRouteCommand";
482
- import { ReportInstanceStatusCommandInput, ReportInstanceStatusCommandOutput } from "./commands/ReportInstanceStatusCommand";
483
- import { RequestSpotFleetCommandInput, RequestSpotFleetCommandOutput } from "./commands/RequestSpotFleetCommand";
484
- import { RequestSpotInstancesCommandInput, RequestSpotInstancesCommandOutput } from "./commands/RequestSpotInstancesCommand";
485
- import { ResetAddressAttributeCommandInput, ResetAddressAttributeCommandOutput } from "./commands/ResetAddressAttributeCommand";
486
- import { ResetEbsDefaultKmsKeyIdCommandInput, ResetEbsDefaultKmsKeyIdCommandOutput } from "./commands/ResetEbsDefaultKmsKeyIdCommand";
487
- import { ResetFpgaImageAttributeCommandInput, ResetFpgaImageAttributeCommandOutput } from "./commands/ResetFpgaImageAttributeCommand";
488
- import { ResetImageAttributeCommandInput, ResetImageAttributeCommandOutput } from "./commands/ResetImageAttributeCommand";
489
- import { ResetInstanceAttributeCommandInput, ResetInstanceAttributeCommandOutput } from "./commands/ResetInstanceAttributeCommand";
490
- import { ResetNetworkInterfaceAttributeCommandInput, ResetNetworkInterfaceAttributeCommandOutput } from "./commands/ResetNetworkInterfaceAttributeCommand";
491
- import { ResetSnapshotAttributeCommandInput, ResetSnapshotAttributeCommandOutput } from "./commands/ResetSnapshotAttributeCommand";
492
- import { RestoreAddressToClassicCommandInput, RestoreAddressToClassicCommandOutput } from "./commands/RestoreAddressToClassicCommand";
493
- import { RestoreManagedPrefixListVersionCommandInput, RestoreManagedPrefixListVersionCommandOutput } from "./commands/RestoreManagedPrefixListVersionCommand";
494
- import { RestoreSnapshotFromRecycleBinCommandInput, RestoreSnapshotFromRecycleBinCommandOutput } from "./commands/RestoreSnapshotFromRecycleBinCommand";
495
- import { RestoreSnapshotTierCommandInput, RestoreSnapshotTierCommandOutput } from "./commands/RestoreSnapshotTierCommand";
496
- import { RevokeClientVpnIngressCommandInput, RevokeClientVpnIngressCommandOutput } from "./commands/RevokeClientVpnIngressCommand";
497
- import { RevokeSecurityGroupEgressCommandInput, RevokeSecurityGroupEgressCommandOutput } from "./commands/RevokeSecurityGroupEgressCommand";
498
- import { RevokeSecurityGroupIngressCommandInput, RevokeSecurityGroupIngressCommandOutput } from "./commands/RevokeSecurityGroupIngressCommand";
499
- import { RunInstancesCommandInput, RunInstancesCommandOutput } from "./commands/RunInstancesCommand";
500
- import { RunScheduledInstancesCommandInput, RunScheduledInstancesCommandOutput } from "./commands/RunScheduledInstancesCommand";
501
- import { SearchLocalGatewayRoutesCommandInput, SearchLocalGatewayRoutesCommandOutput } from "./commands/SearchLocalGatewayRoutesCommand";
502
- import { SearchTransitGatewayMulticastGroupsCommandInput, SearchTransitGatewayMulticastGroupsCommandOutput } from "./commands/SearchTransitGatewayMulticastGroupsCommand";
503
- import { SearchTransitGatewayRoutesCommandInput, SearchTransitGatewayRoutesCommandOutput } from "./commands/SearchTransitGatewayRoutesCommand";
504
- import { SendDiagnosticInterruptCommandInput, SendDiagnosticInterruptCommandOutput } from "./commands/SendDiagnosticInterruptCommand";
505
- import { StartInstancesCommandInput, StartInstancesCommandOutput } from "./commands/StartInstancesCommand";
506
- import { StartNetworkInsightsAccessScopeAnalysisCommandInput, StartNetworkInsightsAccessScopeAnalysisCommandOutput } from "./commands/StartNetworkInsightsAccessScopeAnalysisCommand";
507
- import { StartNetworkInsightsAnalysisCommandInput, StartNetworkInsightsAnalysisCommandOutput } from "./commands/StartNetworkInsightsAnalysisCommand";
508
- import { StartVpcEndpointServicePrivateDnsVerificationCommandInput, StartVpcEndpointServicePrivateDnsVerificationCommandOutput } from "./commands/StartVpcEndpointServicePrivateDnsVerificationCommand";
509
- import { StopInstancesCommandInput, StopInstancesCommandOutput } from "./commands/StopInstancesCommand";
510
- import { TerminateClientVpnConnectionsCommandInput, TerminateClientVpnConnectionsCommandOutput } from "./commands/TerminateClientVpnConnectionsCommand";
511
- import { TerminateInstancesCommandInput, TerminateInstancesCommandOutput } from "./commands/TerminateInstancesCommand";
512
- import { UnassignIpv6AddressesCommandInput, UnassignIpv6AddressesCommandOutput } from "./commands/UnassignIpv6AddressesCommand";
513
- import { UnassignPrivateIpAddressesCommandInput, UnassignPrivateIpAddressesCommandOutput } from "./commands/UnassignPrivateIpAddressesCommand";
514
- import { UnmonitorInstancesCommandInput, UnmonitorInstancesCommandOutput } from "./commands/UnmonitorInstancesCommand";
515
- import { UpdateSecurityGroupRuleDescriptionsEgressCommandInput, UpdateSecurityGroupRuleDescriptionsEgressCommandOutput } from "./commands/UpdateSecurityGroupRuleDescriptionsEgressCommand";
516
- import { UpdateSecurityGroupRuleDescriptionsIngressCommandInput, UpdateSecurityGroupRuleDescriptionsIngressCommandOutput } from "./commands/UpdateSecurityGroupRuleDescriptionsIngressCommand";
517
- import { WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput } from "./commands/WithdrawByoipCidrCommand";
518
- import { EC2Client } from "./EC2Client";
519
-
520
- export declare class EC2 extends EC2Client {
521
-
522
- acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, options?: __HttpHandlerOptions): Promise<AcceptReservedInstancesExchangeQuoteCommandOutput>;
523
- acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, cb: (err: any, data?: AcceptReservedInstancesExchangeQuoteCommandOutput) => void): void;
524
- acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptReservedInstancesExchangeQuoteCommandOutput) => void): void;
525
-
526
- acceptTransitGatewayMulticastDomainAssociations(args: AcceptTransitGatewayMulticastDomainAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<AcceptTransitGatewayMulticastDomainAssociationsCommandOutput>;
527
- acceptTransitGatewayMulticastDomainAssociations(args: AcceptTransitGatewayMulticastDomainAssociationsCommandInput, cb: (err: any, data?: AcceptTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
528
- acceptTransitGatewayMulticastDomainAssociations(args: AcceptTransitGatewayMulticastDomainAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
529
-
530
- acceptTransitGatewayPeeringAttachment(args: AcceptTransitGatewayPeeringAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<AcceptTransitGatewayPeeringAttachmentCommandOutput>;
531
- acceptTransitGatewayPeeringAttachment(args: AcceptTransitGatewayPeeringAttachmentCommandInput, cb: (err: any, data?: AcceptTransitGatewayPeeringAttachmentCommandOutput) => void): void;
532
- acceptTransitGatewayPeeringAttachment(args: AcceptTransitGatewayPeeringAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptTransitGatewayPeeringAttachmentCommandOutput) => void): void;
533
-
534
- acceptTransitGatewayVpcAttachment(args: AcceptTransitGatewayVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<AcceptTransitGatewayVpcAttachmentCommandOutput>;
535
- acceptTransitGatewayVpcAttachment(args: AcceptTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: AcceptTransitGatewayVpcAttachmentCommandOutput) => void): void;
536
- acceptTransitGatewayVpcAttachment(args: AcceptTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptTransitGatewayVpcAttachmentCommandOutput) => void): void;
537
-
538
- acceptVpcEndpointConnections(args: AcceptVpcEndpointConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<AcceptVpcEndpointConnectionsCommandOutput>;
539
- acceptVpcEndpointConnections(args: AcceptVpcEndpointConnectionsCommandInput, cb: (err: any, data?: AcceptVpcEndpointConnectionsCommandOutput) => void): void;
540
- acceptVpcEndpointConnections(args: AcceptVpcEndpointConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptVpcEndpointConnectionsCommandOutput) => void): void;
541
-
542
- acceptVpcPeeringConnection(args: AcceptVpcPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<AcceptVpcPeeringConnectionCommandOutput>;
543
- acceptVpcPeeringConnection(args: AcceptVpcPeeringConnectionCommandInput, cb: (err: any, data?: AcceptVpcPeeringConnectionCommandOutput) => void): void;
544
- acceptVpcPeeringConnection(args: AcceptVpcPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptVpcPeeringConnectionCommandOutput) => void): void;
545
-
546
- advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<AdvertiseByoipCidrCommandOutput>;
547
- advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, cb: (err: any, data?: AdvertiseByoipCidrCommandOutput) => void): void;
548
- advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AdvertiseByoipCidrCommandOutput) => void): void;
549
-
550
- allocateAddress(args: AllocateAddressCommandInput, options?: __HttpHandlerOptions): Promise<AllocateAddressCommandOutput>;
551
- allocateAddress(args: AllocateAddressCommandInput, cb: (err: any, data?: AllocateAddressCommandOutput) => void): void;
552
- allocateAddress(args: AllocateAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateAddressCommandOutput) => void): void;
553
-
554
- allocateHosts(args: AllocateHostsCommandInput, options?: __HttpHandlerOptions): Promise<AllocateHostsCommandOutput>;
555
- allocateHosts(args: AllocateHostsCommandInput, cb: (err: any, data?: AllocateHostsCommandOutput) => void): void;
556
- allocateHosts(args: AllocateHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateHostsCommandOutput) => void): void;
557
-
558
- allocateIpamPoolCidr(args: AllocateIpamPoolCidrCommandInput, options?: __HttpHandlerOptions): Promise<AllocateIpamPoolCidrCommandOutput>;
559
- allocateIpamPoolCidr(args: AllocateIpamPoolCidrCommandInput, cb: (err: any, data?: AllocateIpamPoolCidrCommandOutput) => void): void;
560
- allocateIpamPoolCidr(args: AllocateIpamPoolCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllocateIpamPoolCidrCommandOutput) => void): void;
561
-
562
- applySecurityGroupsToClientVpnTargetNetwork(args: ApplySecurityGroupsToClientVpnTargetNetworkCommandInput, options?: __HttpHandlerOptions): Promise<ApplySecurityGroupsToClientVpnTargetNetworkCommandOutput>;
563
- applySecurityGroupsToClientVpnTargetNetwork(args: ApplySecurityGroupsToClientVpnTargetNetworkCommandInput, cb: (err: any, data?: ApplySecurityGroupsToClientVpnTargetNetworkCommandOutput) => void): void;
564
- applySecurityGroupsToClientVpnTargetNetwork(args: ApplySecurityGroupsToClientVpnTargetNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplySecurityGroupsToClientVpnTargetNetworkCommandOutput) => void): void;
565
-
566
- assignIpv6Addresses(args: AssignIpv6AddressesCommandInput, options?: __HttpHandlerOptions): Promise<AssignIpv6AddressesCommandOutput>;
567
- assignIpv6Addresses(args: AssignIpv6AddressesCommandInput, cb: (err: any, data?: AssignIpv6AddressesCommandOutput) => void): void;
568
- assignIpv6Addresses(args: AssignIpv6AddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssignIpv6AddressesCommandOutput) => void): void;
569
-
570
- assignPrivateIpAddresses(args: AssignPrivateIpAddressesCommandInput, options?: __HttpHandlerOptions): Promise<AssignPrivateIpAddressesCommandOutput>;
571
- assignPrivateIpAddresses(args: AssignPrivateIpAddressesCommandInput, cb: (err: any, data?: AssignPrivateIpAddressesCommandOutput) => void): void;
572
- assignPrivateIpAddresses(args: AssignPrivateIpAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssignPrivateIpAddressesCommandOutput) => void): void;
573
-
574
- associateAddress(args: AssociateAddressCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAddressCommandOutput>;
575
- associateAddress(args: AssociateAddressCommandInput, cb: (err: any, data?: AssociateAddressCommandOutput) => void): void;
576
- associateAddress(args: AssociateAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAddressCommandOutput) => void): void;
577
-
578
- associateClientVpnTargetNetwork(args: AssociateClientVpnTargetNetworkCommandInput, options?: __HttpHandlerOptions): Promise<AssociateClientVpnTargetNetworkCommandOutput>;
579
- associateClientVpnTargetNetwork(args: AssociateClientVpnTargetNetworkCommandInput, cb: (err: any, data?: AssociateClientVpnTargetNetworkCommandOutput) => void): void;
580
- associateClientVpnTargetNetwork(args: AssociateClientVpnTargetNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateClientVpnTargetNetworkCommandOutput) => void): void;
581
-
582
- associateDhcpOptions(args: AssociateDhcpOptionsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDhcpOptionsCommandOutput>;
583
- associateDhcpOptions(args: AssociateDhcpOptionsCommandInput, cb: (err: any, data?: AssociateDhcpOptionsCommandOutput) => void): void;
584
- associateDhcpOptions(args: AssociateDhcpOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDhcpOptionsCommandOutput) => void): void;
585
-
586
- associateEnclaveCertificateIamRole(args: AssociateEnclaveCertificateIamRoleCommandInput, options?: __HttpHandlerOptions): Promise<AssociateEnclaveCertificateIamRoleCommandOutput>;
587
- associateEnclaveCertificateIamRole(args: AssociateEnclaveCertificateIamRoleCommandInput, cb: (err: any, data?: AssociateEnclaveCertificateIamRoleCommandOutput) => void): void;
588
- associateEnclaveCertificateIamRole(args: AssociateEnclaveCertificateIamRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEnclaveCertificateIamRoleCommandOutput) => void): void;
589
-
590
- associateIamInstanceProfile(args: AssociateIamInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<AssociateIamInstanceProfileCommandOutput>;
591
- associateIamInstanceProfile(args: AssociateIamInstanceProfileCommandInput, cb: (err: any, data?: AssociateIamInstanceProfileCommandOutput) => void): void;
592
- associateIamInstanceProfile(args: AssociateIamInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateIamInstanceProfileCommandOutput) => void): void;
593
-
594
- associateInstanceEventWindow(args: AssociateInstanceEventWindowCommandInput, options?: __HttpHandlerOptions): Promise<AssociateInstanceEventWindowCommandOutput>;
595
- associateInstanceEventWindow(args: AssociateInstanceEventWindowCommandInput, cb: (err: any, data?: AssociateInstanceEventWindowCommandOutput) => void): void;
596
- associateInstanceEventWindow(args: AssociateInstanceEventWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateInstanceEventWindowCommandOutput) => void): void;
597
-
598
- associateRouteTable(args: AssociateRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<AssociateRouteTableCommandOutput>;
599
- associateRouteTable(args: AssociateRouteTableCommandInput, cb: (err: any, data?: AssociateRouteTableCommandOutput) => void): void;
600
- associateRouteTable(args: AssociateRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateRouteTableCommandOutput) => void): void;
601
-
602
- associateSubnetCidrBlock(args: AssociateSubnetCidrBlockCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSubnetCidrBlockCommandOutput>;
603
- associateSubnetCidrBlock(args: AssociateSubnetCidrBlockCommandInput, cb: (err: any, data?: AssociateSubnetCidrBlockCommandOutput) => void): void;
604
- associateSubnetCidrBlock(args: AssociateSubnetCidrBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSubnetCidrBlockCommandOutput) => void): void;
605
-
606
- associateTransitGatewayMulticastDomain(args: AssociateTransitGatewayMulticastDomainCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTransitGatewayMulticastDomainCommandOutput>;
607
- associateTransitGatewayMulticastDomain(args: AssociateTransitGatewayMulticastDomainCommandInput, cb: (err: any, data?: AssociateTransitGatewayMulticastDomainCommandOutput) => void): void;
608
- associateTransitGatewayMulticastDomain(args: AssociateTransitGatewayMulticastDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTransitGatewayMulticastDomainCommandOutput) => void): void;
609
-
610
- associateTransitGatewayRouteTable(args: AssociateTransitGatewayRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTransitGatewayRouteTableCommandOutput>;
611
- associateTransitGatewayRouteTable(args: AssociateTransitGatewayRouteTableCommandInput, cb: (err: any, data?: AssociateTransitGatewayRouteTableCommandOutput) => void): void;
612
- associateTransitGatewayRouteTable(args: AssociateTransitGatewayRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTransitGatewayRouteTableCommandOutput) => void): void;
613
-
614
- associateTrunkInterface(args: AssociateTrunkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrunkInterfaceCommandOutput>;
615
- associateTrunkInterface(args: AssociateTrunkInterfaceCommandInput, cb: (err: any, data?: AssociateTrunkInterfaceCommandOutput) => void): void;
616
- associateTrunkInterface(args: AssociateTrunkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrunkInterfaceCommandOutput) => void): void;
617
-
618
- associateVpcCidrBlock(args: AssociateVpcCidrBlockCommandInput, options?: __HttpHandlerOptions): Promise<AssociateVpcCidrBlockCommandOutput>;
619
- associateVpcCidrBlock(args: AssociateVpcCidrBlockCommandInput, cb: (err: any, data?: AssociateVpcCidrBlockCommandOutput) => void): void;
620
- associateVpcCidrBlock(args: AssociateVpcCidrBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateVpcCidrBlockCommandOutput) => void): void;
621
-
622
- attachClassicLinkVpc(args: AttachClassicLinkVpcCommandInput, options?: __HttpHandlerOptions): Promise<AttachClassicLinkVpcCommandOutput>;
623
- attachClassicLinkVpc(args: AttachClassicLinkVpcCommandInput, cb: (err: any, data?: AttachClassicLinkVpcCommandOutput) => void): void;
624
- attachClassicLinkVpc(args: AttachClassicLinkVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachClassicLinkVpcCommandOutput) => void): void;
625
-
626
- attachInternetGateway(args: AttachInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<AttachInternetGatewayCommandOutput>;
627
- attachInternetGateway(args: AttachInternetGatewayCommandInput, cb: (err: any, data?: AttachInternetGatewayCommandOutput) => void): void;
628
- attachInternetGateway(args: AttachInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachInternetGatewayCommandOutput) => void): void;
629
-
630
- attachNetworkInterface(args: AttachNetworkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<AttachNetworkInterfaceCommandOutput>;
631
- attachNetworkInterface(args: AttachNetworkInterfaceCommandInput, cb: (err: any, data?: AttachNetworkInterfaceCommandOutput) => void): void;
632
- attachNetworkInterface(args: AttachNetworkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachNetworkInterfaceCommandOutput) => void): void;
633
-
634
- attachVolume(args: AttachVolumeCommandInput, options?: __HttpHandlerOptions): Promise<AttachVolumeCommandOutput>;
635
- attachVolume(args: AttachVolumeCommandInput, cb: (err: any, data?: AttachVolumeCommandOutput) => void): void;
636
- attachVolume(args: AttachVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachVolumeCommandOutput) => void): void;
637
-
638
- attachVpnGateway(args: AttachVpnGatewayCommandInput, options?: __HttpHandlerOptions): Promise<AttachVpnGatewayCommandOutput>;
639
- attachVpnGateway(args: AttachVpnGatewayCommandInput, cb: (err: any, data?: AttachVpnGatewayCommandOutput) => void): void;
640
- attachVpnGateway(args: AttachVpnGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachVpnGatewayCommandOutput) => void): void;
641
-
642
- authorizeClientVpnIngress(args: AuthorizeClientVpnIngressCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeClientVpnIngressCommandOutput>;
643
- authorizeClientVpnIngress(args: AuthorizeClientVpnIngressCommandInput, cb: (err: any, data?: AuthorizeClientVpnIngressCommandOutput) => void): void;
644
- authorizeClientVpnIngress(args: AuthorizeClientVpnIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeClientVpnIngressCommandOutput) => void): void;
645
-
646
- authorizeSecurityGroupEgress(args: AuthorizeSecurityGroupEgressCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeSecurityGroupEgressCommandOutput>;
647
- authorizeSecurityGroupEgress(args: AuthorizeSecurityGroupEgressCommandInput, cb: (err: any, data?: AuthorizeSecurityGroupEgressCommandOutput) => void): void;
648
- authorizeSecurityGroupEgress(args: AuthorizeSecurityGroupEgressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeSecurityGroupEgressCommandOutput) => void): void;
649
-
650
- authorizeSecurityGroupIngress(args: AuthorizeSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeSecurityGroupIngressCommandOutput>;
651
- authorizeSecurityGroupIngress(args: AuthorizeSecurityGroupIngressCommandInput, cb: (err: any, data?: AuthorizeSecurityGroupIngressCommandOutput) => void): void;
652
- authorizeSecurityGroupIngress(args: AuthorizeSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeSecurityGroupIngressCommandOutput) => void): void;
653
-
654
- bundleInstance(args: BundleInstanceCommandInput, options?: __HttpHandlerOptions): Promise<BundleInstanceCommandOutput>;
655
- bundleInstance(args: BundleInstanceCommandInput, cb: (err: any, data?: BundleInstanceCommandOutput) => void): void;
656
- bundleInstance(args: BundleInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BundleInstanceCommandOutput) => void): void;
657
-
658
- cancelBundleTask(args: CancelBundleTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelBundleTaskCommandOutput>;
659
- cancelBundleTask(args: CancelBundleTaskCommandInput, cb: (err: any, data?: CancelBundleTaskCommandOutput) => void): void;
660
- cancelBundleTask(args: CancelBundleTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelBundleTaskCommandOutput) => void): void;
661
-
662
- cancelCapacityReservation(args: CancelCapacityReservationCommandInput, options?: __HttpHandlerOptions): Promise<CancelCapacityReservationCommandOutput>;
663
- cancelCapacityReservation(args: CancelCapacityReservationCommandInput, cb: (err: any, data?: CancelCapacityReservationCommandOutput) => void): void;
664
- cancelCapacityReservation(args: CancelCapacityReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelCapacityReservationCommandOutput) => void): void;
665
-
666
- cancelCapacityReservationFleets(args: CancelCapacityReservationFleetsCommandInput, options?: __HttpHandlerOptions): Promise<CancelCapacityReservationFleetsCommandOutput>;
667
- cancelCapacityReservationFleets(args: CancelCapacityReservationFleetsCommandInput, cb: (err: any, data?: CancelCapacityReservationFleetsCommandOutput) => void): void;
668
- cancelCapacityReservationFleets(args: CancelCapacityReservationFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelCapacityReservationFleetsCommandOutput) => void): void;
669
-
670
- cancelConversionTask(args: CancelConversionTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelConversionTaskCommandOutput>;
671
- cancelConversionTask(args: CancelConversionTaskCommandInput, cb: (err: any, data?: CancelConversionTaskCommandOutput) => void): void;
672
- cancelConversionTask(args: CancelConversionTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelConversionTaskCommandOutput) => void): void;
673
-
674
- cancelExportTask(args: CancelExportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelExportTaskCommandOutput>;
675
- cancelExportTask(args: CancelExportTaskCommandInput, cb: (err: any, data?: CancelExportTaskCommandOutput) => void): void;
676
- cancelExportTask(args: CancelExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelExportTaskCommandOutput) => void): void;
677
-
678
- cancelImportTask(args: CancelImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelImportTaskCommandOutput>;
679
- cancelImportTask(args: CancelImportTaskCommandInput, cb: (err: any, data?: CancelImportTaskCommandOutput) => void): void;
680
- cancelImportTask(args: CancelImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelImportTaskCommandOutput) => void): void;
681
-
682
- cancelReservedInstancesListing(args: CancelReservedInstancesListingCommandInput, options?: __HttpHandlerOptions): Promise<CancelReservedInstancesListingCommandOutput>;
683
- cancelReservedInstancesListing(args: CancelReservedInstancesListingCommandInput, cb: (err: any, data?: CancelReservedInstancesListingCommandOutput) => void): void;
684
- cancelReservedInstancesListing(args: CancelReservedInstancesListingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelReservedInstancesListingCommandOutput) => void): void;
685
-
686
- cancelSpotFleetRequests(args: CancelSpotFleetRequestsCommandInput, options?: __HttpHandlerOptions): Promise<CancelSpotFleetRequestsCommandOutput>;
687
- cancelSpotFleetRequests(args: CancelSpotFleetRequestsCommandInput, cb: (err: any, data?: CancelSpotFleetRequestsCommandOutput) => void): void;
688
- cancelSpotFleetRequests(args: CancelSpotFleetRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSpotFleetRequestsCommandOutput) => void): void;
689
-
690
- cancelSpotInstanceRequests(args: CancelSpotInstanceRequestsCommandInput, options?: __HttpHandlerOptions): Promise<CancelSpotInstanceRequestsCommandOutput>;
691
- cancelSpotInstanceRequests(args: CancelSpotInstanceRequestsCommandInput, cb: (err: any, data?: CancelSpotInstanceRequestsCommandOutput) => void): void;
692
- cancelSpotInstanceRequests(args: CancelSpotInstanceRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSpotInstanceRequestsCommandOutput) => void): void;
693
-
694
- confirmProductInstance(args: ConfirmProductInstanceCommandInput, options?: __HttpHandlerOptions): Promise<ConfirmProductInstanceCommandOutput>;
695
- confirmProductInstance(args: ConfirmProductInstanceCommandInput, cb: (err: any, data?: ConfirmProductInstanceCommandOutput) => void): void;
696
- confirmProductInstance(args: ConfirmProductInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfirmProductInstanceCommandOutput) => void): void;
697
-
698
- copyFpgaImage(args: CopyFpgaImageCommandInput, options?: __HttpHandlerOptions): Promise<CopyFpgaImageCommandOutput>;
699
- copyFpgaImage(args: CopyFpgaImageCommandInput, cb: (err: any, data?: CopyFpgaImageCommandOutput) => void): void;
700
- copyFpgaImage(args: CopyFpgaImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyFpgaImageCommandOutput) => void): void;
701
-
702
- copyImage(args: CopyImageCommandInput, options?: __HttpHandlerOptions): Promise<CopyImageCommandOutput>;
703
- copyImage(args: CopyImageCommandInput, cb: (err: any, data?: CopyImageCommandOutput) => void): void;
704
- copyImage(args: CopyImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyImageCommandOutput) => void): void;
705
-
706
- copySnapshot(args: CopySnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CopySnapshotCommandOutput>;
707
- copySnapshot(args: CopySnapshotCommandInput, cb: (err: any, data?: CopySnapshotCommandOutput) => void): void;
708
- copySnapshot(args: CopySnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopySnapshotCommandOutput) => void): void;
709
-
710
- createCapacityReservation(args: CreateCapacityReservationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCapacityReservationCommandOutput>;
711
- createCapacityReservation(args: CreateCapacityReservationCommandInput, cb: (err: any, data?: CreateCapacityReservationCommandOutput) => void): void;
712
- createCapacityReservation(args: CreateCapacityReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCapacityReservationCommandOutput) => void): void;
713
-
714
- createCapacityReservationFleet(args: CreateCapacityReservationFleetCommandInput, options?: __HttpHandlerOptions): Promise<CreateCapacityReservationFleetCommandOutput>;
715
- createCapacityReservationFleet(args: CreateCapacityReservationFleetCommandInput, cb: (err: any, data?: CreateCapacityReservationFleetCommandOutput) => void): void;
716
- createCapacityReservationFleet(args: CreateCapacityReservationFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCapacityReservationFleetCommandOutput) => void): void;
717
-
718
- createCarrierGateway(args: CreateCarrierGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateCarrierGatewayCommandOutput>;
719
- createCarrierGateway(args: CreateCarrierGatewayCommandInput, cb: (err: any, data?: CreateCarrierGatewayCommandOutput) => void): void;
720
- createCarrierGateway(args: CreateCarrierGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCarrierGatewayCommandOutput) => void): void;
721
-
722
- createClientVpnEndpoint(args: CreateClientVpnEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateClientVpnEndpointCommandOutput>;
723
- createClientVpnEndpoint(args: CreateClientVpnEndpointCommandInput, cb: (err: any, data?: CreateClientVpnEndpointCommandOutput) => void): void;
724
- createClientVpnEndpoint(args: CreateClientVpnEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClientVpnEndpointCommandOutput) => void): void;
725
-
726
- createClientVpnRoute(args: CreateClientVpnRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateClientVpnRouteCommandOutput>;
727
- createClientVpnRoute(args: CreateClientVpnRouteCommandInput, cb: (err: any, data?: CreateClientVpnRouteCommandOutput) => void): void;
728
- createClientVpnRoute(args: CreateClientVpnRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClientVpnRouteCommandOutput) => void): void;
729
-
730
- createCustomerGateway(args: CreateCustomerGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomerGatewayCommandOutput>;
731
- createCustomerGateway(args: CreateCustomerGatewayCommandInput, cb: (err: any, data?: CreateCustomerGatewayCommandOutput) => void): void;
732
- createCustomerGateway(args: CreateCustomerGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomerGatewayCommandOutput) => void): void;
733
-
734
- createDefaultSubnet(args: CreateDefaultSubnetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDefaultSubnetCommandOutput>;
735
- createDefaultSubnet(args: CreateDefaultSubnetCommandInput, cb: (err: any, data?: CreateDefaultSubnetCommandOutput) => void): void;
736
- createDefaultSubnet(args: CreateDefaultSubnetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDefaultSubnetCommandOutput) => void): void;
737
-
738
- createDefaultVpc(args: CreateDefaultVpcCommandInput, options?: __HttpHandlerOptions): Promise<CreateDefaultVpcCommandOutput>;
739
- createDefaultVpc(args: CreateDefaultVpcCommandInput, cb: (err: any, data?: CreateDefaultVpcCommandOutput) => void): void;
740
- createDefaultVpc(args: CreateDefaultVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDefaultVpcCommandOutput) => void): void;
741
-
742
- createDhcpOptions(args: CreateDhcpOptionsCommandInput, options?: __HttpHandlerOptions): Promise<CreateDhcpOptionsCommandOutput>;
743
- createDhcpOptions(args: CreateDhcpOptionsCommandInput, cb: (err: any, data?: CreateDhcpOptionsCommandOutput) => void): void;
744
- createDhcpOptions(args: CreateDhcpOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDhcpOptionsCommandOutput) => void): void;
745
-
746
- createEgressOnlyInternetGateway(args: CreateEgressOnlyInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateEgressOnlyInternetGatewayCommandOutput>;
747
- createEgressOnlyInternetGateway(args: CreateEgressOnlyInternetGatewayCommandInput, cb: (err: any, data?: CreateEgressOnlyInternetGatewayCommandOutput) => void): void;
748
- createEgressOnlyInternetGateway(args: CreateEgressOnlyInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEgressOnlyInternetGatewayCommandOutput) => void): void;
749
-
750
- createFleet(args: CreateFleetCommandInput, options?: __HttpHandlerOptions): Promise<CreateFleetCommandOutput>;
751
- createFleet(args: CreateFleetCommandInput, cb: (err: any, data?: CreateFleetCommandOutput) => void): void;
752
- createFleet(args: CreateFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFleetCommandOutput) => void): void;
753
-
754
- createFlowLogs(args: CreateFlowLogsCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowLogsCommandOutput>;
755
- createFlowLogs(args: CreateFlowLogsCommandInput, cb: (err: any, data?: CreateFlowLogsCommandOutput) => void): void;
756
- createFlowLogs(args: CreateFlowLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowLogsCommandOutput) => void): void;
757
-
758
- createFpgaImage(args: CreateFpgaImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateFpgaImageCommandOutput>;
759
- createFpgaImage(args: CreateFpgaImageCommandInput, cb: (err: any, data?: CreateFpgaImageCommandOutput) => void): void;
760
- createFpgaImage(args: CreateFpgaImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFpgaImageCommandOutput) => void): void;
761
-
762
- createImage(args: CreateImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateImageCommandOutput>;
763
- createImage(args: CreateImageCommandInput, cb: (err: any, data?: CreateImageCommandOutput) => void): void;
764
- createImage(args: CreateImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateImageCommandOutput) => void): void;
765
-
766
- createInstanceEventWindow(args: CreateInstanceEventWindowCommandInput, options?: __HttpHandlerOptions): Promise<CreateInstanceEventWindowCommandOutput>;
767
- createInstanceEventWindow(args: CreateInstanceEventWindowCommandInput, cb: (err: any, data?: CreateInstanceEventWindowCommandOutput) => void): void;
768
- createInstanceEventWindow(args: CreateInstanceEventWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInstanceEventWindowCommandOutput) => void): void;
769
-
770
- createInstanceExportTask(args: CreateInstanceExportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateInstanceExportTaskCommandOutput>;
771
- createInstanceExportTask(args: CreateInstanceExportTaskCommandInput, cb: (err: any, data?: CreateInstanceExportTaskCommandOutput) => void): void;
772
- createInstanceExportTask(args: CreateInstanceExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInstanceExportTaskCommandOutput) => void): void;
773
-
774
- createInternetGateway(args: CreateInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateInternetGatewayCommandOutput>;
775
- createInternetGateway(args: CreateInternetGatewayCommandInput, cb: (err: any, data?: CreateInternetGatewayCommandOutput) => void): void;
776
- createInternetGateway(args: CreateInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInternetGatewayCommandOutput) => void): void;
777
-
778
- createIpam(args: CreateIpamCommandInput, options?: __HttpHandlerOptions): Promise<CreateIpamCommandOutput>;
779
- createIpam(args: CreateIpamCommandInput, cb: (err: any, data?: CreateIpamCommandOutput) => void): void;
780
- createIpam(args: CreateIpamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIpamCommandOutput) => void): void;
781
-
782
- createIpamPool(args: CreateIpamPoolCommandInput, options?: __HttpHandlerOptions): Promise<CreateIpamPoolCommandOutput>;
783
- createIpamPool(args: CreateIpamPoolCommandInput, cb: (err: any, data?: CreateIpamPoolCommandOutput) => void): void;
784
- createIpamPool(args: CreateIpamPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIpamPoolCommandOutput) => void): void;
785
-
786
- createIpamScope(args: CreateIpamScopeCommandInput, options?: __HttpHandlerOptions): Promise<CreateIpamScopeCommandOutput>;
787
- createIpamScope(args: CreateIpamScopeCommandInput, cb: (err: any, data?: CreateIpamScopeCommandOutput) => void): void;
788
- createIpamScope(args: CreateIpamScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIpamScopeCommandOutput) => void): void;
789
-
790
- createKeyPair(args: CreateKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<CreateKeyPairCommandOutput>;
791
- createKeyPair(args: CreateKeyPairCommandInput, cb: (err: any, data?: CreateKeyPairCommandOutput) => void): void;
792
- createKeyPair(args: CreateKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeyPairCommandOutput) => void): void;
793
-
794
- createLaunchTemplate(args: CreateLaunchTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateLaunchTemplateCommandOutput>;
795
- createLaunchTemplate(args: CreateLaunchTemplateCommandInput, cb: (err: any, data?: CreateLaunchTemplateCommandOutput) => void): void;
796
- createLaunchTemplate(args: CreateLaunchTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLaunchTemplateCommandOutput) => void): void;
797
-
798
- createLaunchTemplateVersion(args: CreateLaunchTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLaunchTemplateVersionCommandOutput>;
799
- createLaunchTemplateVersion(args: CreateLaunchTemplateVersionCommandInput, cb: (err: any, data?: CreateLaunchTemplateVersionCommandOutput) => void): void;
800
- createLaunchTemplateVersion(args: CreateLaunchTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLaunchTemplateVersionCommandOutput) => void): void;
801
-
802
- createLocalGatewayRoute(args: CreateLocalGatewayRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocalGatewayRouteCommandOutput>;
803
- createLocalGatewayRoute(args: CreateLocalGatewayRouteCommandInput, cb: (err: any, data?: CreateLocalGatewayRouteCommandOutput) => void): void;
804
- createLocalGatewayRoute(args: CreateLocalGatewayRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocalGatewayRouteCommandOutput) => void): void;
805
-
806
- createLocalGatewayRouteTableVpcAssociation(args: CreateLocalGatewayRouteTableVpcAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocalGatewayRouteTableVpcAssociationCommandOutput>;
807
- createLocalGatewayRouteTableVpcAssociation(args: CreateLocalGatewayRouteTableVpcAssociationCommandInput, cb: (err: any, data?: CreateLocalGatewayRouteTableVpcAssociationCommandOutput) => void): void;
808
- createLocalGatewayRouteTableVpcAssociation(args: CreateLocalGatewayRouteTableVpcAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocalGatewayRouteTableVpcAssociationCommandOutput) => void): void;
809
-
810
- createManagedPrefixList(args: CreateManagedPrefixListCommandInput, options?: __HttpHandlerOptions): Promise<CreateManagedPrefixListCommandOutput>;
811
- createManagedPrefixList(args: CreateManagedPrefixListCommandInput, cb: (err: any, data?: CreateManagedPrefixListCommandOutput) => void): void;
812
- createManagedPrefixList(args: CreateManagedPrefixListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateManagedPrefixListCommandOutput) => void): void;
813
-
814
- createNatGateway(args: CreateNatGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateNatGatewayCommandOutput>;
815
- createNatGateway(args: CreateNatGatewayCommandInput, cb: (err: any, data?: CreateNatGatewayCommandOutput) => void): void;
816
- createNatGateway(args: CreateNatGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNatGatewayCommandOutput) => void): void;
817
-
818
- createNetworkAcl(args: CreateNetworkAclCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkAclCommandOutput>;
819
- createNetworkAcl(args: CreateNetworkAclCommandInput, cb: (err: any, data?: CreateNetworkAclCommandOutput) => void): void;
820
- createNetworkAcl(args: CreateNetworkAclCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkAclCommandOutput) => void): void;
821
-
822
- createNetworkAclEntry(args: CreateNetworkAclEntryCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkAclEntryCommandOutput>;
823
- createNetworkAclEntry(args: CreateNetworkAclEntryCommandInput, cb: (err: any, data?: CreateNetworkAclEntryCommandOutput) => void): void;
824
- createNetworkAclEntry(args: CreateNetworkAclEntryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkAclEntryCommandOutput) => void): void;
825
-
826
- createNetworkInsightsAccessScope(args: CreateNetworkInsightsAccessScopeCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkInsightsAccessScopeCommandOutput>;
827
- createNetworkInsightsAccessScope(args: CreateNetworkInsightsAccessScopeCommandInput, cb: (err: any, data?: CreateNetworkInsightsAccessScopeCommandOutput) => void): void;
828
- createNetworkInsightsAccessScope(args: CreateNetworkInsightsAccessScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkInsightsAccessScopeCommandOutput) => void): void;
829
-
830
- createNetworkInsightsPath(args: CreateNetworkInsightsPathCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkInsightsPathCommandOutput>;
831
- createNetworkInsightsPath(args: CreateNetworkInsightsPathCommandInput, cb: (err: any, data?: CreateNetworkInsightsPathCommandOutput) => void): void;
832
- createNetworkInsightsPath(args: CreateNetworkInsightsPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkInsightsPathCommandOutput) => void): void;
833
-
834
- createNetworkInterface(args: CreateNetworkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkInterfaceCommandOutput>;
835
- createNetworkInterface(args: CreateNetworkInterfaceCommandInput, cb: (err: any, data?: CreateNetworkInterfaceCommandOutput) => void): void;
836
- createNetworkInterface(args: CreateNetworkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkInterfaceCommandOutput) => void): void;
837
-
838
- createNetworkInterfacePermission(args: CreateNetworkInterfacePermissionCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkInterfacePermissionCommandOutput>;
839
- createNetworkInterfacePermission(args: CreateNetworkInterfacePermissionCommandInput, cb: (err: any, data?: CreateNetworkInterfacePermissionCommandOutput) => void): void;
840
- createNetworkInterfacePermission(args: CreateNetworkInterfacePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkInterfacePermissionCommandOutput) => void): void;
841
-
842
- createPlacementGroup(args: CreatePlacementGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreatePlacementGroupCommandOutput>;
843
- createPlacementGroup(args: CreatePlacementGroupCommandInput, cb: (err: any, data?: CreatePlacementGroupCommandOutput) => void): void;
844
- createPlacementGroup(args: CreatePlacementGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePlacementGroupCommandOutput) => void): void;
845
-
846
- createPublicIpv4Pool(args: CreatePublicIpv4PoolCommandInput, options?: __HttpHandlerOptions): Promise<CreatePublicIpv4PoolCommandOutput>;
847
- createPublicIpv4Pool(args: CreatePublicIpv4PoolCommandInput, cb: (err: any, data?: CreatePublicIpv4PoolCommandOutput) => void): void;
848
- createPublicIpv4Pool(args: CreatePublicIpv4PoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePublicIpv4PoolCommandOutput) => void): void;
849
-
850
- createReplaceRootVolumeTask(args: CreateReplaceRootVolumeTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplaceRootVolumeTaskCommandOutput>;
851
- createReplaceRootVolumeTask(args: CreateReplaceRootVolumeTaskCommandInput, cb: (err: any, data?: CreateReplaceRootVolumeTaskCommandOutput) => void): void;
852
- createReplaceRootVolumeTask(args: CreateReplaceRootVolumeTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplaceRootVolumeTaskCommandOutput) => void): void;
853
-
854
- createReservedInstancesListing(args: CreateReservedInstancesListingCommandInput, options?: __HttpHandlerOptions): Promise<CreateReservedInstancesListingCommandOutput>;
855
- createReservedInstancesListing(args: CreateReservedInstancesListingCommandInput, cb: (err: any, data?: CreateReservedInstancesListingCommandOutput) => void): void;
856
- createReservedInstancesListing(args: CreateReservedInstancesListingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReservedInstancesListingCommandOutput) => void): void;
857
-
858
- createRestoreImageTask(args: CreateRestoreImageTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateRestoreImageTaskCommandOutput>;
859
- createRestoreImageTask(args: CreateRestoreImageTaskCommandInput, cb: (err: any, data?: CreateRestoreImageTaskCommandOutput) => void): void;
860
- createRestoreImageTask(args: CreateRestoreImageTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRestoreImageTaskCommandOutput) => void): void;
861
-
862
- createRoute(args: CreateRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteCommandOutput>;
863
- createRoute(args: CreateRouteCommandInput, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
864
- createRoute(args: CreateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
865
-
866
- createRouteTable(args: CreateRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteTableCommandOutput>;
867
- createRouteTable(args: CreateRouteTableCommandInput, cb: (err: any, data?: CreateRouteTableCommandOutput) => void): void;
868
- createRouteTable(args: CreateRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteTableCommandOutput) => void): void;
869
-
870
- createSecurityGroup(args: CreateSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateSecurityGroupCommandOutput>;
871
- createSecurityGroup(args: CreateSecurityGroupCommandInput, cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void): void;
872
- createSecurityGroup(args: CreateSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSecurityGroupCommandOutput) => void): void;
873
-
874
- createSnapshot(args: CreateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCommandOutput>;
875
- createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
876
- createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
877
-
878
- createSnapshots(args: CreateSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotsCommandOutput>;
879
- createSnapshots(args: CreateSnapshotsCommandInput, cb: (err: any, data?: CreateSnapshotsCommandOutput) => void): void;
880
- createSnapshots(args: CreateSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotsCommandOutput) => void): void;
881
-
882
- createSpotDatafeedSubscription(args: CreateSpotDatafeedSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateSpotDatafeedSubscriptionCommandOutput>;
883
- createSpotDatafeedSubscription(args: CreateSpotDatafeedSubscriptionCommandInput, cb: (err: any, data?: CreateSpotDatafeedSubscriptionCommandOutput) => void): void;
884
- createSpotDatafeedSubscription(args: CreateSpotDatafeedSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSpotDatafeedSubscriptionCommandOutput) => void): void;
885
-
886
- createStoreImageTask(args: CreateStoreImageTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateStoreImageTaskCommandOutput>;
887
- createStoreImageTask(args: CreateStoreImageTaskCommandInput, cb: (err: any, data?: CreateStoreImageTaskCommandOutput) => void): void;
888
- createStoreImageTask(args: CreateStoreImageTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStoreImageTaskCommandOutput) => void): void;
889
-
890
- createSubnet(args: CreateSubnetCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubnetCommandOutput>;
891
- createSubnet(args: CreateSubnetCommandInput, cb: (err: any, data?: CreateSubnetCommandOutput) => void): void;
892
- createSubnet(args: CreateSubnetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubnetCommandOutput) => void): void;
893
-
894
- createSubnetCidrReservation(args: CreateSubnetCidrReservationCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubnetCidrReservationCommandOutput>;
895
- createSubnetCidrReservation(args: CreateSubnetCidrReservationCommandInput, cb: (err: any, data?: CreateSubnetCidrReservationCommandOutput) => void): void;
896
- createSubnetCidrReservation(args: CreateSubnetCidrReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubnetCidrReservationCommandOutput) => void): void;
897
-
898
- createTags(args: CreateTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateTagsCommandOutput>;
899
- createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
900
- createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
901
-
902
- createTrafficMirrorFilter(args: CreateTrafficMirrorFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficMirrorFilterCommandOutput>;
903
- createTrafficMirrorFilter(args: CreateTrafficMirrorFilterCommandInput, cb: (err: any, data?: CreateTrafficMirrorFilterCommandOutput) => void): void;
904
- createTrafficMirrorFilter(args: CreateTrafficMirrorFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficMirrorFilterCommandOutput) => void): void;
905
-
906
- createTrafficMirrorFilterRule(args: CreateTrafficMirrorFilterRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficMirrorFilterRuleCommandOutput>;
907
- createTrafficMirrorFilterRule(args: CreateTrafficMirrorFilterRuleCommandInput, cb: (err: any, data?: CreateTrafficMirrorFilterRuleCommandOutput) => void): void;
908
- createTrafficMirrorFilterRule(args: CreateTrafficMirrorFilterRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficMirrorFilterRuleCommandOutput) => void): void;
909
-
910
- createTrafficMirrorSession(args: CreateTrafficMirrorSessionCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficMirrorSessionCommandOutput>;
911
- createTrafficMirrorSession(args: CreateTrafficMirrorSessionCommandInput, cb: (err: any, data?: CreateTrafficMirrorSessionCommandOutput) => void): void;
912
- createTrafficMirrorSession(args: CreateTrafficMirrorSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficMirrorSessionCommandOutput) => void): void;
913
-
914
- createTrafficMirrorTarget(args: CreateTrafficMirrorTargetCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficMirrorTargetCommandOutput>;
915
- createTrafficMirrorTarget(args: CreateTrafficMirrorTargetCommandInput, cb: (err: any, data?: CreateTrafficMirrorTargetCommandOutput) => void): void;
916
- createTrafficMirrorTarget(args: CreateTrafficMirrorTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficMirrorTargetCommandOutput) => void): void;
917
-
918
- createTransitGateway(args: CreateTransitGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayCommandOutput>;
919
- createTransitGateway(args: CreateTransitGatewayCommandInput, cb: (err: any, data?: CreateTransitGatewayCommandOutput) => void): void;
920
- createTransitGateway(args: CreateTransitGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayCommandOutput) => void): void;
921
-
922
- createTransitGatewayConnect(args: CreateTransitGatewayConnectCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayConnectCommandOutput>;
923
- createTransitGatewayConnect(args: CreateTransitGatewayConnectCommandInput, cb: (err: any, data?: CreateTransitGatewayConnectCommandOutput) => void): void;
924
- createTransitGatewayConnect(args: CreateTransitGatewayConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayConnectCommandOutput) => void): void;
925
-
926
- createTransitGatewayConnectPeer(args: CreateTransitGatewayConnectPeerCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayConnectPeerCommandOutput>;
927
- createTransitGatewayConnectPeer(args: CreateTransitGatewayConnectPeerCommandInput, cb: (err: any, data?: CreateTransitGatewayConnectPeerCommandOutput) => void): void;
928
- createTransitGatewayConnectPeer(args: CreateTransitGatewayConnectPeerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayConnectPeerCommandOutput) => void): void;
929
-
930
- createTransitGatewayMulticastDomain(args: CreateTransitGatewayMulticastDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayMulticastDomainCommandOutput>;
931
- createTransitGatewayMulticastDomain(args: CreateTransitGatewayMulticastDomainCommandInput, cb: (err: any, data?: CreateTransitGatewayMulticastDomainCommandOutput) => void): void;
932
- createTransitGatewayMulticastDomain(args: CreateTransitGatewayMulticastDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayMulticastDomainCommandOutput) => void): void;
933
-
934
- createTransitGatewayPeeringAttachment(args: CreateTransitGatewayPeeringAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayPeeringAttachmentCommandOutput>;
935
- createTransitGatewayPeeringAttachment(args: CreateTransitGatewayPeeringAttachmentCommandInput, cb: (err: any, data?: CreateTransitGatewayPeeringAttachmentCommandOutput) => void): void;
936
- createTransitGatewayPeeringAttachment(args: CreateTransitGatewayPeeringAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayPeeringAttachmentCommandOutput) => void): void;
937
-
938
- createTransitGatewayPrefixListReference(args: CreateTransitGatewayPrefixListReferenceCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayPrefixListReferenceCommandOutput>;
939
- createTransitGatewayPrefixListReference(args: CreateTransitGatewayPrefixListReferenceCommandInput, cb: (err: any, data?: CreateTransitGatewayPrefixListReferenceCommandOutput) => void): void;
940
- createTransitGatewayPrefixListReference(args: CreateTransitGatewayPrefixListReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayPrefixListReferenceCommandOutput) => void): void;
941
-
942
- createTransitGatewayRoute(args: CreateTransitGatewayRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayRouteCommandOutput>;
943
- createTransitGatewayRoute(args: CreateTransitGatewayRouteCommandInput, cb: (err: any, data?: CreateTransitGatewayRouteCommandOutput) => void): void;
944
- createTransitGatewayRoute(args: CreateTransitGatewayRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayRouteCommandOutput) => void): void;
945
-
946
- createTransitGatewayRouteTable(args: CreateTransitGatewayRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayRouteTableCommandOutput>;
947
- createTransitGatewayRouteTable(args: CreateTransitGatewayRouteTableCommandInput, cb: (err: any, data?: CreateTransitGatewayRouteTableCommandOutput) => void): void;
948
- createTransitGatewayRouteTable(args: CreateTransitGatewayRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayRouteTableCommandOutput) => void): void;
949
-
950
- createTransitGatewayVpcAttachment(args: CreateTransitGatewayVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransitGatewayVpcAttachmentCommandOutput>;
951
- createTransitGatewayVpcAttachment(args: CreateTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: CreateTransitGatewayVpcAttachmentCommandOutput) => void): void;
952
- createTransitGatewayVpcAttachment(args: CreateTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransitGatewayVpcAttachmentCommandOutput) => void): void;
953
-
954
- createVolume(args: CreateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CreateVolumeCommandOutput>;
955
- createVolume(args: CreateVolumeCommandInput, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
956
- createVolume(args: CreateVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
957
-
958
- createVpc(args: CreateVpcCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcCommandOutput>;
959
- createVpc(args: CreateVpcCommandInput, cb: (err: any, data?: CreateVpcCommandOutput) => void): void;
960
- createVpc(args: CreateVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcCommandOutput) => void): void;
961
-
962
- createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcEndpointCommandOutput>;
963
- createVpcEndpoint(args: CreateVpcEndpointCommandInput, cb: (err: any, data?: CreateVpcEndpointCommandOutput) => void): void;
964
- createVpcEndpoint(args: CreateVpcEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcEndpointCommandOutput) => void): void;
965
-
966
- createVpcEndpointConnectionNotification(args: CreateVpcEndpointConnectionNotificationCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcEndpointConnectionNotificationCommandOutput>;
967
- createVpcEndpointConnectionNotification(args: CreateVpcEndpointConnectionNotificationCommandInput, cb: (err: any, data?: CreateVpcEndpointConnectionNotificationCommandOutput) => void): void;
968
- createVpcEndpointConnectionNotification(args: CreateVpcEndpointConnectionNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcEndpointConnectionNotificationCommandOutput) => void): void;
969
-
970
- createVpcEndpointServiceConfiguration(args: CreateVpcEndpointServiceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcEndpointServiceConfigurationCommandOutput>;
971
- createVpcEndpointServiceConfiguration(args: CreateVpcEndpointServiceConfigurationCommandInput, cb: (err: any, data?: CreateVpcEndpointServiceConfigurationCommandOutput) => void): void;
972
- createVpcEndpointServiceConfiguration(args: CreateVpcEndpointServiceConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcEndpointServiceConfigurationCommandOutput) => void): void;
973
-
974
- createVpcPeeringConnection(args: CreateVpcPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcPeeringConnectionCommandOutput>;
975
- createVpcPeeringConnection(args: CreateVpcPeeringConnectionCommandInput, cb: (err: any, data?: CreateVpcPeeringConnectionCommandOutput) => void): void;
976
- createVpcPeeringConnection(args: CreateVpcPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcPeeringConnectionCommandOutput) => void): void;
977
-
978
- createVpnConnection(args: CreateVpnConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpnConnectionCommandOutput>;
979
- createVpnConnection(args: CreateVpnConnectionCommandInput, cb: (err: any, data?: CreateVpnConnectionCommandOutput) => void): void;
980
- createVpnConnection(args: CreateVpnConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpnConnectionCommandOutput) => void): void;
981
-
982
- createVpnConnectionRoute(args: CreateVpnConnectionRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpnConnectionRouteCommandOutput>;
983
- createVpnConnectionRoute(args: CreateVpnConnectionRouteCommandInput, cb: (err: any, data?: CreateVpnConnectionRouteCommandOutput) => void): void;
984
- createVpnConnectionRoute(args: CreateVpnConnectionRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpnConnectionRouteCommandOutput) => void): void;
985
-
986
- createVpnGateway(args: CreateVpnGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpnGatewayCommandOutput>;
987
- createVpnGateway(args: CreateVpnGatewayCommandInput, cb: (err: any, data?: CreateVpnGatewayCommandOutput) => void): void;
988
- createVpnGateway(args: CreateVpnGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpnGatewayCommandOutput) => void): void;
989
-
990
- deleteCarrierGateway(args: DeleteCarrierGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCarrierGatewayCommandOutput>;
991
- deleteCarrierGateway(args: DeleteCarrierGatewayCommandInput, cb: (err: any, data?: DeleteCarrierGatewayCommandOutput) => void): void;
992
- deleteCarrierGateway(args: DeleteCarrierGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCarrierGatewayCommandOutput) => void): void;
993
-
994
- deleteClientVpnEndpoint(args: DeleteClientVpnEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClientVpnEndpointCommandOutput>;
995
- deleteClientVpnEndpoint(args: DeleteClientVpnEndpointCommandInput, cb: (err: any, data?: DeleteClientVpnEndpointCommandOutput) => void): void;
996
- deleteClientVpnEndpoint(args: DeleteClientVpnEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClientVpnEndpointCommandOutput) => void): void;
997
-
998
- deleteClientVpnRoute(args: DeleteClientVpnRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClientVpnRouteCommandOutput>;
999
- deleteClientVpnRoute(args: DeleteClientVpnRouteCommandInput, cb: (err: any, data?: DeleteClientVpnRouteCommandOutput) => void): void;
1000
- deleteClientVpnRoute(args: DeleteClientVpnRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClientVpnRouteCommandOutput) => void): void;
1001
-
1002
- deleteCustomerGateway(args: DeleteCustomerGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomerGatewayCommandOutput>;
1003
- deleteCustomerGateway(args: DeleteCustomerGatewayCommandInput, cb: (err: any, data?: DeleteCustomerGatewayCommandOutput) => void): void;
1004
- deleteCustomerGateway(args: DeleteCustomerGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomerGatewayCommandOutput) => void): void;
1005
-
1006
- deleteDhcpOptions(args: DeleteDhcpOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDhcpOptionsCommandOutput>;
1007
- deleteDhcpOptions(args: DeleteDhcpOptionsCommandInput, cb: (err: any, data?: DeleteDhcpOptionsCommandOutput) => void): void;
1008
- deleteDhcpOptions(args: DeleteDhcpOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDhcpOptionsCommandOutput) => void): void;
1009
-
1010
- deleteEgressOnlyInternetGateway(args: DeleteEgressOnlyInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEgressOnlyInternetGatewayCommandOutput>;
1011
- deleteEgressOnlyInternetGateway(args: DeleteEgressOnlyInternetGatewayCommandInput, cb: (err: any, data?: DeleteEgressOnlyInternetGatewayCommandOutput) => void): void;
1012
- deleteEgressOnlyInternetGateway(args: DeleteEgressOnlyInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEgressOnlyInternetGatewayCommandOutput) => void): void;
1013
-
1014
- deleteFleets(args: DeleteFleetsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFleetsCommandOutput>;
1015
- deleteFleets(args: DeleteFleetsCommandInput, cb: (err: any, data?: DeleteFleetsCommandOutput) => void): void;
1016
- deleteFleets(args: DeleteFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFleetsCommandOutput) => void): void;
1017
-
1018
- deleteFlowLogs(args: DeleteFlowLogsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowLogsCommandOutput>;
1019
- deleteFlowLogs(args: DeleteFlowLogsCommandInput, cb: (err: any, data?: DeleteFlowLogsCommandOutput) => void): void;
1020
- deleteFlowLogs(args: DeleteFlowLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowLogsCommandOutput) => void): void;
1021
-
1022
- deleteFpgaImage(args: DeleteFpgaImageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFpgaImageCommandOutput>;
1023
- deleteFpgaImage(args: DeleteFpgaImageCommandInput, cb: (err: any, data?: DeleteFpgaImageCommandOutput) => void): void;
1024
- deleteFpgaImage(args: DeleteFpgaImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFpgaImageCommandOutput) => void): void;
1025
-
1026
- deleteInstanceEventWindow(args: DeleteInstanceEventWindowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInstanceEventWindowCommandOutput>;
1027
- deleteInstanceEventWindow(args: DeleteInstanceEventWindowCommandInput, cb: (err: any, data?: DeleteInstanceEventWindowCommandOutput) => void): void;
1028
- deleteInstanceEventWindow(args: DeleteInstanceEventWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInstanceEventWindowCommandOutput) => void): void;
1029
-
1030
- deleteInternetGateway(args: DeleteInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInternetGatewayCommandOutput>;
1031
- deleteInternetGateway(args: DeleteInternetGatewayCommandInput, cb: (err: any, data?: DeleteInternetGatewayCommandOutput) => void): void;
1032
- deleteInternetGateway(args: DeleteInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInternetGatewayCommandOutput) => void): void;
1033
-
1034
- deleteIpam(args: DeleteIpamCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIpamCommandOutput>;
1035
- deleteIpam(args: DeleteIpamCommandInput, cb: (err: any, data?: DeleteIpamCommandOutput) => void): void;
1036
- deleteIpam(args: DeleteIpamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIpamCommandOutput) => void): void;
1037
-
1038
- deleteIpamPool(args: DeleteIpamPoolCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIpamPoolCommandOutput>;
1039
- deleteIpamPool(args: DeleteIpamPoolCommandInput, cb: (err: any, data?: DeleteIpamPoolCommandOutput) => void): void;
1040
- deleteIpamPool(args: DeleteIpamPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIpamPoolCommandOutput) => void): void;
1041
-
1042
- deleteIpamScope(args: DeleteIpamScopeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIpamScopeCommandOutput>;
1043
- deleteIpamScope(args: DeleteIpamScopeCommandInput, cb: (err: any, data?: DeleteIpamScopeCommandOutput) => void): void;
1044
- deleteIpamScope(args: DeleteIpamScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIpamScopeCommandOutput) => void): void;
1045
-
1046
- deleteKeyPair(args: DeleteKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKeyPairCommandOutput>;
1047
- deleteKeyPair(args: DeleteKeyPairCommandInput, cb: (err: any, data?: DeleteKeyPairCommandOutput) => void): void;
1048
- deleteKeyPair(args: DeleteKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKeyPairCommandOutput) => void): void;
1049
-
1050
- deleteLaunchTemplate(args: DeleteLaunchTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLaunchTemplateCommandOutput>;
1051
- deleteLaunchTemplate(args: DeleteLaunchTemplateCommandInput, cb: (err: any, data?: DeleteLaunchTemplateCommandOutput) => void): void;
1052
- deleteLaunchTemplate(args: DeleteLaunchTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLaunchTemplateCommandOutput) => void): void;
1053
-
1054
- deleteLaunchTemplateVersions(args: DeleteLaunchTemplateVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLaunchTemplateVersionsCommandOutput>;
1055
- deleteLaunchTemplateVersions(args: DeleteLaunchTemplateVersionsCommandInput, cb: (err: any, data?: DeleteLaunchTemplateVersionsCommandOutput) => void): void;
1056
- deleteLaunchTemplateVersions(args: DeleteLaunchTemplateVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLaunchTemplateVersionsCommandOutput) => void): void;
1057
-
1058
- deleteLocalGatewayRoute(args: DeleteLocalGatewayRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLocalGatewayRouteCommandOutput>;
1059
- deleteLocalGatewayRoute(args: DeleteLocalGatewayRouteCommandInput, cb: (err: any, data?: DeleteLocalGatewayRouteCommandOutput) => void): void;
1060
- deleteLocalGatewayRoute(args: DeleteLocalGatewayRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLocalGatewayRouteCommandOutput) => void): void;
1061
-
1062
- deleteLocalGatewayRouteTableVpcAssociation(args: DeleteLocalGatewayRouteTableVpcAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLocalGatewayRouteTableVpcAssociationCommandOutput>;
1063
- deleteLocalGatewayRouteTableVpcAssociation(args: DeleteLocalGatewayRouteTableVpcAssociationCommandInput, cb: (err: any, data?: DeleteLocalGatewayRouteTableVpcAssociationCommandOutput) => void): void;
1064
- deleteLocalGatewayRouteTableVpcAssociation(args: DeleteLocalGatewayRouteTableVpcAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLocalGatewayRouteTableVpcAssociationCommandOutput) => void): void;
1065
-
1066
- deleteManagedPrefixList(args: DeleteManagedPrefixListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteManagedPrefixListCommandOutput>;
1067
- deleteManagedPrefixList(args: DeleteManagedPrefixListCommandInput, cb: (err: any, data?: DeleteManagedPrefixListCommandOutput) => void): void;
1068
- deleteManagedPrefixList(args: DeleteManagedPrefixListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteManagedPrefixListCommandOutput) => void): void;
1069
-
1070
- deleteNatGateway(args: DeleteNatGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNatGatewayCommandOutput>;
1071
- deleteNatGateway(args: DeleteNatGatewayCommandInput, cb: (err: any, data?: DeleteNatGatewayCommandOutput) => void): void;
1072
- deleteNatGateway(args: DeleteNatGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNatGatewayCommandOutput) => void): void;
1073
-
1074
- deleteNetworkAcl(args: DeleteNetworkAclCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkAclCommandOutput>;
1075
- deleteNetworkAcl(args: DeleteNetworkAclCommandInput, cb: (err: any, data?: DeleteNetworkAclCommandOutput) => void): void;
1076
- deleteNetworkAcl(args: DeleteNetworkAclCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkAclCommandOutput) => void): void;
1077
-
1078
- deleteNetworkAclEntry(args: DeleteNetworkAclEntryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkAclEntryCommandOutput>;
1079
- deleteNetworkAclEntry(args: DeleteNetworkAclEntryCommandInput, cb: (err: any, data?: DeleteNetworkAclEntryCommandOutput) => void): void;
1080
- deleteNetworkAclEntry(args: DeleteNetworkAclEntryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkAclEntryCommandOutput) => void): void;
1081
-
1082
- deleteNetworkInsightsAccessScope(args: DeleteNetworkInsightsAccessScopeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInsightsAccessScopeCommandOutput>;
1083
- deleteNetworkInsightsAccessScope(args: DeleteNetworkInsightsAccessScopeCommandInput, cb: (err: any, data?: DeleteNetworkInsightsAccessScopeCommandOutput) => void): void;
1084
- deleteNetworkInsightsAccessScope(args: DeleteNetworkInsightsAccessScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInsightsAccessScopeCommandOutput) => void): void;
1085
-
1086
- deleteNetworkInsightsAccessScopeAnalysis(args: DeleteNetworkInsightsAccessScopeAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInsightsAccessScopeAnalysisCommandOutput>;
1087
- deleteNetworkInsightsAccessScopeAnalysis(args: DeleteNetworkInsightsAccessScopeAnalysisCommandInput, cb: (err: any, data?: DeleteNetworkInsightsAccessScopeAnalysisCommandOutput) => void): void;
1088
- deleteNetworkInsightsAccessScopeAnalysis(args: DeleteNetworkInsightsAccessScopeAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInsightsAccessScopeAnalysisCommandOutput) => void): void;
1089
-
1090
- deleteNetworkInsightsAnalysis(args: DeleteNetworkInsightsAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInsightsAnalysisCommandOutput>;
1091
- deleteNetworkInsightsAnalysis(args: DeleteNetworkInsightsAnalysisCommandInput, cb: (err: any, data?: DeleteNetworkInsightsAnalysisCommandOutput) => void): void;
1092
- deleteNetworkInsightsAnalysis(args: DeleteNetworkInsightsAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInsightsAnalysisCommandOutput) => void): void;
1093
-
1094
- deleteNetworkInsightsPath(args: DeleteNetworkInsightsPathCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInsightsPathCommandOutput>;
1095
- deleteNetworkInsightsPath(args: DeleteNetworkInsightsPathCommandInput, cb: (err: any, data?: DeleteNetworkInsightsPathCommandOutput) => void): void;
1096
- deleteNetworkInsightsPath(args: DeleteNetworkInsightsPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInsightsPathCommandOutput) => void): void;
1097
-
1098
- deleteNetworkInterface(args: DeleteNetworkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInterfaceCommandOutput>;
1099
- deleteNetworkInterface(args: DeleteNetworkInterfaceCommandInput, cb: (err: any, data?: DeleteNetworkInterfaceCommandOutput) => void): void;
1100
- deleteNetworkInterface(args: DeleteNetworkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInterfaceCommandOutput) => void): void;
1101
-
1102
- deleteNetworkInterfacePermission(args: DeleteNetworkInterfacePermissionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkInterfacePermissionCommandOutput>;
1103
- deleteNetworkInterfacePermission(args: DeleteNetworkInterfacePermissionCommandInput, cb: (err: any, data?: DeleteNetworkInterfacePermissionCommandOutput) => void): void;
1104
- deleteNetworkInterfacePermission(args: DeleteNetworkInterfacePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkInterfacePermissionCommandOutput) => void): void;
1105
-
1106
- deletePlacementGroup(args: DeletePlacementGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeletePlacementGroupCommandOutput>;
1107
- deletePlacementGroup(args: DeletePlacementGroupCommandInput, cb: (err: any, data?: DeletePlacementGroupCommandOutput) => void): void;
1108
- deletePlacementGroup(args: DeletePlacementGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePlacementGroupCommandOutput) => void): void;
1109
-
1110
- deletePublicIpv4Pool(args: DeletePublicIpv4PoolCommandInput, options?: __HttpHandlerOptions): Promise<DeletePublicIpv4PoolCommandOutput>;
1111
- deletePublicIpv4Pool(args: DeletePublicIpv4PoolCommandInput, cb: (err: any, data?: DeletePublicIpv4PoolCommandOutput) => void): void;
1112
- deletePublicIpv4Pool(args: DeletePublicIpv4PoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePublicIpv4PoolCommandOutput) => void): void;
1113
-
1114
- deleteQueuedReservedInstances(args: DeleteQueuedReservedInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueuedReservedInstancesCommandOutput>;
1115
- deleteQueuedReservedInstances(args: DeleteQueuedReservedInstancesCommandInput, cb: (err: any, data?: DeleteQueuedReservedInstancesCommandOutput) => void): void;
1116
- deleteQueuedReservedInstances(args: DeleteQueuedReservedInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueuedReservedInstancesCommandOutput) => void): void;
1117
-
1118
- deleteRoute(args: DeleteRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteCommandOutput>;
1119
- deleteRoute(args: DeleteRouteCommandInput, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
1120
- deleteRoute(args: DeleteRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
1121
-
1122
- deleteRouteTable(args: DeleteRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteTableCommandOutput>;
1123
- deleteRouteTable(args: DeleteRouteTableCommandInput, cb: (err: any, data?: DeleteRouteTableCommandOutput) => void): void;
1124
- deleteRouteTable(args: DeleteRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteTableCommandOutput) => void): void;
1125
-
1126
- deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSecurityGroupCommandOutput>;
1127
- deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void): void;
1128
- deleteSecurityGroup(args: DeleteSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSecurityGroupCommandOutput) => void): void;
1129
-
1130
- deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
1131
- deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
1132
- deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
1133
-
1134
- deleteSpotDatafeedSubscription(args: DeleteSpotDatafeedSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSpotDatafeedSubscriptionCommandOutput>;
1135
- deleteSpotDatafeedSubscription(args: DeleteSpotDatafeedSubscriptionCommandInput, cb: (err: any, data?: DeleteSpotDatafeedSubscriptionCommandOutput) => void): void;
1136
- deleteSpotDatafeedSubscription(args: DeleteSpotDatafeedSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSpotDatafeedSubscriptionCommandOutput) => void): void;
1137
-
1138
- deleteSubnet(args: DeleteSubnetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSubnetCommandOutput>;
1139
- deleteSubnet(args: DeleteSubnetCommandInput, cb: (err: any, data?: DeleteSubnetCommandOutput) => void): void;
1140
- deleteSubnet(args: DeleteSubnetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSubnetCommandOutput) => void): void;
1141
-
1142
- deleteSubnetCidrReservation(args: DeleteSubnetCidrReservationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSubnetCidrReservationCommandOutput>;
1143
- deleteSubnetCidrReservation(args: DeleteSubnetCidrReservationCommandInput, cb: (err: any, data?: DeleteSubnetCidrReservationCommandOutput) => void): void;
1144
- deleteSubnetCidrReservation(args: DeleteSubnetCidrReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSubnetCidrReservationCommandOutput) => void): void;
1145
-
1146
- deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
1147
- deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
1148
- deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
1149
-
1150
- deleteTrafficMirrorFilter(args: DeleteTrafficMirrorFilterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficMirrorFilterCommandOutput>;
1151
- deleteTrafficMirrorFilter(args: DeleteTrafficMirrorFilterCommandInput, cb: (err: any, data?: DeleteTrafficMirrorFilterCommandOutput) => void): void;
1152
- deleteTrafficMirrorFilter(args: DeleteTrafficMirrorFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficMirrorFilterCommandOutput) => void): void;
1153
-
1154
- deleteTrafficMirrorFilterRule(args: DeleteTrafficMirrorFilterRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficMirrorFilterRuleCommandOutput>;
1155
- deleteTrafficMirrorFilterRule(args: DeleteTrafficMirrorFilterRuleCommandInput, cb: (err: any, data?: DeleteTrafficMirrorFilterRuleCommandOutput) => void): void;
1156
- deleteTrafficMirrorFilterRule(args: DeleteTrafficMirrorFilterRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficMirrorFilterRuleCommandOutput) => void): void;
1157
-
1158
- deleteTrafficMirrorSession(args: DeleteTrafficMirrorSessionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficMirrorSessionCommandOutput>;
1159
- deleteTrafficMirrorSession(args: DeleteTrafficMirrorSessionCommandInput, cb: (err: any, data?: DeleteTrafficMirrorSessionCommandOutput) => void): void;
1160
- deleteTrafficMirrorSession(args: DeleteTrafficMirrorSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficMirrorSessionCommandOutput) => void): void;
1161
-
1162
- deleteTrafficMirrorTarget(args: DeleteTrafficMirrorTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficMirrorTargetCommandOutput>;
1163
- deleteTrafficMirrorTarget(args: DeleteTrafficMirrorTargetCommandInput, cb: (err: any, data?: DeleteTrafficMirrorTargetCommandOutput) => void): void;
1164
- deleteTrafficMirrorTarget(args: DeleteTrafficMirrorTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficMirrorTargetCommandOutput) => void): void;
1165
-
1166
- deleteTransitGateway(args: DeleteTransitGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayCommandOutput>;
1167
- deleteTransitGateway(args: DeleteTransitGatewayCommandInput, cb: (err: any, data?: DeleteTransitGatewayCommandOutput) => void): void;
1168
- deleteTransitGateway(args: DeleteTransitGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayCommandOutput) => void): void;
1169
-
1170
- deleteTransitGatewayConnect(args: DeleteTransitGatewayConnectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayConnectCommandOutput>;
1171
- deleteTransitGatewayConnect(args: DeleteTransitGatewayConnectCommandInput, cb: (err: any, data?: DeleteTransitGatewayConnectCommandOutput) => void): void;
1172
- deleteTransitGatewayConnect(args: DeleteTransitGatewayConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayConnectCommandOutput) => void): void;
1173
-
1174
- deleteTransitGatewayConnectPeer(args: DeleteTransitGatewayConnectPeerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayConnectPeerCommandOutput>;
1175
- deleteTransitGatewayConnectPeer(args: DeleteTransitGatewayConnectPeerCommandInput, cb: (err: any, data?: DeleteTransitGatewayConnectPeerCommandOutput) => void): void;
1176
- deleteTransitGatewayConnectPeer(args: DeleteTransitGatewayConnectPeerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayConnectPeerCommandOutput) => void): void;
1177
-
1178
- deleteTransitGatewayMulticastDomain(args: DeleteTransitGatewayMulticastDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayMulticastDomainCommandOutput>;
1179
- deleteTransitGatewayMulticastDomain(args: DeleteTransitGatewayMulticastDomainCommandInput, cb: (err: any, data?: DeleteTransitGatewayMulticastDomainCommandOutput) => void): void;
1180
- deleteTransitGatewayMulticastDomain(args: DeleteTransitGatewayMulticastDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayMulticastDomainCommandOutput) => void): void;
1181
-
1182
- deleteTransitGatewayPeeringAttachment(args: DeleteTransitGatewayPeeringAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayPeeringAttachmentCommandOutput>;
1183
- deleteTransitGatewayPeeringAttachment(args: DeleteTransitGatewayPeeringAttachmentCommandInput, cb: (err: any, data?: DeleteTransitGatewayPeeringAttachmentCommandOutput) => void): void;
1184
- deleteTransitGatewayPeeringAttachment(args: DeleteTransitGatewayPeeringAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayPeeringAttachmentCommandOutput) => void): void;
1185
-
1186
- deleteTransitGatewayPrefixListReference(args: DeleteTransitGatewayPrefixListReferenceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayPrefixListReferenceCommandOutput>;
1187
- deleteTransitGatewayPrefixListReference(args: DeleteTransitGatewayPrefixListReferenceCommandInput, cb: (err: any, data?: DeleteTransitGatewayPrefixListReferenceCommandOutput) => void): void;
1188
- deleteTransitGatewayPrefixListReference(args: DeleteTransitGatewayPrefixListReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayPrefixListReferenceCommandOutput) => void): void;
1189
-
1190
- deleteTransitGatewayRoute(args: DeleteTransitGatewayRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayRouteCommandOutput>;
1191
- deleteTransitGatewayRoute(args: DeleteTransitGatewayRouteCommandInput, cb: (err: any, data?: DeleteTransitGatewayRouteCommandOutput) => void): void;
1192
- deleteTransitGatewayRoute(args: DeleteTransitGatewayRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayRouteCommandOutput) => void): void;
1193
-
1194
- deleteTransitGatewayRouteTable(args: DeleteTransitGatewayRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayRouteTableCommandOutput>;
1195
- deleteTransitGatewayRouteTable(args: DeleteTransitGatewayRouteTableCommandInput, cb: (err: any, data?: DeleteTransitGatewayRouteTableCommandOutput) => void): void;
1196
- deleteTransitGatewayRouteTable(args: DeleteTransitGatewayRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayRouteTableCommandOutput) => void): void;
1197
-
1198
- deleteTransitGatewayVpcAttachment(args: DeleteTransitGatewayVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayVpcAttachmentCommandOutput>;
1199
- deleteTransitGatewayVpcAttachment(args: DeleteTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: DeleteTransitGatewayVpcAttachmentCommandOutput) => void): void;
1200
- deleteTransitGatewayVpcAttachment(args: DeleteTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayVpcAttachmentCommandOutput) => void): void;
1201
-
1202
- deleteVolume(args: DeleteVolumeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVolumeCommandOutput>;
1203
- deleteVolume(args: DeleteVolumeCommandInput, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
1204
- deleteVolume(args: DeleteVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
1205
-
1206
- deleteVpc(args: DeleteVpcCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcCommandOutput>;
1207
- deleteVpc(args: DeleteVpcCommandInput, cb: (err: any, data?: DeleteVpcCommandOutput) => void): void;
1208
- deleteVpc(args: DeleteVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcCommandOutput) => void): void;
1209
-
1210
- deleteVpcEndpointConnectionNotifications(args: DeleteVpcEndpointConnectionNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcEndpointConnectionNotificationsCommandOutput>;
1211
- deleteVpcEndpointConnectionNotifications(args: DeleteVpcEndpointConnectionNotificationsCommandInput, cb: (err: any, data?: DeleteVpcEndpointConnectionNotificationsCommandOutput) => void): void;
1212
- deleteVpcEndpointConnectionNotifications(args: DeleteVpcEndpointConnectionNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcEndpointConnectionNotificationsCommandOutput) => void): void;
1213
-
1214
- deleteVpcEndpoints(args: DeleteVpcEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcEndpointsCommandOutput>;
1215
- deleteVpcEndpoints(args: DeleteVpcEndpointsCommandInput, cb: (err: any, data?: DeleteVpcEndpointsCommandOutput) => void): void;
1216
- deleteVpcEndpoints(args: DeleteVpcEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcEndpointsCommandOutput) => void): void;
1217
-
1218
- deleteVpcEndpointServiceConfigurations(args: DeleteVpcEndpointServiceConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcEndpointServiceConfigurationsCommandOutput>;
1219
- deleteVpcEndpointServiceConfigurations(args: DeleteVpcEndpointServiceConfigurationsCommandInput, cb: (err: any, data?: DeleteVpcEndpointServiceConfigurationsCommandOutput) => void): void;
1220
- deleteVpcEndpointServiceConfigurations(args: DeleteVpcEndpointServiceConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcEndpointServiceConfigurationsCommandOutput) => void): void;
1221
-
1222
- deleteVpcPeeringConnection(args: DeleteVpcPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcPeeringConnectionCommandOutput>;
1223
- deleteVpcPeeringConnection(args: DeleteVpcPeeringConnectionCommandInput, cb: (err: any, data?: DeleteVpcPeeringConnectionCommandOutput) => void): void;
1224
- deleteVpcPeeringConnection(args: DeleteVpcPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcPeeringConnectionCommandOutput) => void): void;
1225
-
1226
- deleteVpnConnection(args: DeleteVpnConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpnConnectionCommandOutput>;
1227
- deleteVpnConnection(args: DeleteVpnConnectionCommandInput, cb: (err: any, data?: DeleteVpnConnectionCommandOutput) => void): void;
1228
- deleteVpnConnection(args: DeleteVpnConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpnConnectionCommandOutput) => void): void;
1229
-
1230
- deleteVpnConnectionRoute(args: DeleteVpnConnectionRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpnConnectionRouteCommandOutput>;
1231
- deleteVpnConnectionRoute(args: DeleteVpnConnectionRouteCommandInput, cb: (err: any, data?: DeleteVpnConnectionRouteCommandOutput) => void): void;
1232
- deleteVpnConnectionRoute(args: DeleteVpnConnectionRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpnConnectionRouteCommandOutput) => void): void;
1233
-
1234
- deleteVpnGateway(args: DeleteVpnGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpnGatewayCommandOutput>;
1235
- deleteVpnGateway(args: DeleteVpnGatewayCommandInput, cb: (err: any, data?: DeleteVpnGatewayCommandOutput) => void): void;
1236
- deleteVpnGateway(args: DeleteVpnGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpnGatewayCommandOutput) => void): void;
1237
-
1238
- deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<DeprovisionByoipCidrCommandOutput>;
1239
- deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, cb: (err: any, data?: DeprovisionByoipCidrCommandOutput) => void): void;
1240
- deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprovisionByoipCidrCommandOutput) => void): void;
1241
-
1242
- deprovisionIpamPoolCidr(args: DeprovisionIpamPoolCidrCommandInput, options?: __HttpHandlerOptions): Promise<DeprovisionIpamPoolCidrCommandOutput>;
1243
- deprovisionIpamPoolCidr(args: DeprovisionIpamPoolCidrCommandInput, cb: (err: any, data?: DeprovisionIpamPoolCidrCommandOutput) => void): void;
1244
- deprovisionIpamPoolCidr(args: DeprovisionIpamPoolCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprovisionIpamPoolCidrCommandOutput) => void): void;
1245
-
1246
- deprovisionPublicIpv4PoolCidr(args: DeprovisionPublicIpv4PoolCidrCommandInput, options?: __HttpHandlerOptions): Promise<DeprovisionPublicIpv4PoolCidrCommandOutput>;
1247
- deprovisionPublicIpv4PoolCidr(args: DeprovisionPublicIpv4PoolCidrCommandInput, cb: (err: any, data?: DeprovisionPublicIpv4PoolCidrCommandOutput) => void): void;
1248
- deprovisionPublicIpv4PoolCidr(args: DeprovisionPublicIpv4PoolCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprovisionPublicIpv4PoolCidrCommandOutput) => void): void;
1249
-
1250
- deregisterImage(args: DeregisterImageCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterImageCommandOutput>;
1251
- deregisterImage(args: DeregisterImageCommandInput, cb: (err: any, data?: DeregisterImageCommandOutput) => void): void;
1252
- deregisterImage(args: DeregisterImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterImageCommandOutput) => void): void;
1253
-
1254
- deregisterInstanceEventNotificationAttributes(args: DeregisterInstanceEventNotificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterInstanceEventNotificationAttributesCommandOutput>;
1255
- deregisterInstanceEventNotificationAttributes(args: DeregisterInstanceEventNotificationAttributesCommandInput, cb: (err: any, data?: DeregisterInstanceEventNotificationAttributesCommandOutput) => void): void;
1256
- deregisterInstanceEventNotificationAttributes(args: DeregisterInstanceEventNotificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterInstanceEventNotificationAttributesCommandOutput) => void): void;
1257
-
1258
- deregisterTransitGatewayMulticastGroupMembers(args: DeregisterTransitGatewayMulticastGroupMembersCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterTransitGatewayMulticastGroupMembersCommandOutput>;
1259
- deregisterTransitGatewayMulticastGroupMembers(args: DeregisterTransitGatewayMulticastGroupMembersCommandInput, cb: (err: any, data?: DeregisterTransitGatewayMulticastGroupMembersCommandOutput) => void): void;
1260
- deregisterTransitGatewayMulticastGroupMembers(args: DeregisterTransitGatewayMulticastGroupMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTransitGatewayMulticastGroupMembersCommandOutput) => void): void;
1261
-
1262
- deregisterTransitGatewayMulticastGroupSources(args: DeregisterTransitGatewayMulticastGroupSourcesCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterTransitGatewayMulticastGroupSourcesCommandOutput>;
1263
- deregisterTransitGatewayMulticastGroupSources(args: DeregisterTransitGatewayMulticastGroupSourcesCommandInput, cb: (err: any, data?: DeregisterTransitGatewayMulticastGroupSourcesCommandOutput) => void): void;
1264
- deregisterTransitGatewayMulticastGroupSources(args: DeregisterTransitGatewayMulticastGroupSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTransitGatewayMulticastGroupSourcesCommandOutput) => void): void;
1265
-
1266
- describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountAttributesCommandOutput>;
1267
- describeAccountAttributes(args: DescribeAccountAttributesCommandInput, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
1268
- describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
1269
-
1270
- describeAddresses(args: DescribeAddressesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddressesCommandOutput>;
1271
- describeAddresses(args: DescribeAddressesCommandInput, cb: (err: any, data?: DescribeAddressesCommandOutput) => void): void;
1272
- describeAddresses(args: DescribeAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddressesCommandOutput) => void): void;
1273
-
1274
- describeAddressesAttribute(args: DescribeAddressesAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddressesAttributeCommandOutput>;
1275
- describeAddressesAttribute(args: DescribeAddressesAttributeCommandInput, cb: (err: any, data?: DescribeAddressesAttributeCommandOutput) => void): void;
1276
- describeAddressesAttribute(args: DescribeAddressesAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddressesAttributeCommandOutput) => void): void;
1277
-
1278
- describeAggregateIdFormat(args: DescribeAggregateIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAggregateIdFormatCommandOutput>;
1279
- describeAggregateIdFormat(args: DescribeAggregateIdFormatCommandInput, cb: (err: any, data?: DescribeAggregateIdFormatCommandOutput) => void): void;
1280
- describeAggregateIdFormat(args: DescribeAggregateIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAggregateIdFormatCommandOutput) => void): void;
1281
-
1282
- describeAvailabilityZones(args: DescribeAvailabilityZonesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAvailabilityZonesCommandOutput>;
1283
- describeAvailabilityZones(args: DescribeAvailabilityZonesCommandInput, cb: (err: any, data?: DescribeAvailabilityZonesCommandOutput) => void): void;
1284
- describeAvailabilityZones(args: DescribeAvailabilityZonesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAvailabilityZonesCommandOutput) => void): void;
1285
-
1286
- describeBundleTasks(args: DescribeBundleTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBundleTasksCommandOutput>;
1287
- describeBundleTasks(args: DescribeBundleTasksCommandInput, cb: (err: any, data?: DescribeBundleTasksCommandOutput) => void): void;
1288
- describeBundleTasks(args: DescribeBundleTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBundleTasksCommandOutput) => void): void;
1289
-
1290
- describeByoipCidrs(args: DescribeByoipCidrsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeByoipCidrsCommandOutput>;
1291
- describeByoipCidrs(args: DescribeByoipCidrsCommandInput, cb: (err: any, data?: DescribeByoipCidrsCommandOutput) => void): void;
1292
- describeByoipCidrs(args: DescribeByoipCidrsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeByoipCidrsCommandOutput) => void): void;
1293
-
1294
- describeCapacityReservationFleets(args: DescribeCapacityReservationFleetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCapacityReservationFleetsCommandOutput>;
1295
- describeCapacityReservationFleets(args: DescribeCapacityReservationFleetsCommandInput, cb: (err: any, data?: DescribeCapacityReservationFleetsCommandOutput) => void): void;
1296
- describeCapacityReservationFleets(args: DescribeCapacityReservationFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCapacityReservationFleetsCommandOutput) => void): void;
1297
-
1298
- describeCapacityReservations(args: DescribeCapacityReservationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCapacityReservationsCommandOutput>;
1299
- describeCapacityReservations(args: DescribeCapacityReservationsCommandInput, cb: (err: any, data?: DescribeCapacityReservationsCommandOutput) => void): void;
1300
- describeCapacityReservations(args: DescribeCapacityReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCapacityReservationsCommandOutput) => void): void;
1301
-
1302
- describeCarrierGateways(args: DescribeCarrierGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCarrierGatewaysCommandOutput>;
1303
- describeCarrierGateways(args: DescribeCarrierGatewaysCommandInput, cb: (err: any, data?: DescribeCarrierGatewaysCommandOutput) => void): void;
1304
- describeCarrierGateways(args: DescribeCarrierGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCarrierGatewaysCommandOutput) => void): void;
1305
-
1306
- describeClassicLinkInstances(args: DescribeClassicLinkInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClassicLinkInstancesCommandOutput>;
1307
- describeClassicLinkInstances(args: DescribeClassicLinkInstancesCommandInput, cb: (err: any, data?: DescribeClassicLinkInstancesCommandOutput) => void): void;
1308
- describeClassicLinkInstances(args: DescribeClassicLinkInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClassicLinkInstancesCommandOutput) => void): void;
1309
-
1310
- describeClientVpnAuthorizationRules(args: DescribeClientVpnAuthorizationRulesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientVpnAuthorizationRulesCommandOutput>;
1311
- describeClientVpnAuthorizationRules(args: DescribeClientVpnAuthorizationRulesCommandInput, cb: (err: any, data?: DescribeClientVpnAuthorizationRulesCommandOutput) => void): void;
1312
- describeClientVpnAuthorizationRules(args: DescribeClientVpnAuthorizationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientVpnAuthorizationRulesCommandOutput) => void): void;
1313
-
1314
- describeClientVpnConnections(args: DescribeClientVpnConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientVpnConnectionsCommandOutput>;
1315
- describeClientVpnConnections(args: DescribeClientVpnConnectionsCommandInput, cb: (err: any, data?: DescribeClientVpnConnectionsCommandOutput) => void): void;
1316
- describeClientVpnConnections(args: DescribeClientVpnConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientVpnConnectionsCommandOutput) => void): void;
1317
-
1318
- describeClientVpnEndpoints(args: DescribeClientVpnEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientVpnEndpointsCommandOutput>;
1319
- describeClientVpnEndpoints(args: DescribeClientVpnEndpointsCommandInput, cb: (err: any, data?: DescribeClientVpnEndpointsCommandOutput) => void): void;
1320
- describeClientVpnEndpoints(args: DescribeClientVpnEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientVpnEndpointsCommandOutput) => void): void;
1321
-
1322
- describeClientVpnRoutes(args: DescribeClientVpnRoutesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientVpnRoutesCommandOutput>;
1323
- describeClientVpnRoutes(args: DescribeClientVpnRoutesCommandInput, cb: (err: any, data?: DescribeClientVpnRoutesCommandOutput) => void): void;
1324
- describeClientVpnRoutes(args: DescribeClientVpnRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientVpnRoutesCommandOutput) => void): void;
1325
-
1326
- describeClientVpnTargetNetworks(args: DescribeClientVpnTargetNetworksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientVpnTargetNetworksCommandOutput>;
1327
- describeClientVpnTargetNetworks(args: DescribeClientVpnTargetNetworksCommandInput, cb: (err: any, data?: DescribeClientVpnTargetNetworksCommandOutput) => void): void;
1328
- describeClientVpnTargetNetworks(args: DescribeClientVpnTargetNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientVpnTargetNetworksCommandOutput) => void): void;
1329
-
1330
- describeCoipPools(args: DescribeCoipPoolsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCoipPoolsCommandOutput>;
1331
- describeCoipPools(args: DescribeCoipPoolsCommandInput, cb: (err: any, data?: DescribeCoipPoolsCommandOutput) => void): void;
1332
- describeCoipPools(args: DescribeCoipPoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCoipPoolsCommandOutput) => void): void;
1333
-
1334
- describeConversionTasks(args: DescribeConversionTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConversionTasksCommandOutput>;
1335
- describeConversionTasks(args: DescribeConversionTasksCommandInput, cb: (err: any, data?: DescribeConversionTasksCommandOutput) => void): void;
1336
- describeConversionTasks(args: DescribeConversionTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConversionTasksCommandOutput) => void): void;
1337
-
1338
- describeCustomerGateways(args: DescribeCustomerGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomerGatewaysCommandOutput>;
1339
- describeCustomerGateways(args: DescribeCustomerGatewaysCommandInput, cb: (err: any, data?: DescribeCustomerGatewaysCommandOutput) => void): void;
1340
- describeCustomerGateways(args: DescribeCustomerGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomerGatewaysCommandOutput) => void): void;
1341
-
1342
- describeDhcpOptions(args: DescribeDhcpOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDhcpOptionsCommandOutput>;
1343
- describeDhcpOptions(args: DescribeDhcpOptionsCommandInput, cb: (err: any, data?: DescribeDhcpOptionsCommandOutput) => void): void;
1344
- describeDhcpOptions(args: DescribeDhcpOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDhcpOptionsCommandOutput) => void): void;
1345
-
1346
- describeEgressOnlyInternetGateways(args: DescribeEgressOnlyInternetGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEgressOnlyInternetGatewaysCommandOutput>;
1347
- describeEgressOnlyInternetGateways(args: DescribeEgressOnlyInternetGatewaysCommandInput, cb: (err: any, data?: DescribeEgressOnlyInternetGatewaysCommandOutput) => void): void;
1348
- describeEgressOnlyInternetGateways(args: DescribeEgressOnlyInternetGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEgressOnlyInternetGatewaysCommandOutput) => void): void;
1349
-
1350
- describeElasticGpus(args: DescribeElasticGpusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeElasticGpusCommandOutput>;
1351
- describeElasticGpus(args: DescribeElasticGpusCommandInput, cb: (err: any, data?: DescribeElasticGpusCommandOutput) => void): void;
1352
- describeElasticGpus(args: DescribeElasticGpusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeElasticGpusCommandOutput) => void): void;
1353
-
1354
- describeExportImageTasks(args: DescribeExportImageTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExportImageTasksCommandOutput>;
1355
- describeExportImageTasks(args: DescribeExportImageTasksCommandInput, cb: (err: any, data?: DescribeExportImageTasksCommandOutput) => void): void;
1356
- describeExportImageTasks(args: DescribeExportImageTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportImageTasksCommandOutput) => void): void;
1357
-
1358
- describeExportTasks(args: DescribeExportTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExportTasksCommandOutput>;
1359
- describeExportTasks(args: DescribeExportTasksCommandInput, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
1360
- describeExportTasks(args: DescribeExportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
1361
-
1362
- describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFastSnapshotRestoresCommandOutput>;
1363
- describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, cb: (err: any, data?: DescribeFastSnapshotRestoresCommandOutput) => void): void;
1364
- describeFastSnapshotRestores(args: DescribeFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFastSnapshotRestoresCommandOutput) => void): void;
1365
-
1366
- describeFleetHistory(args: DescribeFleetHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetHistoryCommandOutput>;
1367
- describeFleetHistory(args: DescribeFleetHistoryCommandInput, cb: (err: any, data?: DescribeFleetHistoryCommandOutput) => void): void;
1368
- describeFleetHistory(args: DescribeFleetHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetHistoryCommandOutput) => void): void;
1369
-
1370
- describeFleetInstances(args: DescribeFleetInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetInstancesCommandOutput>;
1371
- describeFleetInstances(args: DescribeFleetInstancesCommandInput, cb: (err: any, data?: DescribeFleetInstancesCommandOutput) => void): void;
1372
- describeFleetInstances(args: DescribeFleetInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetInstancesCommandOutput) => void): void;
1373
-
1374
- describeFleets(args: DescribeFleetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetsCommandOutput>;
1375
- describeFleets(args: DescribeFleetsCommandInput, cb: (err: any, data?: DescribeFleetsCommandOutput) => void): void;
1376
- describeFleets(args: DescribeFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetsCommandOutput) => void): void;
1377
-
1378
- describeFlowLogs(args: DescribeFlowLogsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowLogsCommandOutput>;
1379
- describeFlowLogs(args: DescribeFlowLogsCommandInput, cb: (err: any, data?: DescribeFlowLogsCommandOutput) => void): void;
1380
- describeFlowLogs(args: DescribeFlowLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowLogsCommandOutput) => void): void;
1381
-
1382
- describeFpgaImageAttribute(args: DescribeFpgaImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFpgaImageAttributeCommandOutput>;
1383
- describeFpgaImageAttribute(args: DescribeFpgaImageAttributeCommandInput, cb: (err: any, data?: DescribeFpgaImageAttributeCommandOutput) => void): void;
1384
- describeFpgaImageAttribute(args: DescribeFpgaImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFpgaImageAttributeCommandOutput) => void): void;
1385
-
1386
- describeFpgaImages(args: DescribeFpgaImagesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFpgaImagesCommandOutput>;
1387
- describeFpgaImages(args: DescribeFpgaImagesCommandInput, cb: (err: any, data?: DescribeFpgaImagesCommandOutput) => void): void;
1388
- describeFpgaImages(args: DescribeFpgaImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFpgaImagesCommandOutput) => void): void;
1389
-
1390
- describeHostReservationOfferings(args: DescribeHostReservationOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHostReservationOfferingsCommandOutput>;
1391
- describeHostReservationOfferings(args: DescribeHostReservationOfferingsCommandInput, cb: (err: any, data?: DescribeHostReservationOfferingsCommandOutput) => void): void;
1392
- describeHostReservationOfferings(args: DescribeHostReservationOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHostReservationOfferingsCommandOutput) => void): void;
1393
-
1394
- describeHostReservations(args: DescribeHostReservationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHostReservationsCommandOutput>;
1395
- describeHostReservations(args: DescribeHostReservationsCommandInput, cb: (err: any, data?: DescribeHostReservationsCommandOutput) => void): void;
1396
- describeHostReservations(args: DescribeHostReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHostReservationsCommandOutput) => void): void;
1397
-
1398
- describeHosts(args: DescribeHostsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHostsCommandOutput>;
1399
- describeHosts(args: DescribeHostsCommandInput, cb: (err: any, data?: DescribeHostsCommandOutput) => void): void;
1400
- describeHosts(args: DescribeHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHostsCommandOutput) => void): void;
1401
-
1402
- describeIamInstanceProfileAssociations(args: DescribeIamInstanceProfileAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIamInstanceProfileAssociationsCommandOutput>;
1403
- describeIamInstanceProfileAssociations(args: DescribeIamInstanceProfileAssociationsCommandInput, cb: (err: any, data?: DescribeIamInstanceProfileAssociationsCommandOutput) => void): void;
1404
- describeIamInstanceProfileAssociations(args: DescribeIamInstanceProfileAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIamInstanceProfileAssociationsCommandOutput) => void): void;
1405
-
1406
- describeIdentityIdFormat(args: DescribeIdentityIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIdentityIdFormatCommandOutput>;
1407
- describeIdentityIdFormat(args: DescribeIdentityIdFormatCommandInput, cb: (err: any, data?: DescribeIdentityIdFormatCommandOutput) => void): void;
1408
- describeIdentityIdFormat(args: DescribeIdentityIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIdentityIdFormatCommandOutput) => void): void;
1409
-
1410
- describeIdFormat(args: DescribeIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIdFormatCommandOutput>;
1411
- describeIdFormat(args: DescribeIdFormatCommandInput, cb: (err: any, data?: DescribeIdFormatCommandOutput) => void): void;
1412
- describeIdFormat(args: DescribeIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIdFormatCommandOutput) => void): void;
1413
-
1414
- describeImageAttribute(args: DescribeImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImageAttributeCommandOutput>;
1415
- describeImageAttribute(args: DescribeImageAttributeCommandInput, cb: (err: any, data?: DescribeImageAttributeCommandOutput) => void): void;
1416
- describeImageAttribute(args: DescribeImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImageAttributeCommandOutput) => void): void;
1417
-
1418
- describeImages(args: DescribeImagesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImagesCommandOutput>;
1419
- describeImages(args: DescribeImagesCommandInput, cb: (err: any, data?: DescribeImagesCommandOutput) => void): void;
1420
- describeImages(args: DescribeImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImagesCommandOutput) => void): void;
1421
-
1422
- describeImportImageTasks(args: DescribeImportImageTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImportImageTasksCommandOutput>;
1423
- describeImportImageTasks(args: DescribeImportImageTasksCommandInput, cb: (err: any, data?: DescribeImportImageTasksCommandOutput) => void): void;
1424
- describeImportImageTasks(args: DescribeImportImageTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportImageTasksCommandOutput) => void): void;
1425
-
1426
- describeImportSnapshotTasks(args: DescribeImportSnapshotTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImportSnapshotTasksCommandOutput>;
1427
- describeImportSnapshotTasks(args: DescribeImportSnapshotTasksCommandInput, cb: (err: any, data?: DescribeImportSnapshotTasksCommandOutput) => void): void;
1428
- describeImportSnapshotTasks(args: DescribeImportSnapshotTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportSnapshotTasksCommandOutput) => void): void;
1429
-
1430
- describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceAttributeCommandOutput>;
1431
- describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
1432
- describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
1433
-
1434
- describeInstanceCreditSpecifications(args: DescribeInstanceCreditSpecificationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceCreditSpecificationsCommandOutput>;
1435
- describeInstanceCreditSpecifications(args: DescribeInstanceCreditSpecificationsCommandInput, cb: (err: any, data?: DescribeInstanceCreditSpecificationsCommandOutput) => void): void;
1436
- describeInstanceCreditSpecifications(args: DescribeInstanceCreditSpecificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceCreditSpecificationsCommandOutput) => void): void;
1437
-
1438
- describeInstanceEventNotificationAttributes(args: DescribeInstanceEventNotificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceEventNotificationAttributesCommandOutput>;
1439
- describeInstanceEventNotificationAttributes(args: DescribeInstanceEventNotificationAttributesCommandInput, cb: (err: any, data?: DescribeInstanceEventNotificationAttributesCommandOutput) => void): void;
1440
- describeInstanceEventNotificationAttributes(args: DescribeInstanceEventNotificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceEventNotificationAttributesCommandOutput) => void): void;
1441
-
1442
- describeInstanceEventWindows(args: DescribeInstanceEventWindowsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceEventWindowsCommandOutput>;
1443
- describeInstanceEventWindows(args: DescribeInstanceEventWindowsCommandInput, cb: (err: any, data?: DescribeInstanceEventWindowsCommandOutput) => void): void;
1444
- describeInstanceEventWindows(args: DescribeInstanceEventWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceEventWindowsCommandOutput) => void): void;
1445
-
1446
- describeInstances(args: DescribeInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancesCommandOutput>;
1447
- describeInstances(args: DescribeInstancesCommandInput, cb: (err: any, data?: DescribeInstancesCommandOutput) => void): void;
1448
- describeInstances(args: DescribeInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancesCommandOutput) => void): void;
1449
-
1450
- describeInstanceStatus(args: DescribeInstanceStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceStatusCommandOutput>;
1451
- describeInstanceStatus(args: DescribeInstanceStatusCommandInput, cb: (err: any, data?: DescribeInstanceStatusCommandOutput) => void): void;
1452
- describeInstanceStatus(args: DescribeInstanceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceStatusCommandOutput) => void): void;
1453
-
1454
- describeInstanceTypeOfferings(args: DescribeInstanceTypeOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceTypeOfferingsCommandOutput>;
1455
- describeInstanceTypeOfferings(args: DescribeInstanceTypeOfferingsCommandInput, cb: (err: any, data?: DescribeInstanceTypeOfferingsCommandOutput) => void): void;
1456
- describeInstanceTypeOfferings(args: DescribeInstanceTypeOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceTypeOfferingsCommandOutput) => void): void;
1457
-
1458
- describeInstanceTypes(args: DescribeInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceTypesCommandOutput>;
1459
- describeInstanceTypes(args: DescribeInstanceTypesCommandInput, cb: (err: any, data?: DescribeInstanceTypesCommandOutput) => void): void;
1460
- describeInstanceTypes(args: DescribeInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceTypesCommandOutput) => void): void;
1461
-
1462
- describeInternetGateways(args: DescribeInternetGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInternetGatewaysCommandOutput>;
1463
- describeInternetGateways(args: DescribeInternetGatewaysCommandInput, cb: (err: any, data?: DescribeInternetGatewaysCommandOutput) => void): void;
1464
- describeInternetGateways(args: DescribeInternetGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInternetGatewaysCommandOutput) => void): void;
1465
-
1466
- describeIpamPools(args: DescribeIpamPoolsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpamPoolsCommandOutput>;
1467
- describeIpamPools(args: DescribeIpamPoolsCommandInput, cb: (err: any, data?: DescribeIpamPoolsCommandOutput) => void): void;
1468
- describeIpamPools(args: DescribeIpamPoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpamPoolsCommandOutput) => void): void;
1469
-
1470
- describeIpams(args: DescribeIpamsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpamsCommandOutput>;
1471
- describeIpams(args: DescribeIpamsCommandInput, cb: (err: any, data?: DescribeIpamsCommandOutput) => void): void;
1472
- describeIpams(args: DescribeIpamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpamsCommandOutput) => void): void;
1473
-
1474
- describeIpamScopes(args: DescribeIpamScopesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpamScopesCommandOutput>;
1475
- describeIpamScopes(args: DescribeIpamScopesCommandInput, cb: (err: any, data?: DescribeIpamScopesCommandOutput) => void): void;
1476
- describeIpamScopes(args: DescribeIpamScopesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpamScopesCommandOutput) => void): void;
1477
-
1478
- describeIpv6Pools(args: DescribeIpv6PoolsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpv6PoolsCommandOutput>;
1479
- describeIpv6Pools(args: DescribeIpv6PoolsCommandInput, cb: (err: any, data?: DescribeIpv6PoolsCommandOutput) => void): void;
1480
- describeIpv6Pools(args: DescribeIpv6PoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpv6PoolsCommandOutput) => void): void;
1481
-
1482
- describeKeyPairs(args: DescribeKeyPairsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeKeyPairsCommandOutput>;
1483
- describeKeyPairs(args: DescribeKeyPairsCommandInput, cb: (err: any, data?: DescribeKeyPairsCommandOutput) => void): void;
1484
- describeKeyPairs(args: DescribeKeyPairsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeKeyPairsCommandOutput) => void): void;
1485
-
1486
- describeLaunchTemplates(args: DescribeLaunchTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLaunchTemplatesCommandOutput>;
1487
- describeLaunchTemplates(args: DescribeLaunchTemplatesCommandInput, cb: (err: any, data?: DescribeLaunchTemplatesCommandOutput) => void): void;
1488
- describeLaunchTemplates(args: DescribeLaunchTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLaunchTemplatesCommandOutput) => void): void;
1489
-
1490
- describeLaunchTemplateVersions(args: DescribeLaunchTemplateVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLaunchTemplateVersionsCommandOutput>;
1491
- describeLaunchTemplateVersions(args: DescribeLaunchTemplateVersionsCommandInput, cb: (err: any, data?: DescribeLaunchTemplateVersionsCommandOutput) => void): void;
1492
- describeLaunchTemplateVersions(args: DescribeLaunchTemplateVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLaunchTemplateVersionsCommandOutput) => void): void;
1493
-
1494
- describeLocalGatewayRouteTables(args: DescribeLocalGatewayRouteTablesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewayRouteTablesCommandOutput>;
1495
- describeLocalGatewayRouteTables(args: DescribeLocalGatewayRouteTablesCommandInput, cb: (err: any, data?: DescribeLocalGatewayRouteTablesCommandOutput) => void): void;
1496
- describeLocalGatewayRouteTables(args: DescribeLocalGatewayRouteTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewayRouteTablesCommandOutput) => void): void;
1497
-
1498
- describeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(args: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput>;
1499
- describeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(args: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput, cb: (err: any, data?: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput) => void): void;
1500
- describeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(args: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput) => void): void;
1501
-
1502
- describeLocalGatewayRouteTableVpcAssociations(args: DescribeLocalGatewayRouteTableVpcAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput>;
1503
- describeLocalGatewayRouteTableVpcAssociations(args: DescribeLocalGatewayRouteTableVpcAssociationsCommandInput, cb: (err: any, data?: DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput) => void): void;
1504
- describeLocalGatewayRouteTableVpcAssociations(args: DescribeLocalGatewayRouteTableVpcAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput) => void): void;
1505
-
1506
- describeLocalGateways(args: DescribeLocalGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewaysCommandOutput>;
1507
- describeLocalGateways(args: DescribeLocalGatewaysCommandInput, cb: (err: any, data?: DescribeLocalGatewaysCommandOutput) => void): void;
1508
- describeLocalGateways(args: DescribeLocalGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewaysCommandOutput) => void): void;
1509
-
1510
- describeLocalGatewayVirtualInterfaceGroups(args: DescribeLocalGatewayVirtualInterfaceGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput>;
1511
- describeLocalGatewayVirtualInterfaceGroups(args: DescribeLocalGatewayVirtualInterfaceGroupsCommandInput, cb: (err: any, data?: DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput) => void): void;
1512
- describeLocalGatewayVirtualInterfaceGroups(args: DescribeLocalGatewayVirtualInterfaceGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput) => void): void;
1513
-
1514
- describeLocalGatewayVirtualInterfaces(args: DescribeLocalGatewayVirtualInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocalGatewayVirtualInterfacesCommandOutput>;
1515
- describeLocalGatewayVirtualInterfaces(args: DescribeLocalGatewayVirtualInterfacesCommandInput, cb: (err: any, data?: DescribeLocalGatewayVirtualInterfacesCommandOutput) => void): void;
1516
- describeLocalGatewayVirtualInterfaces(args: DescribeLocalGatewayVirtualInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocalGatewayVirtualInterfacesCommandOutput) => void): void;
1517
-
1518
- describeManagedPrefixLists(args: DescribeManagedPrefixListsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeManagedPrefixListsCommandOutput>;
1519
- describeManagedPrefixLists(args: DescribeManagedPrefixListsCommandInput, cb: (err: any, data?: DescribeManagedPrefixListsCommandOutput) => void): void;
1520
- describeManagedPrefixLists(args: DescribeManagedPrefixListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeManagedPrefixListsCommandOutput) => void): void;
1521
-
1522
- describeMovingAddresses(args: DescribeMovingAddressesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMovingAddressesCommandOutput>;
1523
- describeMovingAddresses(args: DescribeMovingAddressesCommandInput, cb: (err: any, data?: DescribeMovingAddressesCommandOutput) => void): void;
1524
- describeMovingAddresses(args: DescribeMovingAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMovingAddressesCommandOutput) => void): void;
1525
-
1526
- describeNatGateways(args: DescribeNatGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNatGatewaysCommandOutput>;
1527
- describeNatGateways(args: DescribeNatGatewaysCommandInput, cb: (err: any, data?: DescribeNatGatewaysCommandOutput) => void): void;
1528
- describeNatGateways(args: DescribeNatGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNatGatewaysCommandOutput) => void): void;
1529
-
1530
- describeNetworkAcls(args: DescribeNetworkAclsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkAclsCommandOutput>;
1531
- describeNetworkAcls(args: DescribeNetworkAclsCommandInput, cb: (err: any, data?: DescribeNetworkAclsCommandOutput) => void): void;
1532
- describeNetworkAcls(args: DescribeNetworkAclsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkAclsCommandOutput) => void): void;
1533
-
1534
- describeNetworkInsightsAccessScopeAnalyses(args: DescribeNetworkInsightsAccessScopeAnalysesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInsightsAccessScopeAnalysesCommandOutput>;
1535
- describeNetworkInsightsAccessScopeAnalyses(args: DescribeNetworkInsightsAccessScopeAnalysesCommandInput, cb: (err: any, data?: DescribeNetworkInsightsAccessScopeAnalysesCommandOutput) => void): void;
1536
- describeNetworkInsightsAccessScopeAnalyses(args: DescribeNetworkInsightsAccessScopeAnalysesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInsightsAccessScopeAnalysesCommandOutput) => void): void;
1537
-
1538
- describeNetworkInsightsAccessScopes(args: DescribeNetworkInsightsAccessScopesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInsightsAccessScopesCommandOutput>;
1539
- describeNetworkInsightsAccessScopes(args: DescribeNetworkInsightsAccessScopesCommandInput, cb: (err: any, data?: DescribeNetworkInsightsAccessScopesCommandOutput) => void): void;
1540
- describeNetworkInsightsAccessScopes(args: DescribeNetworkInsightsAccessScopesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInsightsAccessScopesCommandOutput) => void): void;
1541
-
1542
- describeNetworkInsightsAnalyses(args: DescribeNetworkInsightsAnalysesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInsightsAnalysesCommandOutput>;
1543
- describeNetworkInsightsAnalyses(args: DescribeNetworkInsightsAnalysesCommandInput, cb: (err: any, data?: DescribeNetworkInsightsAnalysesCommandOutput) => void): void;
1544
- describeNetworkInsightsAnalyses(args: DescribeNetworkInsightsAnalysesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInsightsAnalysesCommandOutput) => void): void;
1545
-
1546
- describeNetworkInsightsPaths(args: DescribeNetworkInsightsPathsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInsightsPathsCommandOutput>;
1547
- describeNetworkInsightsPaths(args: DescribeNetworkInsightsPathsCommandInput, cb: (err: any, data?: DescribeNetworkInsightsPathsCommandOutput) => void): void;
1548
- describeNetworkInsightsPaths(args: DescribeNetworkInsightsPathsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInsightsPathsCommandOutput) => void): void;
1549
-
1550
- describeNetworkInterfaceAttribute(args: DescribeNetworkInterfaceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInterfaceAttributeCommandOutput>;
1551
- describeNetworkInterfaceAttribute(args: DescribeNetworkInterfaceAttributeCommandInput, cb: (err: any, data?: DescribeNetworkInterfaceAttributeCommandOutput) => void): void;
1552
- describeNetworkInterfaceAttribute(args: DescribeNetworkInterfaceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInterfaceAttributeCommandOutput) => void): void;
1553
-
1554
- describeNetworkInterfacePermissions(args: DescribeNetworkInterfacePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInterfacePermissionsCommandOutput>;
1555
- describeNetworkInterfacePermissions(args: DescribeNetworkInterfacePermissionsCommandInput, cb: (err: any, data?: DescribeNetworkInterfacePermissionsCommandOutput) => void): void;
1556
- describeNetworkInterfacePermissions(args: DescribeNetworkInterfacePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInterfacePermissionsCommandOutput) => void): void;
1557
-
1558
- describeNetworkInterfaces(args: DescribeNetworkInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNetworkInterfacesCommandOutput>;
1559
- describeNetworkInterfaces(args: DescribeNetworkInterfacesCommandInput, cb: (err: any, data?: DescribeNetworkInterfacesCommandOutput) => void): void;
1560
- describeNetworkInterfaces(args: DescribeNetworkInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNetworkInterfacesCommandOutput) => void): void;
1561
-
1562
- describePlacementGroups(args: DescribePlacementGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribePlacementGroupsCommandOutput>;
1563
- describePlacementGroups(args: DescribePlacementGroupsCommandInput, cb: (err: any, data?: DescribePlacementGroupsCommandOutput) => void): void;
1564
- describePlacementGroups(args: DescribePlacementGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePlacementGroupsCommandOutput) => void): void;
1565
-
1566
- describePrefixLists(args: DescribePrefixListsCommandInput, options?: __HttpHandlerOptions): Promise<DescribePrefixListsCommandOutput>;
1567
- describePrefixLists(args: DescribePrefixListsCommandInput, cb: (err: any, data?: DescribePrefixListsCommandOutput) => void): void;
1568
- describePrefixLists(args: DescribePrefixListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePrefixListsCommandOutput) => void): void;
1569
-
1570
- describePrincipalIdFormat(args: DescribePrincipalIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<DescribePrincipalIdFormatCommandOutput>;
1571
- describePrincipalIdFormat(args: DescribePrincipalIdFormatCommandInput, cb: (err: any, data?: DescribePrincipalIdFormatCommandOutput) => void): void;
1572
- describePrincipalIdFormat(args: DescribePrincipalIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePrincipalIdFormatCommandOutput) => void): void;
1573
-
1574
- describePublicIpv4Pools(args: DescribePublicIpv4PoolsCommandInput, options?: __HttpHandlerOptions): Promise<DescribePublicIpv4PoolsCommandOutput>;
1575
- describePublicIpv4Pools(args: DescribePublicIpv4PoolsCommandInput, cb: (err: any, data?: DescribePublicIpv4PoolsCommandOutput) => void): void;
1576
- describePublicIpv4Pools(args: DescribePublicIpv4PoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePublicIpv4PoolsCommandOutput) => void): void;
1577
-
1578
- describeRegions(args: DescribeRegionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRegionsCommandOutput>;
1579
- describeRegions(args: DescribeRegionsCommandInput, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
1580
- describeRegions(args: DescribeRegionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
1581
-
1582
- describeReplaceRootVolumeTasks(args: DescribeReplaceRootVolumeTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplaceRootVolumeTasksCommandOutput>;
1583
- describeReplaceRootVolumeTasks(args: DescribeReplaceRootVolumeTasksCommandInput, cb: (err: any, data?: DescribeReplaceRootVolumeTasksCommandOutput) => void): void;
1584
- describeReplaceRootVolumeTasks(args: DescribeReplaceRootVolumeTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplaceRootVolumeTasksCommandOutput) => void): void;
1585
-
1586
- describeReservedInstances(args: DescribeReservedInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedInstancesCommandOutput>;
1587
- describeReservedInstances(args: DescribeReservedInstancesCommandInput, cb: (err: any, data?: DescribeReservedInstancesCommandOutput) => void): void;
1588
- describeReservedInstances(args: DescribeReservedInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedInstancesCommandOutput) => void): void;
1589
-
1590
- describeReservedInstancesListings(args: DescribeReservedInstancesListingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedInstancesListingsCommandOutput>;
1591
- describeReservedInstancesListings(args: DescribeReservedInstancesListingsCommandInput, cb: (err: any, data?: DescribeReservedInstancesListingsCommandOutput) => void): void;
1592
- describeReservedInstancesListings(args: DescribeReservedInstancesListingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedInstancesListingsCommandOutput) => void): void;
1593
-
1594
- describeReservedInstancesModifications(args: DescribeReservedInstancesModificationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedInstancesModificationsCommandOutput>;
1595
- describeReservedInstancesModifications(args: DescribeReservedInstancesModificationsCommandInput, cb: (err: any, data?: DescribeReservedInstancesModificationsCommandOutput) => void): void;
1596
- describeReservedInstancesModifications(args: DescribeReservedInstancesModificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedInstancesModificationsCommandOutput) => void): void;
1597
-
1598
- describeReservedInstancesOfferings(args: DescribeReservedInstancesOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedInstancesOfferingsCommandOutput>;
1599
- describeReservedInstancesOfferings(args: DescribeReservedInstancesOfferingsCommandInput, cb: (err: any, data?: DescribeReservedInstancesOfferingsCommandOutput) => void): void;
1600
- describeReservedInstancesOfferings(args: DescribeReservedInstancesOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedInstancesOfferingsCommandOutput) => void): void;
1601
-
1602
- describeRouteTables(args: DescribeRouteTablesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRouteTablesCommandOutput>;
1603
- describeRouteTables(args: DescribeRouteTablesCommandInput, cb: (err: any, data?: DescribeRouteTablesCommandOutput) => void): void;
1604
- describeRouteTables(args: DescribeRouteTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRouteTablesCommandOutput) => void): void;
1605
-
1606
- describeScheduledInstanceAvailability(args: DescribeScheduledInstanceAvailabilityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduledInstanceAvailabilityCommandOutput>;
1607
- describeScheduledInstanceAvailability(args: DescribeScheduledInstanceAvailabilityCommandInput, cb: (err: any, data?: DescribeScheduledInstanceAvailabilityCommandOutput) => void): void;
1608
- describeScheduledInstanceAvailability(args: DescribeScheduledInstanceAvailabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduledInstanceAvailabilityCommandOutput) => void): void;
1609
-
1610
- describeScheduledInstances(args: DescribeScheduledInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduledInstancesCommandOutput>;
1611
- describeScheduledInstances(args: DescribeScheduledInstancesCommandInput, cb: (err: any, data?: DescribeScheduledInstancesCommandOutput) => void): void;
1612
- describeScheduledInstances(args: DescribeScheduledInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduledInstancesCommandOutput) => void): void;
1613
-
1614
- describeSecurityGroupReferences(args: DescribeSecurityGroupReferencesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityGroupReferencesCommandOutput>;
1615
- describeSecurityGroupReferences(args: DescribeSecurityGroupReferencesCommandInput, cb: (err: any, data?: DescribeSecurityGroupReferencesCommandOutput) => void): void;
1616
- describeSecurityGroupReferences(args: DescribeSecurityGroupReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityGroupReferencesCommandOutput) => void): void;
1617
-
1618
- describeSecurityGroupRules(args: DescribeSecurityGroupRulesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityGroupRulesCommandOutput>;
1619
- describeSecurityGroupRules(args: DescribeSecurityGroupRulesCommandInput, cb: (err: any, data?: DescribeSecurityGroupRulesCommandOutput) => void): void;
1620
- describeSecurityGroupRules(args: DescribeSecurityGroupRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityGroupRulesCommandOutput) => void): void;
1621
-
1622
- describeSecurityGroups(args: DescribeSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityGroupsCommandOutput>;
1623
- describeSecurityGroups(args: DescribeSecurityGroupsCommandInput, cb: (err: any, data?: DescribeSecurityGroupsCommandOutput) => void): void;
1624
- describeSecurityGroups(args: DescribeSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityGroupsCommandOutput) => void): void;
1625
-
1626
- describeSnapshotAttribute(args: DescribeSnapshotAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotAttributeCommandOutput>;
1627
- describeSnapshotAttribute(args: DescribeSnapshotAttributeCommandInput, cb: (err: any, data?: DescribeSnapshotAttributeCommandOutput) => void): void;
1628
- describeSnapshotAttribute(args: DescribeSnapshotAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotAttributeCommandOutput) => void): void;
1629
-
1630
- describeSnapshots(args: DescribeSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotsCommandOutput>;
1631
- describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
1632
- describeSnapshots(args: DescribeSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
1633
-
1634
- describeSnapshotTierStatus(args: DescribeSnapshotTierStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotTierStatusCommandOutput>;
1635
- describeSnapshotTierStatus(args: DescribeSnapshotTierStatusCommandInput, cb: (err: any, data?: DescribeSnapshotTierStatusCommandOutput) => void): void;
1636
- describeSnapshotTierStatus(args: DescribeSnapshotTierStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotTierStatusCommandOutput) => void): void;
1637
-
1638
- describeSpotDatafeedSubscription(args: DescribeSpotDatafeedSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotDatafeedSubscriptionCommandOutput>;
1639
- describeSpotDatafeedSubscription(args: DescribeSpotDatafeedSubscriptionCommandInput, cb: (err: any, data?: DescribeSpotDatafeedSubscriptionCommandOutput) => void): void;
1640
- describeSpotDatafeedSubscription(args: DescribeSpotDatafeedSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotDatafeedSubscriptionCommandOutput) => void): void;
1641
-
1642
- describeSpotFleetInstances(args: DescribeSpotFleetInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotFleetInstancesCommandOutput>;
1643
- describeSpotFleetInstances(args: DescribeSpotFleetInstancesCommandInput, cb: (err: any, data?: DescribeSpotFleetInstancesCommandOutput) => void): void;
1644
- describeSpotFleetInstances(args: DescribeSpotFleetInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotFleetInstancesCommandOutput) => void): void;
1645
-
1646
- describeSpotFleetRequestHistory(args: DescribeSpotFleetRequestHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotFleetRequestHistoryCommandOutput>;
1647
- describeSpotFleetRequestHistory(args: DescribeSpotFleetRequestHistoryCommandInput, cb: (err: any, data?: DescribeSpotFleetRequestHistoryCommandOutput) => void): void;
1648
- describeSpotFleetRequestHistory(args: DescribeSpotFleetRequestHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotFleetRequestHistoryCommandOutput) => void): void;
1649
-
1650
- describeSpotFleetRequests(args: DescribeSpotFleetRequestsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotFleetRequestsCommandOutput>;
1651
- describeSpotFleetRequests(args: DescribeSpotFleetRequestsCommandInput, cb: (err: any, data?: DescribeSpotFleetRequestsCommandOutput) => void): void;
1652
- describeSpotFleetRequests(args: DescribeSpotFleetRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotFleetRequestsCommandOutput) => void): void;
1653
-
1654
- describeSpotInstanceRequests(args: DescribeSpotInstanceRequestsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotInstanceRequestsCommandOutput>;
1655
- describeSpotInstanceRequests(args: DescribeSpotInstanceRequestsCommandInput, cb: (err: any, data?: DescribeSpotInstanceRequestsCommandOutput) => void): void;
1656
- describeSpotInstanceRequests(args: DescribeSpotInstanceRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotInstanceRequestsCommandOutput) => void): void;
1657
-
1658
- describeSpotPriceHistory(args: DescribeSpotPriceHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpotPriceHistoryCommandOutput>;
1659
- describeSpotPriceHistory(args: DescribeSpotPriceHistoryCommandInput, cb: (err: any, data?: DescribeSpotPriceHistoryCommandOutput) => void): void;
1660
- describeSpotPriceHistory(args: DescribeSpotPriceHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpotPriceHistoryCommandOutput) => void): void;
1661
-
1662
- describeStaleSecurityGroups(args: DescribeStaleSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStaleSecurityGroupsCommandOutput>;
1663
- describeStaleSecurityGroups(args: DescribeStaleSecurityGroupsCommandInput, cb: (err: any, data?: DescribeStaleSecurityGroupsCommandOutput) => void): void;
1664
- describeStaleSecurityGroups(args: DescribeStaleSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStaleSecurityGroupsCommandOutput) => void): void;
1665
-
1666
- describeStoreImageTasks(args: DescribeStoreImageTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStoreImageTasksCommandOutput>;
1667
- describeStoreImageTasks(args: DescribeStoreImageTasksCommandInput, cb: (err: any, data?: DescribeStoreImageTasksCommandOutput) => void): void;
1668
- describeStoreImageTasks(args: DescribeStoreImageTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStoreImageTasksCommandOutput) => void): void;
1669
-
1670
- describeSubnets(args: DescribeSubnetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSubnetsCommandOutput>;
1671
- describeSubnets(args: DescribeSubnetsCommandInput, cb: (err: any, data?: DescribeSubnetsCommandOutput) => void): void;
1672
- describeSubnets(args: DescribeSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSubnetsCommandOutput) => void): void;
1673
-
1674
- describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
1675
- describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
1676
- describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
1677
-
1678
- describeTrafficMirrorFilters(args: DescribeTrafficMirrorFiltersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrafficMirrorFiltersCommandOutput>;
1679
- describeTrafficMirrorFilters(args: DescribeTrafficMirrorFiltersCommandInput, cb: (err: any, data?: DescribeTrafficMirrorFiltersCommandOutput) => void): void;
1680
- describeTrafficMirrorFilters(args: DescribeTrafficMirrorFiltersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficMirrorFiltersCommandOutput) => void): void;
1681
-
1682
- describeTrafficMirrorSessions(args: DescribeTrafficMirrorSessionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrafficMirrorSessionsCommandOutput>;
1683
- describeTrafficMirrorSessions(args: DescribeTrafficMirrorSessionsCommandInput, cb: (err: any, data?: DescribeTrafficMirrorSessionsCommandOutput) => void): void;
1684
- describeTrafficMirrorSessions(args: DescribeTrafficMirrorSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficMirrorSessionsCommandOutput) => void): void;
1685
-
1686
- describeTrafficMirrorTargets(args: DescribeTrafficMirrorTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrafficMirrorTargetsCommandOutput>;
1687
- describeTrafficMirrorTargets(args: DescribeTrafficMirrorTargetsCommandInput, cb: (err: any, data?: DescribeTrafficMirrorTargetsCommandOutput) => void): void;
1688
- describeTrafficMirrorTargets(args: DescribeTrafficMirrorTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficMirrorTargetsCommandOutput) => void): void;
1689
-
1690
- describeTransitGatewayAttachments(args: DescribeTransitGatewayAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayAttachmentsCommandOutput>;
1691
- describeTransitGatewayAttachments(args: DescribeTransitGatewayAttachmentsCommandInput, cb: (err: any, data?: DescribeTransitGatewayAttachmentsCommandOutput) => void): void;
1692
- describeTransitGatewayAttachments(args: DescribeTransitGatewayAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayAttachmentsCommandOutput) => void): void;
1693
-
1694
- describeTransitGatewayConnectPeers(args: DescribeTransitGatewayConnectPeersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayConnectPeersCommandOutput>;
1695
- describeTransitGatewayConnectPeers(args: DescribeTransitGatewayConnectPeersCommandInput, cb: (err: any, data?: DescribeTransitGatewayConnectPeersCommandOutput) => void): void;
1696
- describeTransitGatewayConnectPeers(args: DescribeTransitGatewayConnectPeersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayConnectPeersCommandOutput) => void): void;
1697
-
1698
- describeTransitGatewayConnects(args: DescribeTransitGatewayConnectsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayConnectsCommandOutput>;
1699
- describeTransitGatewayConnects(args: DescribeTransitGatewayConnectsCommandInput, cb: (err: any, data?: DescribeTransitGatewayConnectsCommandOutput) => void): void;
1700
- describeTransitGatewayConnects(args: DescribeTransitGatewayConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayConnectsCommandOutput) => void): void;
1701
-
1702
- describeTransitGatewayMulticastDomains(args: DescribeTransitGatewayMulticastDomainsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayMulticastDomainsCommandOutput>;
1703
- describeTransitGatewayMulticastDomains(args: DescribeTransitGatewayMulticastDomainsCommandInput, cb: (err: any, data?: DescribeTransitGatewayMulticastDomainsCommandOutput) => void): void;
1704
- describeTransitGatewayMulticastDomains(args: DescribeTransitGatewayMulticastDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayMulticastDomainsCommandOutput) => void): void;
1705
-
1706
- describeTransitGatewayPeeringAttachments(args: DescribeTransitGatewayPeeringAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayPeeringAttachmentsCommandOutput>;
1707
- describeTransitGatewayPeeringAttachments(args: DescribeTransitGatewayPeeringAttachmentsCommandInput, cb: (err: any, data?: DescribeTransitGatewayPeeringAttachmentsCommandOutput) => void): void;
1708
- describeTransitGatewayPeeringAttachments(args: DescribeTransitGatewayPeeringAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayPeeringAttachmentsCommandOutput) => void): void;
1709
-
1710
- describeTransitGatewayRouteTables(args: DescribeTransitGatewayRouteTablesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayRouteTablesCommandOutput>;
1711
- describeTransitGatewayRouteTables(args: DescribeTransitGatewayRouteTablesCommandInput, cb: (err: any, data?: DescribeTransitGatewayRouteTablesCommandOutput) => void): void;
1712
- describeTransitGatewayRouteTables(args: DescribeTransitGatewayRouteTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayRouteTablesCommandOutput) => void): void;
1713
-
1714
- describeTransitGateways(args: DescribeTransitGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewaysCommandOutput>;
1715
- describeTransitGateways(args: DescribeTransitGatewaysCommandInput, cb: (err: any, data?: DescribeTransitGatewaysCommandOutput) => void): void;
1716
- describeTransitGateways(args: DescribeTransitGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewaysCommandOutput) => void): void;
1717
-
1718
- describeTransitGatewayVpcAttachments(args: DescribeTransitGatewayVpcAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransitGatewayVpcAttachmentsCommandOutput>;
1719
- describeTransitGatewayVpcAttachments(args: DescribeTransitGatewayVpcAttachmentsCommandInput, cb: (err: any, data?: DescribeTransitGatewayVpcAttachmentsCommandOutput) => void): void;
1720
- describeTransitGatewayVpcAttachments(args: DescribeTransitGatewayVpcAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransitGatewayVpcAttachmentsCommandOutput) => void): void;
1721
-
1722
- describeTrunkInterfaceAssociations(args: DescribeTrunkInterfaceAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrunkInterfaceAssociationsCommandOutput>;
1723
- describeTrunkInterfaceAssociations(args: DescribeTrunkInterfaceAssociationsCommandInput, cb: (err: any, data?: DescribeTrunkInterfaceAssociationsCommandOutput) => void): void;
1724
- describeTrunkInterfaceAssociations(args: DescribeTrunkInterfaceAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrunkInterfaceAssociationsCommandOutput) => void): void;
1725
-
1726
- describeVolumeAttribute(args: DescribeVolumeAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVolumeAttributeCommandOutput>;
1727
- describeVolumeAttribute(args: DescribeVolumeAttributeCommandInput, cb: (err: any, data?: DescribeVolumeAttributeCommandOutput) => void): void;
1728
- describeVolumeAttribute(args: DescribeVolumeAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumeAttributeCommandOutput) => void): void;
1729
-
1730
- describeVolumes(args: DescribeVolumesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVolumesCommandOutput>;
1731
- describeVolumes(args: DescribeVolumesCommandInput, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
1732
- describeVolumes(args: DescribeVolumesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
1733
-
1734
- describeVolumesModifications(args: DescribeVolumesModificationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVolumesModificationsCommandOutput>;
1735
- describeVolumesModifications(args: DescribeVolumesModificationsCommandInput, cb: (err: any, data?: DescribeVolumesModificationsCommandOutput) => void): void;
1736
- describeVolumesModifications(args: DescribeVolumesModificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumesModificationsCommandOutput) => void): void;
1737
-
1738
- describeVolumeStatus(args: DescribeVolumeStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVolumeStatusCommandOutput>;
1739
- describeVolumeStatus(args: DescribeVolumeStatusCommandInput, cb: (err: any, data?: DescribeVolumeStatusCommandOutput) => void): void;
1740
- describeVolumeStatus(args: DescribeVolumeStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumeStatusCommandOutput) => void): void;
1741
-
1742
- describeVpcAttribute(args: DescribeVpcAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcAttributeCommandOutput>;
1743
- describeVpcAttribute(args: DescribeVpcAttributeCommandInput, cb: (err: any, data?: DescribeVpcAttributeCommandOutput) => void): void;
1744
- describeVpcAttribute(args: DescribeVpcAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcAttributeCommandOutput) => void): void;
1745
-
1746
- describeVpcClassicLink(args: DescribeVpcClassicLinkCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcClassicLinkCommandOutput>;
1747
- describeVpcClassicLink(args: DescribeVpcClassicLinkCommandInput, cb: (err: any, data?: DescribeVpcClassicLinkCommandOutput) => void): void;
1748
- describeVpcClassicLink(args: DescribeVpcClassicLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcClassicLinkCommandOutput) => void): void;
1749
-
1750
- describeVpcClassicLinkDnsSupport(args: DescribeVpcClassicLinkDnsSupportCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcClassicLinkDnsSupportCommandOutput>;
1751
- describeVpcClassicLinkDnsSupport(args: DescribeVpcClassicLinkDnsSupportCommandInput, cb: (err: any, data?: DescribeVpcClassicLinkDnsSupportCommandOutput) => void): void;
1752
- describeVpcClassicLinkDnsSupport(args: DescribeVpcClassicLinkDnsSupportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcClassicLinkDnsSupportCommandOutput) => void): void;
1753
-
1754
- describeVpcEndpointConnectionNotifications(args: DescribeVpcEndpointConnectionNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointConnectionNotificationsCommandOutput>;
1755
- describeVpcEndpointConnectionNotifications(args: DescribeVpcEndpointConnectionNotificationsCommandInput, cb: (err: any, data?: DescribeVpcEndpointConnectionNotificationsCommandOutput) => void): void;
1756
- describeVpcEndpointConnectionNotifications(args: DescribeVpcEndpointConnectionNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointConnectionNotificationsCommandOutput) => void): void;
1757
-
1758
- describeVpcEndpointConnections(args: DescribeVpcEndpointConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointConnectionsCommandOutput>;
1759
- describeVpcEndpointConnections(args: DescribeVpcEndpointConnectionsCommandInput, cb: (err: any, data?: DescribeVpcEndpointConnectionsCommandOutput) => void): void;
1760
- describeVpcEndpointConnections(args: DescribeVpcEndpointConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointConnectionsCommandOutput) => void): void;
1761
-
1762
- describeVpcEndpoints(args: DescribeVpcEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointsCommandOutput>;
1763
- describeVpcEndpoints(args: DescribeVpcEndpointsCommandInput, cb: (err: any, data?: DescribeVpcEndpointsCommandOutput) => void): void;
1764
- describeVpcEndpoints(args: DescribeVpcEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointsCommandOutput) => void): void;
1765
-
1766
- describeVpcEndpointServiceConfigurations(args: DescribeVpcEndpointServiceConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointServiceConfigurationsCommandOutput>;
1767
- describeVpcEndpointServiceConfigurations(args: DescribeVpcEndpointServiceConfigurationsCommandInput, cb: (err: any, data?: DescribeVpcEndpointServiceConfigurationsCommandOutput) => void): void;
1768
- describeVpcEndpointServiceConfigurations(args: DescribeVpcEndpointServiceConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointServiceConfigurationsCommandOutput) => void): void;
1769
-
1770
- describeVpcEndpointServicePermissions(args: DescribeVpcEndpointServicePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointServicePermissionsCommandOutput>;
1771
- describeVpcEndpointServicePermissions(args: DescribeVpcEndpointServicePermissionsCommandInput, cb: (err: any, data?: DescribeVpcEndpointServicePermissionsCommandOutput) => void): void;
1772
- describeVpcEndpointServicePermissions(args: DescribeVpcEndpointServicePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointServicePermissionsCommandOutput) => void): void;
1773
-
1774
- describeVpcEndpointServices(args: DescribeVpcEndpointServicesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointServicesCommandOutput>;
1775
- describeVpcEndpointServices(args: DescribeVpcEndpointServicesCommandInput, cb: (err: any, data?: DescribeVpcEndpointServicesCommandOutput) => void): void;
1776
- describeVpcEndpointServices(args: DescribeVpcEndpointServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointServicesCommandOutput) => void): void;
1777
-
1778
- describeVpcPeeringConnections(args: DescribeVpcPeeringConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcPeeringConnectionsCommandOutput>;
1779
- describeVpcPeeringConnections(args: DescribeVpcPeeringConnectionsCommandInput, cb: (err: any, data?: DescribeVpcPeeringConnectionsCommandOutput) => void): void;
1780
- describeVpcPeeringConnections(args: DescribeVpcPeeringConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcPeeringConnectionsCommandOutput) => void): void;
1781
-
1782
- describeVpcs(args: DescribeVpcsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcsCommandOutput>;
1783
- describeVpcs(args: DescribeVpcsCommandInput, cb: (err: any, data?: DescribeVpcsCommandOutput) => void): void;
1784
- describeVpcs(args: DescribeVpcsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcsCommandOutput) => void): void;
1785
-
1786
- describeVpnConnections(args: DescribeVpnConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpnConnectionsCommandOutput>;
1787
- describeVpnConnections(args: DescribeVpnConnectionsCommandInput, cb: (err: any, data?: DescribeVpnConnectionsCommandOutput) => void): void;
1788
- describeVpnConnections(args: DescribeVpnConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpnConnectionsCommandOutput) => void): void;
1789
-
1790
- describeVpnGateways(args: DescribeVpnGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpnGatewaysCommandOutput>;
1791
- describeVpnGateways(args: DescribeVpnGatewaysCommandInput, cb: (err: any, data?: DescribeVpnGatewaysCommandOutput) => void): void;
1792
- describeVpnGateways(args: DescribeVpnGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpnGatewaysCommandOutput) => void): void;
1793
-
1794
- detachClassicLinkVpc(args: DetachClassicLinkVpcCommandInput, options?: __HttpHandlerOptions): Promise<DetachClassicLinkVpcCommandOutput>;
1795
- detachClassicLinkVpc(args: DetachClassicLinkVpcCommandInput, cb: (err: any, data?: DetachClassicLinkVpcCommandOutput) => void): void;
1796
- detachClassicLinkVpc(args: DetachClassicLinkVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachClassicLinkVpcCommandOutput) => void): void;
1797
-
1798
- detachInternetGateway(args: DetachInternetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DetachInternetGatewayCommandOutput>;
1799
- detachInternetGateway(args: DetachInternetGatewayCommandInput, cb: (err: any, data?: DetachInternetGatewayCommandOutput) => void): void;
1800
- detachInternetGateway(args: DetachInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachInternetGatewayCommandOutput) => void): void;
1801
-
1802
- detachNetworkInterface(args: DetachNetworkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<DetachNetworkInterfaceCommandOutput>;
1803
- detachNetworkInterface(args: DetachNetworkInterfaceCommandInput, cb: (err: any, data?: DetachNetworkInterfaceCommandOutput) => void): void;
1804
- detachNetworkInterface(args: DetachNetworkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachNetworkInterfaceCommandOutput) => void): void;
1805
-
1806
- detachVolume(args: DetachVolumeCommandInput, options?: __HttpHandlerOptions): Promise<DetachVolumeCommandOutput>;
1807
- detachVolume(args: DetachVolumeCommandInput, cb: (err: any, data?: DetachVolumeCommandOutput) => void): void;
1808
- detachVolume(args: DetachVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachVolumeCommandOutput) => void): void;
1809
-
1810
- detachVpnGateway(args: DetachVpnGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DetachVpnGatewayCommandOutput>;
1811
- detachVpnGateway(args: DetachVpnGatewayCommandInput, cb: (err: any, data?: DetachVpnGatewayCommandOutput) => void): void;
1812
- detachVpnGateway(args: DetachVpnGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachVpnGatewayCommandOutput) => void): void;
1813
-
1814
- disableEbsEncryptionByDefault(args: DisableEbsEncryptionByDefaultCommandInput, options?: __HttpHandlerOptions): Promise<DisableEbsEncryptionByDefaultCommandOutput>;
1815
- disableEbsEncryptionByDefault(args: DisableEbsEncryptionByDefaultCommandInput, cb: (err: any, data?: DisableEbsEncryptionByDefaultCommandOutput) => void): void;
1816
- disableEbsEncryptionByDefault(args: DisableEbsEncryptionByDefaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableEbsEncryptionByDefaultCommandOutput) => void): void;
1817
-
1818
- disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<DisableFastSnapshotRestoresCommandOutput>;
1819
- disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, cb: (err: any, data?: DisableFastSnapshotRestoresCommandOutput) => void): void;
1820
- disableFastSnapshotRestores(args: DisableFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableFastSnapshotRestoresCommandOutput) => void): void;
1821
-
1822
- disableImageDeprecation(args: DisableImageDeprecationCommandInput, options?: __HttpHandlerOptions): Promise<DisableImageDeprecationCommandOutput>;
1823
- disableImageDeprecation(args: DisableImageDeprecationCommandInput, cb: (err: any, data?: DisableImageDeprecationCommandOutput) => void): void;
1824
- disableImageDeprecation(args: DisableImageDeprecationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableImageDeprecationCommandOutput) => void): void;
1825
-
1826
- disableIpamOrganizationAdminAccount(args: DisableIpamOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisableIpamOrganizationAdminAccountCommandOutput>;
1827
- disableIpamOrganizationAdminAccount(args: DisableIpamOrganizationAdminAccountCommandInput, cb: (err: any, data?: DisableIpamOrganizationAdminAccountCommandOutput) => void): void;
1828
- disableIpamOrganizationAdminAccount(args: DisableIpamOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableIpamOrganizationAdminAccountCommandOutput) => void): void;
1829
-
1830
- disableSerialConsoleAccess(args: DisableSerialConsoleAccessCommandInput, options?: __HttpHandlerOptions): Promise<DisableSerialConsoleAccessCommandOutput>;
1831
- disableSerialConsoleAccess(args: DisableSerialConsoleAccessCommandInput, cb: (err: any, data?: DisableSerialConsoleAccessCommandOutput) => void): void;
1832
- disableSerialConsoleAccess(args: DisableSerialConsoleAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableSerialConsoleAccessCommandOutput) => void): void;
1833
-
1834
- disableTransitGatewayRouteTablePropagation(args: DisableTransitGatewayRouteTablePropagationCommandInput, options?: __HttpHandlerOptions): Promise<DisableTransitGatewayRouteTablePropagationCommandOutput>;
1835
- disableTransitGatewayRouteTablePropagation(args: DisableTransitGatewayRouteTablePropagationCommandInput, cb: (err: any, data?: DisableTransitGatewayRouteTablePropagationCommandOutput) => void): void;
1836
- disableTransitGatewayRouteTablePropagation(args: DisableTransitGatewayRouteTablePropagationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableTransitGatewayRouteTablePropagationCommandOutput) => void): void;
1837
-
1838
- disableVgwRoutePropagation(args: DisableVgwRoutePropagationCommandInput, options?: __HttpHandlerOptions): Promise<DisableVgwRoutePropagationCommandOutput>;
1839
- disableVgwRoutePropagation(args: DisableVgwRoutePropagationCommandInput, cb: (err: any, data?: DisableVgwRoutePropagationCommandOutput) => void): void;
1840
- disableVgwRoutePropagation(args: DisableVgwRoutePropagationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableVgwRoutePropagationCommandOutput) => void): void;
1841
-
1842
- disableVpcClassicLink(args: DisableVpcClassicLinkCommandInput, options?: __HttpHandlerOptions): Promise<DisableVpcClassicLinkCommandOutput>;
1843
- disableVpcClassicLink(args: DisableVpcClassicLinkCommandInput, cb: (err: any, data?: DisableVpcClassicLinkCommandOutput) => void): void;
1844
- disableVpcClassicLink(args: DisableVpcClassicLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableVpcClassicLinkCommandOutput) => void): void;
1845
-
1846
- disableVpcClassicLinkDnsSupport(args: DisableVpcClassicLinkDnsSupportCommandInput, options?: __HttpHandlerOptions): Promise<DisableVpcClassicLinkDnsSupportCommandOutput>;
1847
- disableVpcClassicLinkDnsSupport(args: DisableVpcClassicLinkDnsSupportCommandInput, cb: (err: any, data?: DisableVpcClassicLinkDnsSupportCommandOutput) => void): void;
1848
- disableVpcClassicLinkDnsSupport(args: DisableVpcClassicLinkDnsSupportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableVpcClassicLinkDnsSupportCommandOutput) => void): void;
1849
-
1850
- disassociateAddress(args: DisassociateAddressCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAddressCommandOutput>;
1851
- disassociateAddress(args: DisassociateAddressCommandInput, cb: (err: any, data?: DisassociateAddressCommandOutput) => void): void;
1852
- disassociateAddress(args: DisassociateAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAddressCommandOutput) => void): void;
1853
-
1854
- disassociateClientVpnTargetNetwork(args: DisassociateClientVpnTargetNetworkCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateClientVpnTargetNetworkCommandOutput>;
1855
- disassociateClientVpnTargetNetwork(args: DisassociateClientVpnTargetNetworkCommandInput, cb: (err: any, data?: DisassociateClientVpnTargetNetworkCommandOutput) => void): void;
1856
- disassociateClientVpnTargetNetwork(args: DisassociateClientVpnTargetNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateClientVpnTargetNetworkCommandOutput) => void): void;
1857
-
1858
- disassociateEnclaveCertificateIamRole(args: DisassociateEnclaveCertificateIamRoleCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateEnclaveCertificateIamRoleCommandOutput>;
1859
- disassociateEnclaveCertificateIamRole(args: DisassociateEnclaveCertificateIamRoleCommandInput, cb: (err: any, data?: DisassociateEnclaveCertificateIamRoleCommandOutput) => void): void;
1860
- disassociateEnclaveCertificateIamRole(args: DisassociateEnclaveCertificateIamRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateEnclaveCertificateIamRoleCommandOutput) => void): void;
1861
-
1862
- disassociateIamInstanceProfile(args: DisassociateIamInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateIamInstanceProfileCommandOutput>;
1863
- disassociateIamInstanceProfile(args: DisassociateIamInstanceProfileCommandInput, cb: (err: any, data?: DisassociateIamInstanceProfileCommandOutput) => void): void;
1864
- disassociateIamInstanceProfile(args: DisassociateIamInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateIamInstanceProfileCommandOutput) => void): void;
1865
-
1866
- disassociateInstanceEventWindow(args: DisassociateInstanceEventWindowCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateInstanceEventWindowCommandOutput>;
1867
- disassociateInstanceEventWindow(args: DisassociateInstanceEventWindowCommandInput, cb: (err: any, data?: DisassociateInstanceEventWindowCommandOutput) => void): void;
1868
- disassociateInstanceEventWindow(args: DisassociateInstanceEventWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateInstanceEventWindowCommandOutput) => void): void;
1869
-
1870
- disassociateRouteTable(args: DisassociateRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRouteTableCommandOutput>;
1871
- disassociateRouteTable(args: DisassociateRouteTableCommandInput, cb: (err: any, data?: DisassociateRouteTableCommandOutput) => void): void;
1872
- disassociateRouteTable(args: DisassociateRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRouteTableCommandOutput) => void): void;
1873
-
1874
- disassociateSubnetCidrBlock(args: DisassociateSubnetCidrBlockCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSubnetCidrBlockCommandOutput>;
1875
- disassociateSubnetCidrBlock(args: DisassociateSubnetCidrBlockCommandInput, cb: (err: any, data?: DisassociateSubnetCidrBlockCommandOutput) => void): void;
1876
- disassociateSubnetCidrBlock(args: DisassociateSubnetCidrBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSubnetCidrBlockCommandOutput) => void): void;
1877
-
1878
- disassociateTransitGatewayMulticastDomain(args: DisassociateTransitGatewayMulticastDomainCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTransitGatewayMulticastDomainCommandOutput>;
1879
- disassociateTransitGatewayMulticastDomain(args: DisassociateTransitGatewayMulticastDomainCommandInput, cb: (err: any, data?: DisassociateTransitGatewayMulticastDomainCommandOutput) => void): void;
1880
- disassociateTransitGatewayMulticastDomain(args: DisassociateTransitGatewayMulticastDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTransitGatewayMulticastDomainCommandOutput) => void): void;
1881
-
1882
- disassociateTransitGatewayRouteTable(args: DisassociateTransitGatewayRouteTableCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTransitGatewayRouteTableCommandOutput>;
1883
- disassociateTransitGatewayRouteTable(args: DisassociateTransitGatewayRouteTableCommandInput, cb: (err: any, data?: DisassociateTransitGatewayRouteTableCommandOutput) => void): void;
1884
- disassociateTransitGatewayRouteTable(args: DisassociateTransitGatewayRouteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTransitGatewayRouteTableCommandOutput) => void): void;
1885
-
1886
- disassociateTrunkInterface(args: DisassociateTrunkInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrunkInterfaceCommandOutput>;
1887
- disassociateTrunkInterface(args: DisassociateTrunkInterfaceCommandInput, cb: (err: any, data?: DisassociateTrunkInterfaceCommandOutput) => void): void;
1888
- disassociateTrunkInterface(args: DisassociateTrunkInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrunkInterfaceCommandOutput) => void): void;
1889
-
1890
- disassociateVpcCidrBlock(args: DisassociateVpcCidrBlockCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateVpcCidrBlockCommandOutput>;
1891
- disassociateVpcCidrBlock(args: DisassociateVpcCidrBlockCommandInput, cb: (err: any, data?: DisassociateVpcCidrBlockCommandOutput) => void): void;
1892
- disassociateVpcCidrBlock(args: DisassociateVpcCidrBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateVpcCidrBlockCommandOutput) => void): void;
1893
-
1894
- enableEbsEncryptionByDefault(args: EnableEbsEncryptionByDefaultCommandInput, options?: __HttpHandlerOptions): Promise<EnableEbsEncryptionByDefaultCommandOutput>;
1895
- enableEbsEncryptionByDefault(args: EnableEbsEncryptionByDefaultCommandInput, cb: (err: any, data?: EnableEbsEncryptionByDefaultCommandOutput) => void): void;
1896
- enableEbsEncryptionByDefault(args: EnableEbsEncryptionByDefaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableEbsEncryptionByDefaultCommandOutput) => void): void;
1897
-
1898
- enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, options?: __HttpHandlerOptions): Promise<EnableFastSnapshotRestoresCommandOutput>;
1899
- enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, cb: (err: any, data?: EnableFastSnapshotRestoresCommandOutput) => void): void;
1900
- enableFastSnapshotRestores(args: EnableFastSnapshotRestoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableFastSnapshotRestoresCommandOutput) => void): void;
1901
-
1902
- enableImageDeprecation(args: EnableImageDeprecationCommandInput, options?: __HttpHandlerOptions): Promise<EnableImageDeprecationCommandOutput>;
1903
- enableImageDeprecation(args: EnableImageDeprecationCommandInput, cb: (err: any, data?: EnableImageDeprecationCommandOutput) => void): void;
1904
- enableImageDeprecation(args: EnableImageDeprecationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableImageDeprecationCommandOutput) => void): void;
1905
-
1906
- enableIpamOrganizationAdminAccount(args: EnableIpamOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<EnableIpamOrganizationAdminAccountCommandOutput>;
1907
- enableIpamOrganizationAdminAccount(args: EnableIpamOrganizationAdminAccountCommandInput, cb: (err: any, data?: EnableIpamOrganizationAdminAccountCommandOutput) => void): void;
1908
- enableIpamOrganizationAdminAccount(args: EnableIpamOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableIpamOrganizationAdminAccountCommandOutput) => void): void;
1909
-
1910
- enableSerialConsoleAccess(args: EnableSerialConsoleAccessCommandInput, options?: __HttpHandlerOptions): Promise<EnableSerialConsoleAccessCommandOutput>;
1911
- enableSerialConsoleAccess(args: EnableSerialConsoleAccessCommandInput, cb: (err: any, data?: EnableSerialConsoleAccessCommandOutput) => void): void;
1912
- enableSerialConsoleAccess(args: EnableSerialConsoleAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableSerialConsoleAccessCommandOutput) => void): void;
1913
-
1914
- enableTransitGatewayRouteTablePropagation(args: EnableTransitGatewayRouteTablePropagationCommandInput, options?: __HttpHandlerOptions): Promise<EnableTransitGatewayRouteTablePropagationCommandOutput>;
1915
- enableTransitGatewayRouteTablePropagation(args: EnableTransitGatewayRouteTablePropagationCommandInput, cb: (err: any, data?: EnableTransitGatewayRouteTablePropagationCommandOutput) => void): void;
1916
- enableTransitGatewayRouteTablePropagation(args: EnableTransitGatewayRouteTablePropagationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableTransitGatewayRouteTablePropagationCommandOutput) => void): void;
1917
-
1918
- enableVgwRoutePropagation(args: EnableVgwRoutePropagationCommandInput, options?: __HttpHandlerOptions): Promise<EnableVgwRoutePropagationCommandOutput>;
1919
- enableVgwRoutePropagation(args: EnableVgwRoutePropagationCommandInput, cb: (err: any, data?: EnableVgwRoutePropagationCommandOutput) => void): void;
1920
- enableVgwRoutePropagation(args: EnableVgwRoutePropagationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableVgwRoutePropagationCommandOutput) => void): void;
1921
-
1922
- enableVolumeIO(args: EnableVolumeIOCommandInput, options?: __HttpHandlerOptions): Promise<EnableVolumeIOCommandOutput>;
1923
- enableVolumeIO(args: EnableVolumeIOCommandInput, cb: (err: any, data?: EnableVolumeIOCommandOutput) => void): void;
1924
- enableVolumeIO(args: EnableVolumeIOCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableVolumeIOCommandOutput) => void): void;
1925
-
1926
- enableVpcClassicLink(args: EnableVpcClassicLinkCommandInput, options?: __HttpHandlerOptions): Promise<EnableVpcClassicLinkCommandOutput>;
1927
- enableVpcClassicLink(args: EnableVpcClassicLinkCommandInput, cb: (err: any, data?: EnableVpcClassicLinkCommandOutput) => void): void;
1928
- enableVpcClassicLink(args: EnableVpcClassicLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableVpcClassicLinkCommandOutput) => void): void;
1929
-
1930
- enableVpcClassicLinkDnsSupport(args: EnableVpcClassicLinkDnsSupportCommandInput, options?: __HttpHandlerOptions): Promise<EnableVpcClassicLinkDnsSupportCommandOutput>;
1931
- enableVpcClassicLinkDnsSupport(args: EnableVpcClassicLinkDnsSupportCommandInput, cb: (err: any, data?: EnableVpcClassicLinkDnsSupportCommandOutput) => void): void;
1932
- enableVpcClassicLinkDnsSupport(args: EnableVpcClassicLinkDnsSupportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableVpcClassicLinkDnsSupportCommandOutput) => void): void;
1933
-
1934
- exportClientVpnClientCertificateRevocationList(args: ExportClientVpnClientCertificateRevocationListCommandInput, options?: __HttpHandlerOptions): Promise<ExportClientVpnClientCertificateRevocationListCommandOutput>;
1935
- exportClientVpnClientCertificateRevocationList(args: ExportClientVpnClientCertificateRevocationListCommandInput, cb: (err: any, data?: ExportClientVpnClientCertificateRevocationListCommandOutput) => void): void;
1936
- exportClientVpnClientCertificateRevocationList(args: ExportClientVpnClientCertificateRevocationListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportClientVpnClientCertificateRevocationListCommandOutput) => void): void;
1937
-
1938
- exportClientVpnClientConfiguration(args: ExportClientVpnClientConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ExportClientVpnClientConfigurationCommandOutput>;
1939
- exportClientVpnClientConfiguration(args: ExportClientVpnClientConfigurationCommandInput, cb: (err: any, data?: ExportClientVpnClientConfigurationCommandOutput) => void): void;
1940
- exportClientVpnClientConfiguration(args: ExportClientVpnClientConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportClientVpnClientConfigurationCommandOutput) => void): void;
1941
-
1942
- exportImage(args: ExportImageCommandInput, options?: __HttpHandlerOptions): Promise<ExportImageCommandOutput>;
1943
- exportImage(args: ExportImageCommandInput, cb: (err: any, data?: ExportImageCommandOutput) => void): void;
1944
- exportImage(args: ExportImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportImageCommandOutput) => void): void;
1945
-
1946
- exportTransitGatewayRoutes(args: ExportTransitGatewayRoutesCommandInput, options?: __HttpHandlerOptions): Promise<ExportTransitGatewayRoutesCommandOutput>;
1947
- exportTransitGatewayRoutes(args: ExportTransitGatewayRoutesCommandInput, cb: (err: any, data?: ExportTransitGatewayRoutesCommandOutput) => void): void;
1948
- exportTransitGatewayRoutes(args: ExportTransitGatewayRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportTransitGatewayRoutesCommandOutput) => void): void;
1949
-
1950
- getAssociatedEnclaveCertificateIamRoles(args: GetAssociatedEnclaveCertificateIamRolesCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedEnclaveCertificateIamRolesCommandOutput>;
1951
- getAssociatedEnclaveCertificateIamRoles(args: GetAssociatedEnclaveCertificateIamRolesCommandInput, cb: (err: any, data?: GetAssociatedEnclaveCertificateIamRolesCommandOutput) => void): void;
1952
- getAssociatedEnclaveCertificateIamRoles(args: GetAssociatedEnclaveCertificateIamRolesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedEnclaveCertificateIamRolesCommandOutput) => void): void;
1953
-
1954
- getAssociatedIpv6PoolCidrs(args: GetAssociatedIpv6PoolCidrsCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedIpv6PoolCidrsCommandOutput>;
1955
- getAssociatedIpv6PoolCidrs(args: GetAssociatedIpv6PoolCidrsCommandInput, cb: (err: any, data?: GetAssociatedIpv6PoolCidrsCommandOutput) => void): void;
1956
- getAssociatedIpv6PoolCidrs(args: GetAssociatedIpv6PoolCidrsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedIpv6PoolCidrsCommandOutput) => void): void;
1957
-
1958
- getCapacityReservationUsage(args: GetCapacityReservationUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetCapacityReservationUsageCommandOutput>;
1959
- getCapacityReservationUsage(args: GetCapacityReservationUsageCommandInput, cb: (err: any, data?: GetCapacityReservationUsageCommandOutput) => void): void;
1960
- getCapacityReservationUsage(args: GetCapacityReservationUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCapacityReservationUsageCommandOutput) => void): void;
1961
-
1962
- getCoipPoolUsage(args: GetCoipPoolUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetCoipPoolUsageCommandOutput>;
1963
- getCoipPoolUsage(args: GetCoipPoolUsageCommandInput, cb: (err: any, data?: GetCoipPoolUsageCommandOutput) => void): void;
1964
- getCoipPoolUsage(args: GetCoipPoolUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCoipPoolUsageCommandOutput) => void): void;
1965
-
1966
- getConsoleOutput(args: GetConsoleOutputCommandInput, options?: __HttpHandlerOptions): Promise<GetConsoleOutputCommandOutput>;
1967
- getConsoleOutput(args: GetConsoleOutputCommandInput, cb: (err: any, data?: GetConsoleOutputCommandOutput) => void): void;
1968
- getConsoleOutput(args: GetConsoleOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConsoleOutputCommandOutput) => void): void;
1969
-
1970
- getConsoleScreenshot(args: GetConsoleScreenshotCommandInput, options?: __HttpHandlerOptions): Promise<GetConsoleScreenshotCommandOutput>;
1971
- getConsoleScreenshot(args: GetConsoleScreenshotCommandInput, cb: (err: any, data?: GetConsoleScreenshotCommandOutput) => void): void;
1972
- getConsoleScreenshot(args: GetConsoleScreenshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConsoleScreenshotCommandOutput) => void): void;
1973
-
1974
- getDefaultCreditSpecification(args: GetDefaultCreditSpecificationCommandInput, options?: __HttpHandlerOptions): Promise<GetDefaultCreditSpecificationCommandOutput>;
1975
- getDefaultCreditSpecification(args: GetDefaultCreditSpecificationCommandInput, cb: (err: any, data?: GetDefaultCreditSpecificationCommandOutput) => void): void;
1976
- getDefaultCreditSpecification(args: GetDefaultCreditSpecificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDefaultCreditSpecificationCommandOutput) => void): void;
1977
-
1978
- getEbsDefaultKmsKeyId(args: GetEbsDefaultKmsKeyIdCommandInput, options?: __HttpHandlerOptions): Promise<GetEbsDefaultKmsKeyIdCommandOutput>;
1979
- getEbsDefaultKmsKeyId(args: GetEbsDefaultKmsKeyIdCommandInput, cb: (err: any, data?: GetEbsDefaultKmsKeyIdCommandOutput) => void): void;
1980
- getEbsDefaultKmsKeyId(args: GetEbsDefaultKmsKeyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEbsDefaultKmsKeyIdCommandOutput) => void): void;
1981
-
1982
- getEbsEncryptionByDefault(args: GetEbsEncryptionByDefaultCommandInput, options?: __HttpHandlerOptions): Promise<GetEbsEncryptionByDefaultCommandOutput>;
1983
- getEbsEncryptionByDefault(args: GetEbsEncryptionByDefaultCommandInput, cb: (err: any, data?: GetEbsEncryptionByDefaultCommandOutput) => void): void;
1984
- getEbsEncryptionByDefault(args: GetEbsEncryptionByDefaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEbsEncryptionByDefaultCommandOutput) => void): void;
1985
-
1986
- getFlowLogsIntegrationTemplate(args: GetFlowLogsIntegrationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetFlowLogsIntegrationTemplateCommandOutput>;
1987
- getFlowLogsIntegrationTemplate(args: GetFlowLogsIntegrationTemplateCommandInput, cb: (err: any, data?: GetFlowLogsIntegrationTemplateCommandOutput) => void): void;
1988
- getFlowLogsIntegrationTemplate(args: GetFlowLogsIntegrationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowLogsIntegrationTemplateCommandOutput) => void): void;
1989
-
1990
- getGroupsForCapacityReservation(args: GetGroupsForCapacityReservationCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupsForCapacityReservationCommandOutput>;
1991
- getGroupsForCapacityReservation(args: GetGroupsForCapacityReservationCommandInput, cb: (err: any, data?: GetGroupsForCapacityReservationCommandOutput) => void): void;
1992
- getGroupsForCapacityReservation(args: GetGroupsForCapacityReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupsForCapacityReservationCommandOutput) => void): void;
1993
-
1994
- getHostReservationPurchasePreview(args: GetHostReservationPurchasePreviewCommandInput, options?: __HttpHandlerOptions): Promise<GetHostReservationPurchasePreviewCommandOutput>;
1995
- getHostReservationPurchasePreview(args: GetHostReservationPurchasePreviewCommandInput, cb: (err: any, data?: GetHostReservationPurchasePreviewCommandOutput) => void): void;
1996
- getHostReservationPurchasePreview(args: GetHostReservationPurchasePreviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostReservationPurchasePreviewCommandOutput) => void): void;
1997
-
1998
- getInstanceTypesFromInstanceRequirements(args: GetInstanceTypesFromInstanceRequirementsCommandInput, options?: __HttpHandlerOptions): Promise<GetInstanceTypesFromInstanceRequirementsCommandOutput>;
1999
- getInstanceTypesFromInstanceRequirements(args: GetInstanceTypesFromInstanceRequirementsCommandInput, cb: (err: any, data?: GetInstanceTypesFromInstanceRequirementsCommandOutput) => void): void;
2000
- getInstanceTypesFromInstanceRequirements(args: GetInstanceTypesFromInstanceRequirementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInstanceTypesFromInstanceRequirementsCommandOutput) => void): void;
2001
-
2002
- getIpamAddressHistory(args: GetIpamAddressHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetIpamAddressHistoryCommandOutput>;
2003
- getIpamAddressHistory(args: GetIpamAddressHistoryCommandInput, cb: (err: any, data?: GetIpamAddressHistoryCommandOutput) => void): void;
2004
- getIpamAddressHistory(args: GetIpamAddressHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIpamAddressHistoryCommandOutput) => void): void;
2005
-
2006
- getIpamPoolAllocations(args: GetIpamPoolAllocationsCommandInput, options?: __HttpHandlerOptions): Promise<GetIpamPoolAllocationsCommandOutput>;
2007
- getIpamPoolAllocations(args: GetIpamPoolAllocationsCommandInput, cb: (err: any, data?: GetIpamPoolAllocationsCommandOutput) => void): void;
2008
- getIpamPoolAllocations(args: GetIpamPoolAllocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIpamPoolAllocationsCommandOutput) => void): void;
2009
-
2010
- getIpamPoolCidrs(args: GetIpamPoolCidrsCommandInput, options?: __HttpHandlerOptions): Promise<GetIpamPoolCidrsCommandOutput>;
2011
- getIpamPoolCidrs(args: GetIpamPoolCidrsCommandInput, cb: (err: any, data?: GetIpamPoolCidrsCommandOutput) => void): void;
2012
- getIpamPoolCidrs(args: GetIpamPoolCidrsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIpamPoolCidrsCommandOutput) => void): void;
2013
-
2014
- getIpamResourceCidrs(args: GetIpamResourceCidrsCommandInput, options?: __HttpHandlerOptions): Promise<GetIpamResourceCidrsCommandOutput>;
2015
- getIpamResourceCidrs(args: GetIpamResourceCidrsCommandInput, cb: (err: any, data?: GetIpamResourceCidrsCommandOutput) => void): void;
2016
- getIpamResourceCidrs(args: GetIpamResourceCidrsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIpamResourceCidrsCommandOutput) => void): void;
2017
-
2018
- getLaunchTemplateData(args: GetLaunchTemplateDataCommandInput, options?: __HttpHandlerOptions): Promise<GetLaunchTemplateDataCommandOutput>;
2019
- getLaunchTemplateData(args: GetLaunchTemplateDataCommandInput, cb: (err: any, data?: GetLaunchTemplateDataCommandOutput) => void): void;
2020
- getLaunchTemplateData(args: GetLaunchTemplateDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLaunchTemplateDataCommandOutput) => void): void;
2021
-
2022
- getManagedPrefixListAssociations(args: GetManagedPrefixListAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedPrefixListAssociationsCommandOutput>;
2023
- getManagedPrefixListAssociations(args: GetManagedPrefixListAssociationsCommandInput, cb: (err: any, data?: GetManagedPrefixListAssociationsCommandOutput) => void): void;
2024
- getManagedPrefixListAssociations(args: GetManagedPrefixListAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedPrefixListAssociationsCommandOutput) => void): void;
2025
-
2026
- getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedPrefixListEntriesCommandOutput>;
2027
- getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
2028
- getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
2029
-
2030
- getNetworkInsightsAccessScopeAnalysisFindings(args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput>;
2031
- getNetworkInsightsAccessScopeAnalysisFindings(args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, cb: (err: any, data?: GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput) => void): void;
2032
- getNetworkInsightsAccessScopeAnalysisFindings(args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput) => void): void;
2033
-
2034
- getNetworkInsightsAccessScopeContent(args: GetNetworkInsightsAccessScopeContentCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkInsightsAccessScopeContentCommandOutput>;
2035
- getNetworkInsightsAccessScopeContent(args: GetNetworkInsightsAccessScopeContentCommandInput, cb: (err: any, data?: GetNetworkInsightsAccessScopeContentCommandOutput) => void): void;
2036
- getNetworkInsightsAccessScopeContent(args: GetNetworkInsightsAccessScopeContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkInsightsAccessScopeContentCommandOutput) => void): void;
2037
-
2038
- getPasswordData(args: GetPasswordDataCommandInput, options?: __HttpHandlerOptions): Promise<GetPasswordDataCommandOutput>;
2039
- getPasswordData(args: GetPasswordDataCommandInput, cb: (err: any, data?: GetPasswordDataCommandOutput) => void): void;
2040
- getPasswordData(args: GetPasswordDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPasswordDataCommandOutput) => void): void;
2041
-
2042
- getReservedInstancesExchangeQuote(args: GetReservedInstancesExchangeQuoteCommandInput, options?: __HttpHandlerOptions): Promise<GetReservedInstancesExchangeQuoteCommandOutput>;
2043
- getReservedInstancesExchangeQuote(args: GetReservedInstancesExchangeQuoteCommandInput, cb: (err: any, data?: GetReservedInstancesExchangeQuoteCommandOutput) => void): void;
2044
- getReservedInstancesExchangeQuote(args: GetReservedInstancesExchangeQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservedInstancesExchangeQuoteCommandOutput) => void): void;
2045
-
2046
- getSerialConsoleAccessStatus(args: GetSerialConsoleAccessStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetSerialConsoleAccessStatusCommandOutput>;
2047
- getSerialConsoleAccessStatus(args: GetSerialConsoleAccessStatusCommandInput, cb: (err: any, data?: GetSerialConsoleAccessStatusCommandOutput) => void): void;
2048
- getSerialConsoleAccessStatus(args: GetSerialConsoleAccessStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSerialConsoleAccessStatusCommandOutput) => void): void;
2049
-
2050
- getSpotPlacementScores(args: GetSpotPlacementScoresCommandInput, options?: __HttpHandlerOptions): Promise<GetSpotPlacementScoresCommandOutput>;
2051
- getSpotPlacementScores(args: GetSpotPlacementScoresCommandInput, cb: (err: any, data?: GetSpotPlacementScoresCommandOutput) => void): void;
2052
- getSpotPlacementScores(args: GetSpotPlacementScoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSpotPlacementScoresCommandOutput) => void): void;
2053
-
2054
- getSubnetCidrReservations(args: GetSubnetCidrReservationsCommandInput, options?: __HttpHandlerOptions): Promise<GetSubnetCidrReservationsCommandOutput>;
2055
- getSubnetCidrReservations(args: GetSubnetCidrReservationsCommandInput, cb: (err: any, data?: GetSubnetCidrReservationsCommandOutput) => void): void;
2056
- getSubnetCidrReservations(args: GetSubnetCidrReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSubnetCidrReservationsCommandOutput) => void): void;
2057
-
2058
- getTransitGatewayAttachmentPropagations(args: GetTransitGatewayAttachmentPropagationsCommandInput, options?: __HttpHandlerOptions): Promise<GetTransitGatewayAttachmentPropagationsCommandOutput>;
2059
- getTransitGatewayAttachmentPropagations(args: GetTransitGatewayAttachmentPropagationsCommandInput, cb: (err: any, data?: GetTransitGatewayAttachmentPropagationsCommandOutput) => void): void;
2060
- getTransitGatewayAttachmentPropagations(args: GetTransitGatewayAttachmentPropagationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTransitGatewayAttachmentPropagationsCommandOutput) => void): void;
2061
-
2062
- getTransitGatewayMulticastDomainAssociations(args: GetTransitGatewayMulticastDomainAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<GetTransitGatewayMulticastDomainAssociationsCommandOutput>;
2063
- getTransitGatewayMulticastDomainAssociations(args: GetTransitGatewayMulticastDomainAssociationsCommandInput, cb: (err: any, data?: GetTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
2064
- getTransitGatewayMulticastDomainAssociations(args: GetTransitGatewayMulticastDomainAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
2065
-
2066
- getTransitGatewayPrefixListReferences(args: GetTransitGatewayPrefixListReferencesCommandInput, options?: __HttpHandlerOptions): Promise<GetTransitGatewayPrefixListReferencesCommandOutput>;
2067
- getTransitGatewayPrefixListReferences(args: GetTransitGatewayPrefixListReferencesCommandInput, cb: (err: any, data?: GetTransitGatewayPrefixListReferencesCommandOutput) => void): void;
2068
- getTransitGatewayPrefixListReferences(args: GetTransitGatewayPrefixListReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTransitGatewayPrefixListReferencesCommandOutput) => void): void;
2069
-
2070
- getTransitGatewayRouteTableAssociations(args: GetTransitGatewayRouteTableAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<GetTransitGatewayRouteTableAssociationsCommandOutput>;
2071
- getTransitGatewayRouteTableAssociations(args: GetTransitGatewayRouteTableAssociationsCommandInput, cb: (err: any, data?: GetTransitGatewayRouteTableAssociationsCommandOutput) => void): void;
2072
- getTransitGatewayRouteTableAssociations(args: GetTransitGatewayRouteTableAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTransitGatewayRouteTableAssociationsCommandOutput) => void): void;
2073
-
2074
- getTransitGatewayRouteTablePropagations(args: GetTransitGatewayRouteTablePropagationsCommandInput, options?: __HttpHandlerOptions): Promise<GetTransitGatewayRouteTablePropagationsCommandOutput>;
2075
- getTransitGatewayRouteTablePropagations(args: GetTransitGatewayRouteTablePropagationsCommandInput, cb: (err: any, data?: GetTransitGatewayRouteTablePropagationsCommandOutput) => void): void;
2076
- getTransitGatewayRouteTablePropagations(args: GetTransitGatewayRouteTablePropagationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTransitGatewayRouteTablePropagationsCommandOutput) => void): void;
2077
-
2078
- getVpnConnectionDeviceSampleConfiguration(args: GetVpnConnectionDeviceSampleConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVpnConnectionDeviceSampleConfigurationCommandOutput>;
2079
- getVpnConnectionDeviceSampleConfiguration(args: GetVpnConnectionDeviceSampleConfigurationCommandInput, cb: (err: any, data?: GetVpnConnectionDeviceSampleConfigurationCommandOutput) => void): void;
2080
- getVpnConnectionDeviceSampleConfiguration(args: GetVpnConnectionDeviceSampleConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpnConnectionDeviceSampleConfigurationCommandOutput) => void): void;
2081
-
2082
- getVpnConnectionDeviceTypes(args: GetVpnConnectionDeviceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetVpnConnectionDeviceTypesCommandOutput>;
2083
- getVpnConnectionDeviceTypes(args: GetVpnConnectionDeviceTypesCommandInput, cb: (err: any, data?: GetVpnConnectionDeviceTypesCommandOutput) => void): void;
2084
- getVpnConnectionDeviceTypes(args: GetVpnConnectionDeviceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpnConnectionDeviceTypesCommandOutput) => void): void;
2085
-
2086
- importClientVpnClientCertificateRevocationList(args: ImportClientVpnClientCertificateRevocationListCommandInput, options?: __HttpHandlerOptions): Promise<ImportClientVpnClientCertificateRevocationListCommandOutput>;
2087
- importClientVpnClientCertificateRevocationList(args: ImportClientVpnClientCertificateRevocationListCommandInput, cb: (err: any, data?: ImportClientVpnClientCertificateRevocationListCommandOutput) => void): void;
2088
- importClientVpnClientCertificateRevocationList(args: ImportClientVpnClientCertificateRevocationListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportClientVpnClientCertificateRevocationListCommandOutput) => void): void;
2089
-
2090
- importImage(args: ImportImageCommandInput, options?: __HttpHandlerOptions): Promise<ImportImageCommandOutput>;
2091
- importImage(args: ImportImageCommandInput, cb: (err: any, data?: ImportImageCommandOutput) => void): void;
2092
- importImage(args: ImportImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportImageCommandOutput) => void): void;
2093
-
2094
- importInstance(args: ImportInstanceCommandInput, options?: __HttpHandlerOptions): Promise<ImportInstanceCommandOutput>;
2095
- importInstance(args: ImportInstanceCommandInput, cb: (err: any, data?: ImportInstanceCommandOutput) => void): void;
2096
- importInstance(args: ImportInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportInstanceCommandOutput) => void): void;
2097
-
2098
- importKeyPair(args: ImportKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<ImportKeyPairCommandOutput>;
2099
- importKeyPair(args: ImportKeyPairCommandInput, cb: (err: any, data?: ImportKeyPairCommandOutput) => void): void;
2100
- importKeyPair(args: ImportKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportKeyPairCommandOutput) => void): void;
2101
-
2102
- importSnapshot(args: ImportSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<ImportSnapshotCommandOutput>;
2103
- importSnapshot(args: ImportSnapshotCommandInput, cb: (err: any, data?: ImportSnapshotCommandOutput) => void): void;
2104
- importSnapshot(args: ImportSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportSnapshotCommandOutput) => void): void;
2105
-
2106
- importVolume(args: ImportVolumeCommandInput, options?: __HttpHandlerOptions): Promise<ImportVolumeCommandOutput>;
2107
- importVolume(args: ImportVolumeCommandInput, cb: (err: any, data?: ImportVolumeCommandOutput) => void): void;
2108
- importVolume(args: ImportVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportVolumeCommandOutput) => void): void;
2109
-
2110
- listSnapshotsInRecycleBin(args: ListSnapshotsInRecycleBinCommandInput, options?: __HttpHandlerOptions): Promise<ListSnapshotsInRecycleBinCommandOutput>;
2111
- listSnapshotsInRecycleBin(args: ListSnapshotsInRecycleBinCommandInput, cb: (err: any, data?: ListSnapshotsInRecycleBinCommandOutput) => void): void;
2112
- listSnapshotsInRecycleBin(args: ListSnapshotsInRecycleBinCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSnapshotsInRecycleBinCommandOutput) => void): void;
2113
-
2114
- modifyAddressAttribute(args: ModifyAddressAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyAddressAttributeCommandOutput>;
2115
- modifyAddressAttribute(args: ModifyAddressAttributeCommandInput, cb: (err: any, data?: ModifyAddressAttributeCommandOutput) => void): void;
2116
- modifyAddressAttribute(args: ModifyAddressAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyAddressAttributeCommandOutput) => void): void;
2117
-
2118
- modifyAvailabilityZoneGroup(args: ModifyAvailabilityZoneGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyAvailabilityZoneGroupCommandOutput>;
2119
- modifyAvailabilityZoneGroup(args: ModifyAvailabilityZoneGroupCommandInput, cb: (err: any, data?: ModifyAvailabilityZoneGroupCommandOutput) => void): void;
2120
- modifyAvailabilityZoneGroup(args: ModifyAvailabilityZoneGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyAvailabilityZoneGroupCommandOutput) => void): void;
2121
-
2122
- modifyCapacityReservation(args: ModifyCapacityReservationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyCapacityReservationCommandOutput>;
2123
- modifyCapacityReservation(args: ModifyCapacityReservationCommandInput, cb: (err: any, data?: ModifyCapacityReservationCommandOutput) => void): void;
2124
- modifyCapacityReservation(args: ModifyCapacityReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyCapacityReservationCommandOutput) => void): void;
2125
-
2126
- modifyCapacityReservationFleet(args: ModifyCapacityReservationFleetCommandInput, options?: __HttpHandlerOptions): Promise<ModifyCapacityReservationFleetCommandOutput>;
2127
- modifyCapacityReservationFleet(args: ModifyCapacityReservationFleetCommandInput, cb: (err: any, data?: ModifyCapacityReservationFleetCommandOutput) => void): void;
2128
- modifyCapacityReservationFleet(args: ModifyCapacityReservationFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyCapacityReservationFleetCommandOutput) => void): void;
2129
-
2130
- modifyClientVpnEndpoint(args: ModifyClientVpnEndpointCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClientVpnEndpointCommandOutput>;
2131
- modifyClientVpnEndpoint(args: ModifyClientVpnEndpointCommandInput, cb: (err: any, data?: ModifyClientVpnEndpointCommandOutput) => void): void;
2132
- modifyClientVpnEndpoint(args: ModifyClientVpnEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClientVpnEndpointCommandOutput) => void): void;
2133
-
2134
- modifyDefaultCreditSpecification(args: ModifyDefaultCreditSpecificationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDefaultCreditSpecificationCommandOutput>;
2135
- modifyDefaultCreditSpecification(args: ModifyDefaultCreditSpecificationCommandInput, cb: (err: any, data?: ModifyDefaultCreditSpecificationCommandOutput) => void): void;
2136
- modifyDefaultCreditSpecification(args: ModifyDefaultCreditSpecificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyDefaultCreditSpecificationCommandOutput) => void): void;
2137
-
2138
- modifyEbsDefaultKmsKeyId(args: ModifyEbsDefaultKmsKeyIdCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEbsDefaultKmsKeyIdCommandOutput>;
2139
- modifyEbsDefaultKmsKeyId(args: ModifyEbsDefaultKmsKeyIdCommandInput, cb: (err: any, data?: ModifyEbsDefaultKmsKeyIdCommandOutput) => void): void;
2140
- modifyEbsDefaultKmsKeyId(args: ModifyEbsDefaultKmsKeyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEbsDefaultKmsKeyIdCommandOutput) => void): void;
2141
-
2142
- modifyFleet(args: ModifyFleetCommandInput, options?: __HttpHandlerOptions): Promise<ModifyFleetCommandOutput>;
2143
- modifyFleet(args: ModifyFleetCommandInput, cb: (err: any, data?: ModifyFleetCommandOutput) => void): void;
2144
- modifyFleet(args: ModifyFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyFleetCommandOutput) => void): void;
2145
-
2146
- modifyFpgaImageAttribute(args: ModifyFpgaImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyFpgaImageAttributeCommandOutput>;
2147
- modifyFpgaImageAttribute(args: ModifyFpgaImageAttributeCommandInput, cb: (err: any, data?: ModifyFpgaImageAttributeCommandOutput) => void): void;
2148
- modifyFpgaImageAttribute(args: ModifyFpgaImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyFpgaImageAttributeCommandOutput) => void): void;
2149
-
2150
- modifyHosts(args: ModifyHostsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyHostsCommandOutput>;
2151
- modifyHosts(args: ModifyHostsCommandInput, cb: (err: any, data?: ModifyHostsCommandOutput) => void): void;
2152
- modifyHosts(args: ModifyHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyHostsCommandOutput) => void): void;
2153
-
2154
- modifyIdentityIdFormat(args: ModifyIdentityIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIdentityIdFormatCommandOutput>;
2155
- modifyIdentityIdFormat(args: ModifyIdentityIdFormatCommandInput, cb: (err: any, data?: ModifyIdentityIdFormatCommandOutput) => void): void;
2156
- modifyIdentityIdFormat(args: ModifyIdentityIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIdentityIdFormatCommandOutput) => void): void;
2157
-
2158
- modifyIdFormat(args: ModifyIdFormatCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIdFormatCommandOutput>;
2159
- modifyIdFormat(args: ModifyIdFormatCommandInput, cb: (err: any, data?: ModifyIdFormatCommandOutput) => void): void;
2160
- modifyIdFormat(args: ModifyIdFormatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIdFormatCommandOutput) => void): void;
2161
-
2162
- modifyImageAttribute(args: ModifyImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyImageAttributeCommandOutput>;
2163
- modifyImageAttribute(args: ModifyImageAttributeCommandInput, cb: (err: any, data?: ModifyImageAttributeCommandOutput) => void): void;
2164
- modifyImageAttribute(args: ModifyImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyImageAttributeCommandOutput) => void): void;
2165
-
2166
- modifyInstanceAttribute(args: ModifyInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceAttributeCommandOutput>;
2167
- modifyInstanceAttribute(args: ModifyInstanceAttributeCommandInput, cb: (err: any, data?: ModifyInstanceAttributeCommandOutput) => void): void;
2168
- modifyInstanceAttribute(args: ModifyInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceAttributeCommandOutput) => void): void;
2169
-
2170
- modifyInstanceCapacityReservationAttributes(args: ModifyInstanceCapacityReservationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceCapacityReservationAttributesCommandOutput>;
2171
- modifyInstanceCapacityReservationAttributes(args: ModifyInstanceCapacityReservationAttributesCommandInput, cb: (err: any, data?: ModifyInstanceCapacityReservationAttributesCommandOutput) => void): void;
2172
- modifyInstanceCapacityReservationAttributes(args: ModifyInstanceCapacityReservationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceCapacityReservationAttributesCommandOutput) => void): void;
2173
-
2174
- modifyInstanceCreditSpecification(args: ModifyInstanceCreditSpecificationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceCreditSpecificationCommandOutput>;
2175
- modifyInstanceCreditSpecification(args: ModifyInstanceCreditSpecificationCommandInput, cb: (err: any, data?: ModifyInstanceCreditSpecificationCommandOutput) => void): void;
2176
- modifyInstanceCreditSpecification(args: ModifyInstanceCreditSpecificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceCreditSpecificationCommandOutput) => void): void;
2177
-
2178
- modifyInstanceEventStartTime(args: ModifyInstanceEventStartTimeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceEventStartTimeCommandOutput>;
2179
- modifyInstanceEventStartTime(args: ModifyInstanceEventStartTimeCommandInput, cb: (err: any, data?: ModifyInstanceEventStartTimeCommandOutput) => void): void;
2180
- modifyInstanceEventStartTime(args: ModifyInstanceEventStartTimeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceEventStartTimeCommandOutput) => void): void;
2181
-
2182
- modifyInstanceEventWindow(args: ModifyInstanceEventWindowCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceEventWindowCommandOutput>;
2183
- modifyInstanceEventWindow(args: ModifyInstanceEventWindowCommandInput, cb: (err: any, data?: ModifyInstanceEventWindowCommandOutput) => void): void;
2184
- modifyInstanceEventWindow(args: ModifyInstanceEventWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceEventWindowCommandOutput) => void): void;
2185
-
2186
- modifyInstanceMetadataOptions(args: ModifyInstanceMetadataOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstanceMetadataOptionsCommandOutput>;
2187
- modifyInstanceMetadataOptions(args: ModifyInstanceMetadataOptionsCommandInput, cb: (err: any, data?: ModifyInstanceMetadataOptionsCommandOutput) => void): void;
2188
- modifyInstanceMetadataOptions(args: ModifyInstanceMetadataOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstanceMetadataOptionsCommandOutput) => void): void;
2189
-
2190
- modifyInstancePlacement(args: ModifyInstancePlacementCommandInput, options?: __HttpHandlerOptions): Promise<ModifyInstancePlacementCommandOutput>;
2191
- modifyInstancePlacement(args: ModifyInstancePlacementCommandInput, cb: (err: any, data?: ModifyInstancePlacementCommandOutput) => void): void;
2192
- modifyInstancePlacement(args: ModifyInstancePlacementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyInstancePlacementCommandOutput) => void): void;
2193
-
2194
- modifyIpam(args: ModifyIpamCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamCommandOutput>;
2195
- modifyIpam(args: ModifyIpamCommandInput, cb: (err: any, data?: ModifyIpamCommandOutput) => void): void;
2196
- modifyIpam(args: ModifyIpamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamCommandOutput) => void): void;
2197
-
2198
- modifyIpamPool(args: ModifyIpamPoolCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamPoolCommandOutput>;
2199
- modifyIpamPool(args: ModifyIpamPoolCommandInput, cb: (err: any, data?: ModifyIpamPoolCommandOutput) => void): void;
2200
- modifyIpamPool(args: ModifyIpamPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamPoolCommandOutput) => void): void;
2201
-
2202
- modifyIpamResourceCidr(args: ModifyIpamResourceCidrCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamResourceCidrCommandOutput>;
2203
- modifyIpamResourceCidr(args: ModifyIpamResourceCidrCommandInput, cb: (err: any, data?: ModifyIpamResourceCidrCommandOutput) => void): void;
2204
- modifyIpamResourceCidr(args: ModifyIpamResourceCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamResourceCidrCommandOutput) => void): void;
2205
-
2206
- modifyIpamScope(args: ModifyIpamScopeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamScopeCommandOutput>;
2207
- modifyIpamScope(args: ModifyIpamScopeCommandInput, cb: (err: any, data?: ModifyIpamScopeCommandOutput) => void): void;
2208
- modifyIpamScope(args: ModifyIpamScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamScopeCommandOutput) => void): void;
2209
-
2210
- modifyLaunchTemplate(args: ModifyLaunchTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ModifyLaunchTemplateCommandOutput>;
2211
- modifyLaunchTemplate(args: ModifyLaunchTemplateCommandInput, cb: (err: any, data?: ModifyLaunchTemplateCommandOutput) => void): void;
2212
- modifyLaunchTemplate(args: ModifyLaunchTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLaunchTemplateCommandOutput) => void): void;
2213
-
2214
- modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options?: __HttpHandlerOptions): Promise<ModifyManagedPrefixListCommandOutput>;
2215
- modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
2216
- modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
2217
-
2218
- modifyNetworkInterfaceAttribute(args: ModifyNetworkInterfaceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyNetworkInterfaceAttributeCommandOutput>;
2219
- modifyNetworkInterfaceAttribute(args: ModifyNetworkInterfaceAttributeCommandInput, cb: (err: any, data?: ModifyNetworkInterfaceAttributeCommandOutput) => void): void;
2220
- modifyNetworkInterfaceAttribute(args: ModifyNetworkInterfaceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyNetworkInterfaceAttributeCommandOutput) => void): void;
2221
-
2222
- modifyPrivateDnsNameOptions(args: ModifyPrivateDnsNameOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyPrivateDnsNameOptionsCommandOutput>;
2223
- modifyPrivateDnsNameOptions(args: ModifyPrivateDnsNameOptionsCommandInput, cb: (err: any, data?: ModifyPrivateDnsNameOptionsCommandOutput) => void): void;
2224
- modifyPrivateDnsNameOptions(args: ModifyPrivateDnsNameOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyPrivateDnsNameOptionsCommandOutput) => void): void;
2225
-
2226
- modifyReservedInstances(args: ModifyReservedInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyReservedInstancesCommandOutput>;
2227
- modifyReservedInstances(args: ModifyReservedInstancesCommandInput, cb: (err: any, data?: ModifyReservedInstancesCommandOutput) => void): void;
2228
- modifyReservedInstances(args: ModifyReservedInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyReservedInstancesCommandOutput) => void): void;
2229
-
2230
- modifySecurityGroupRules(args: ModifySecurityGroupRulesCommandInput, options?: __HttpHandlerOptions): Promise<ModifySecurityGroupRulesCommandOutput>;
2231
- modifySecurityGroupRules(args: ModifySecurityGroupRulesCommandInput, cb: (err: any, data?: ModifySecurityGroupRulesCommandOutput) => void): void;
2232
- modifySecurityGroupRules(args: ModifySecurityGroupRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySecurityGroupRulesCommandOutput) => void): void;
2233
-
2234
- modifySnapshotAttribute(args: ModifySnapshotAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifySnapshotAttributeCommandOutput>;
2235
- modifySnapshotAttribute(args: ModifySnapshotAttributeCommandInput, cb: (err: any, data?: ModifySnapshotAttributeCommandOutput) => void): void;
2236
- modifySnapshotAttribute(args: ModifySnapshotAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySnapshotAttributeCommandOutput) => void): void;
2237
-
2238
- modifySnapshotTier(args: ModifySnapshotTierCommandInput, options?: __HttpHandlerOptions): Promise<ModifySnapshotTierCommandOutput>;
2239
- modifySnapshotTier(args: ModifySnapshotTierCommandInput, cb: (err: any, data?: ModifySnapshotTierCommandOutput) => void): void;
2240
- modifySnapshotTier(args: ModifySnapshotTierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySnapshotTierCommandOutput) => void): void;
2241
-
2242
- modifySpotFleetRequest(args: ModifySpotFleetRequestCommandInput, options?: __HttpHandlerOptions): Promise<ModifySpotFleetRequestCommandOutput>;
2243
- modifySpotFleetRequest(args: ModifySpotFleetRequestCommandInput, cb: (err: any, data?: ModifySpotFleetRequestCommandOutput) => void): void;
2244
- modifySpotFleetRequest(args: ModifySpotFleetRequestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySpotFleetRequestCommandOutput) => void): void;
2245
-
2246
- modifySubnetAttribute(args: ModifySubnetAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifySubnetAttributeCommandOutput>;
2247
- modifySubnetAttribute(args: ModifySubnetAttributeCommandInput, cb: (err: any, data?: ModifySubnetAttributeCommandOutput) => void): void;
2248
- modifySubnetAttribute(args: ModifySubnetAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySubnetAttributeCommandOutput) => void): void;
2249
-
2250
- modifyTrafficMirrorFilterNetworkServices(args: ModifyTrafficMirrorFilterNetworkServicesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTrafficMirrorFilterNetworkServicesCommandOutput>;
2251
- modifyTrafficMirrorFilterNetworkServices(args: ModifyTrafficMirrorFilterNetworkServicesCommandInput, cb: (err: any, data?: ModifyTrafficMirrorFilterNetworkServicesCommandOutput) => void): void;
2252
- modifyTrafficMirrorFilterNetworkServices(args: ModifyTrafficMirrorFilterNetworkServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTrafficMirrorFilterNetworkServicesCommandOutput) => void): void;
2253
-
2254
- modifyTrafficMirrorFilterRule(args: ModifyTrafficMirrorFilterRuleCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTrafficMirrorFilterRuleCommandOutput>;
2255
- modifyTrafficMirrorFilterRule(args: ModifyTrafficMirrorFilterRuleCommandInput, cb: (err: any, data?: ModifyTrafficMirrorFilterRuleCommandOutput) => void): void;
2256
- modifyTrafficMirrorFilterRule(args: ModifyTrafficMirrorFilterRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTrafficMirrorFilterRuleCommandOutput) => void): void;
2257
-
2258
- modifyTrafficMirrorSession(args: ModifyTrafficMirrorSessionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTrafficMirrorSessionCommandOutput>;
2259
- modifyTrafficMirrorSession(args: ModifyTrafficMirrorSessionCommandInput, cb: (err: any, data?: ModifyTrafficMirrorSessionCommandOutput) => void): void;
2260
- modifyTrafficMirrorSession(args: ModifyTrafficMirrorSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTrafficMirrorSessionCommandOutput) => void): void;
2261
-
2262
- modifyTransitGateway(args: ModifyTransitGatewayCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTransitGatewayCommandOutput>;
2263
- modifyTransitGateway(args: ModifyTransitGatewayCommandInput, cb: (err: any, data?: ModifyTransitGatewayCommandOutput) => void): void;
2264
- modifyTransitGateway(args: ModifyTransitGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTransitGatewayCommandOutput) => void): void;
2265
-
2266
- modifyTransitGatewayPrefixListReference(args: ModifyTransitGatewayPrefixListReferenceCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTransitGatewayPrefixListReferenceCommandOutput>;
2267
- modifyTransitGatewayPrefixListReference(args: ModifyTransitGatewayPrefixListReferenceCommandInput, cb: (err: any, data?: ModifyTransitGatewayPrefixListReferenceCommandOutput) => void): void;
2268
- modifyTransitGatewayPrefixListReference(args: ModifyTransitGatewayPrefixListReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTransitGatewayPrefixListReferenceCommandOutput) => void): void;
2269
-
2270
- modifyTransitGatewayVpcAttachment(args: ModifyTransitGatewayVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTransitGatewayVpcAttachmentCommandOutput>;
2271
- modifyTransitGatewayVpcAttachment(args: ModifyTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: ModifyTransitGatewayVpcAttachmentCommandOutput) => void): void;
2272
- modifyTransitGatewayVpcAttachment(args: ModifyTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTransitGatewayVpcAttachmentCommandOutput) => void): void;
2273
-
2274
- modifyVolume(args: ModifyVolumeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVolumeCommandOutput>;
2275
- modifyVolume(args: ModifyVolumeCommandInput, cb: (err: any, data?: ModifyVolumeCommandOutput) => void): void;
2276
- modifyVolume(args: ModifyVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVolumeCommandOutput) => void): void;
2277
-
2278
- modifyVolumeAttribute(args: ModifyVolumeAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVolumeAttributeCommandOutput>;
2279
- modifyVolumeAttribute(args: ModifyVolumeAttributeCommandInput, cb: (err: any, data?: ModifyVolumeAttributeCommandOutput) => void): void;
2280
- modifyVolumeAttribute(args: ModifyVolumeAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVolumeAttributeCommandOutput) => void): void;
2281
-
2282
- modifyVpcAttribute(args: ModifyVpcAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcAttributeCommandOutput>;
2283
- modifyVpcAttribute(args: ModifyVpcAttributeCommandInput, cb: (err: any, data?: ModifyVpcAttributeCommandOutput) => void): void;
2284
- modifyVpcAttribute(args: ModifyVpcAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcAttributeCommandOutput) => void): void;
2285
-
2286
- modifyVpcEndpoint(args: ModifyVpcEndpointCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointCommandOutput>;
2287
- modifyVpcEndpoint(args: ModifyVpcEndpointCommandInput, cb: (err: any, data?: ModifyVpcEndpointCommandOutput) => void): void;
2288
- modifyVpcEndpoint(args: ModifyVpcEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointCommandOutput) => void): void;
2289
-
2290
- modifyVpcEndpointConnectionNotification(args: ModifyVpcEndpointConnectionNotificationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointConnectionNotificationCommandOutput>;
2291
- modifyVpcEndpointConnectionNotification(args: ModifyVpcEndpointConnectionNotificationCommandInput, cb: (err: any, data?: ModifyVpcEndpointConnectionNotificationCommandOutput) => void): void;
2292
- modifyVpcEndpointConnectionNotification(args: ModifyVpcEndpointConnectionNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointConnectionNotificationCommandOutput) => void): void;
2293
-
2294
- modifyVpcEndpointServiceConfiguration(args: ModifyVpcEndpointServiceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointServiceConfigurationCommandOutput>;
2295
- modifyVpcEndpointServiceConfiguration(args: ModifyVpcEndpointServiceConfigurationCommandInput, cb: (err: any, data?: ModifyVpcEndpointServiceConfigurationCommandOutput) => void): void;
2296
- modifyVpcEndpointServiceConfiguration(args: ModifyVpcEndpointServiceConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointServiceConfigurationCommandOutput) => void): void;
2297
-
2298
- modifyVpcEndpointServicePayerResponsibility(args: ModifyVpcEndpointServicePayerResponsibilityCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointServicePayerResponsibilityCommandOutput>;
2299
- modifyVpcEndpointServicePayerResponsibility(args: ModifyVpcEndpointServicePayerResponsibilityCommandInput, cb: (err: any, data?: ModifyVpcEndpointServicePayerResponsibilityCommandOutput) => void): void;
2300
- modifyVpcEndpointServicePayerResponsibility(args: ModifyVpcEndpointServicePayerResponsibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointServicePayerResponsibilityCommandOutput) => void): void;
2301
-
2302
- modifyVpcEndpointServicePermissions(args: ModifyVpcEndpointServicePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointServicePermissionsCommandOutput>;
2303
- modifyVpcEndpointServicePermissions(args: ModifyVpcEndpointServicePermissionsCommandInput, cb: (err: any, data?: ModifyVpcEndpointServicePermissionsCommandOutput) => void): void;
2304
- modifyVpcEndpointServicePermissions(args: ModifyVpcEndpointServicePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointServicePermissionsCommandOutput) => void): void;
2305
-
2306
- modifyVpcPeeringConnectionOptions(args: ModifyVpcPeeringConnectionOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcPeeringConnectionOptionsCommandOutput>;
2307
- modifyVpcPeeringConnectionOptions(args: ModifyVpcPeeringConnectionOptionsCommandInput, cb: (err: any, data?: ModifyVpcPeeringConnectionOptionsCommandOutput) => void): void;
2308
- modifyVpcPeeringConnectionOptions(args: ModifyVpcPeeringConnectionOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcPeeringConnectionOptionsCommandOutput) => void): void;
2309
-
2310
- modifyVpcTenancy(args: ModifyVpcTenancyCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcTenancyCommandOutput>;
2311
- modifyVpcTenancy(args: ModifyVpcTenancyCommandInput, cb: (err: any, data?: ModifyVpcTenancyCommandOutput) => void): void;
2312
- modifyVpcTenancy(args: ModifyVpcTenancyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcTenancyCommandOutput) => void): void;
2313
-
2314
- modifyVpnConnection(args: ModifyVpnConnectionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpnConnectionCommandOutput>;
2315
- modifyVpnConnection(args: ModifyVpnConnectionCommandInput, cb: (err: any, data?: ModifyVpnConnectionCommandOutput) => void): void;
2316
- modifyVpnConnection(args: ModifyVpnConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpnConnectionCommandOutput) => void): void;
2317
-
2318
- modifyVpnConnectionOptions(args: ModifyVpnConnectionOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpnConnectionOptionsCommandOutput>;
2319
- modifyVpnConnectionOptions(args: ModifyVpnConnectionOptionsCommandInput, cb: (err: any, data?: ModifyVpnConnectionOptionsCommandOutput) => void): void;
2320
- modifyVpnConnectionOptions(args: ModifyVpnConnectionOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpnConnectionOptionsCommandOutput) => void): void;
2321
-
2322
- modifyVpnTunnelCertificate(args: ModifyVpnTunnelCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpnTunnelCertificateCommandOutput>;
2323
- modifyVpnTunnelCertificate(args: ModifyVpnTunnelCertificateCommandInput, cb: (err: any, data?: ModifyVpnTunnelCertificateCommandOutput) => void): void;
2324
- modifyVpnTunnelCertificate(args: ModifyVpnTunnelCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpnTunnelCertificateCommandOutput) => void): void;
2325
-
2326
- modifyVpnTunnelOptions(args: ModifyVpnTunnelOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpnTunnelOptionsCommandOutput>;
2327
- modifyVpnTunnelOptions(args: ModifyVpnTunnelOptionsCommandInput, cb: (err: any, data?: ModifyVpnTunnelOptionsCommandOutput) => void): void;
2328
- modifyVpnTunnelOptions(args: ModifyVpnTunnelOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpnTunnelOptionsCommandOutput) => void): void;
2329
-
2330
- monitorInstances(args: MonitorInstancesCommandInput, options?: __HttpHandlerOptions): Promise<MonitorInstancesCommandOutput>;
2331
- monitorInstances(args: MonitorInstancesCommandInput, cb: (err: any, data?: MonitorInstancesCommandOutput) => void): void;
2332
- monitorInstances(args: MonitorInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MonitorInstancesCommandOutput) => void): void;
2333
-
2334
- moveAddressToVpc(args: MoveAddressToVpcCommandInput, options?: __HttpHandlerOptions): Promise<MoveAddressToVpcCommandOutput>;
2335
- moveAddressToVpc(args: MoveAddressToVpcCommandInput, cb: (err: any, data?: MoveAddressToVpcCommandOutput) => void): void;
2336
- moveAddressToVpc(args: MoveAddressToVpcCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MoveAddressToVpcCommandOutput) => void): void;
2337
-
2338
- moveByoipCidrToIpam(args: MoveByoipCidrToIpamCommandInput, options?: __HttpHandlerOptions): Promise<MoveByoipCidrToIpamCommandOutput>;
2339
- moveByoipCidrToIpam(args: MoveByoipCidrToIpamCommandInput, cb: (err: any, data?: MoveByoipCidrToIpamCommandOutput) => void): void;
2340
- moveByoipCidrToIpam(args: MoveByoipCidrToIpamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MoveByoipCidrToIpamCommandOutput) => void): void;
2341
-
2342
- provisionByoipCidr(args: ProvisionByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<ProvisionByoipCidrCommandOutput>;
2343
- provisionByoipCidr(args: ProvisionByoipCidrCommandInput, cb: (err: any, data?: ProvisionByoipCidrCommandOutput) => void): void;
2344
- provisionByoipCidr(args: ProvisionByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ProvisionByoipCidrCommandOutput) => void): void;
2345
-
2346
- provisionIpamPoolCidr(args: ProvisionIpamPoolCidrCommandInput, options?: __HttpHandlerOptions): Promise<ProvisionIpamPoolCidrCommandOutput>;
2347
- provisionIpamPoolCidr(args: ProvisionIpamPoolCidrCommandInput, cb: (err: any, data?: ProvisionIpamPoolCidrCommandOutput) => void): void;
2348
- provisionIpamPoolCidr(args: ProvisionIpamPoolCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ProvisionIpamPoolCidrCommandOutput) => void): void;
2349
-
2350
- provisionPublicIpv4PoolCidr(args: ProvisionPublicIpv4PoolCidrCommandInput, options?: __HttpHandlerOptions): Promise<ProvisionPublicIpv4PoolCidrCommandOutput>;
2351
- provisionPublicIpv4PoolCidr(args: ProvisionPublicIpv4PoolCidrCommandInput, cb: (err: any, data?: ProvisionPublicIpv4PoolCidrCommandOutput) => void): void;
2352
- provisionPublicIpv4PoolCidr(args: ProvisionPublicIpv4PoolCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ProvisionPublicIpv4PoolCidrCommandOutput) => void): void;
2353
-
2354
- purchaseHostReservation(args: PurchaseHostReservationCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseHostReservationCommandOutput>;
2355
- purchaseHostReservation(args: PurchaseHostReservationCommandInput, cb: (err: any, data?: PurchaseHostReservationCommandOutput) => void): void;
2356
- purchaseHostReservation(args: PurchaseHostReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseHostReservationCommandOutput) => void): void;
2357
-
2358
- purchaseReservedInstancesOffering(args: PurchaseReservedInstancesOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseReservedInstancesOfferingCommandOutput>;
2359
- purchaseReservedInstancesOffering(args: PurchaseReservedInstancesOfferingCommandInput, cb: (err: any, data?: PurchaseReservedInstancesOfferingCommandOutput) => void): void;
2360
- purchaseReservedInstancesOffering(args: PurchaseReservedInstancesOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseReservedInstancesOfferingCommandOutput) => void): void;
2361
-
2362
- purchaseScheduledInstances(args: PurchaseScheduledInstancesCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseScheduledInstancesCommandOutput>;
2363
- purchaseScheduledInstances(args: PurchaseScheduledInstancesCommandInput, cb: (err: any, data?: PurchaseScheduledInstancesCommandOutput) => void): void;
2364
- purchaseScheduledInstances(args: PurchaseScheduledInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseScheduledInstancesCommandOutput) => void): void;
2365
-
2366
- rebootInstances(args: RebootInstancesCommandInput, options?: __HttpHandlerOptions): Promise<RebootInstancesCommandOutput>;
2367
- rebootInstances(args: RebootInstancesCommandInput, cb: (err: any, data?: RebootInstancesCommandOutput) => void): void;
2368
- rebootInstances(args: RebootInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootInstancesCommandOutput) => void): void;
2369
-
2370
- registerImage(args: RegisterImageCommandInput, options?: __HttpHandlerOptions): Promise<RegisterImageCommandOutput>;
2371
- registerImage(args: RegisterImageCommandInput, cb: (err: any, data?: RegisterImageCommandOutput) => void): void;
2372
- registerImage(args: RegisterImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterImageCommandOutput) => void): void;
2373
-
2374
- registerInstanceEventNotificationAttributes(args: RegisterInstanceEventNotificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<RegisterInstanceEventNotificationAttributesCommandOutput>;
2375
- registerInstanceEventNotificationAttributes(args: RegisterInstanceEventNotificationAttributesCommandInput, cb: (err: any, data?: RegisterInstanceEventNotificationAttributesCommandOutput) => void): void;
2376
- registerInstanceEventNotificationAttributes(args: RegisterInstanceEventNotificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterInstanceEventNotificationAttributesCommandOutput) => void): void;
2377
-
2378
- registerTransitGatewayMulticastGroupMembers(args: RegisterTransitGatewayMulticastGroupMembersCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTransitGatewayMulticastGroupMembersCommandOutput>;
2379
- registerTransitGatewayMulticastGroupMembers(args: RegisterTransitGatewayMulticastGroupMembersCommandInput, cb: (err: any, data?: RegisterTransitGatewayMulticastGroupMembersCommandOutput) => void): void;
2380
- registerTransitGatewayMulticastGroupMembers(args: RegisterTransitGatewayMulticastGroupMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTransitGatewayMulticastGroupMembersCommandOutput) => void): void;
2381
-
2382
- registerTransitGatewayMulticastGroupSources(args: RegisterTransitGatewayMulticastGroupSourcesCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTransitGatewayMulticastGroupSourcesCommandOutput>;
2383
- registerTransitGatewayMulticastGroupSources(args: RegisterTransitGatewayMulticastGroupSourcesCommandInput, cb: (err: any, data?: RegisterTransitGatewayMulticastGroupSourcesCommandOutput) => void): void;
2384
- registerTransitGatewayMulticastGroupSources(args: RegisterTransitGatewayMulticastGroupSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTransitGatewayMulticastGroupSourcesCommandOutput) => void): void;
2385
-
2386
- rejectTransitGatewayMulticastDomainAssociations(args: RejectTransitGatewayMulticastDomainAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<RejectTransitGatewayMulticastDomainAssociationsCommandOutput>;
2387
- rejectTransitGatewayMulticastDomainAssociations(args: RejectTransitGatewayMulticastDomainAssociationsCommandInput, cb: (err: any, data?: RejectTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
2388
- rejectTransitGatewayMulticastDomainAssociations(args: RejectTransitGatewayMulticastDomainAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectTransitGatewayMulticastDomainAssociationsCommandOutput) => void): void;
2389
-
2390
- rejectTransitGatewayPeeringAttachment(args: RejectTransitGatewayPeeringAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<RejectTransitGatewayPeeringAttachmentCommandOutput>;
2391
- rejectTransitGatewayPeeringAttachment(args: RejectTransitGatewayPeeringAttachmentCommandInput, cb: (err: any, data?: RejectTransitGatewayPeeringAttachmentCommandOutput) => void): void;
2392
- rejectTransitGatewayPeeringAttachment(args: RejectTransitGatewayPeeringAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectTransitGatewayPeeringAttachmentCommandOutput) => void): void;
2393
-
2394
- rejectTransitGatewayVpcAttachment(args: RejectTransitGatewayVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<RejectTransitGatewayVpcAttachmentCommandOutput>;
2395
- rejectTransitGatewayVpcAttachment(args: RejectTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: RejectTransitGatewayVpcAttachmentCommandOutput) => void): void;
2396
- rejectTransitGatewayVpcAttachment(args: RejectTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectTransitGatewayVpcAttachmentCommandOutput) => void): void;
2397
-
2398
- rejectVpcEndpointConnections(args: RejectVpcEndpointConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<RejectVpcEndpointConnectionsCommandOutput>;
2399
- rejectVpcEndpointConnections(args: RejectVpcEndpointConnectionsCommandInput, cb: (err: any, data?: RejectVpcEndpointConnectionsCommandOutput) => void): void;
2400
- rejectVpcEndpointConnections(args: RejectVpcEndpointConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectVpcEndpointConnectionsCommandOutput) => void): void;
2401
-
2402
- rejectVpcPeeringConnection(args: RejectVpcPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<RejectVpcPeeringConnectionCommandOutput>;
2403
- rejectVpcPeeringConnection(args: RejectVpcPeeringConnectionCommandInput, cb: (err: any, data?: RejectVpcPeeringConnectionCommandOutput) => void): void;
2404
- rejectVpcPeeringConnection(args: RejectVpcPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectVpcPeeringConnectionCommandOutput) => void): void;
2405
-
2406
- releaseAddress(args: ReleaseAddressCommandInput, options?: __HttpHandlerOptions): Promise<ReleaseAddressCommandOutput>;
2407
- releaseAddress(args: ReleaseAddressCommandInput, cb: (err: any, data?: ReleaseAddressCommandOutput) => void): void;
2408
- releaseAddress(args: ReleaseAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseAddressCommandOutput) => void): void;
2409
-
2410
- releaseHosts(args: ReleaseHostsCommandInput, options?: __HttpHandlerOptions): Promise<ReleaseHostsCommandOutput>;
2411
- releaseHosts(args: ReleaseHostsCommandInput, cb: (err: any, data?: ReleaseHostsCommandOutput) => void): void;
2412
- releaseHosts(args: ReleaseHostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseHostsCommandOutput) => void): void;
2413
-
2414
- releaseIpamPoolAllocation(args: ReleaseIpamPoolAllocationCommandInput, options?: __HttpHandlerOptions): Promise<ReleaseIpamPoolAllocationCommandOutput>;
2415
- releaseIpamPoolAllocation(args: ReleaseIpamPoolAllocationCommandInput, cb: (err: any, data?: ReleaseIpamPoolAllocationCommandOutput) => void): void;
2416
- releaseIpamPoolAllocation(args: ReleaseIpamPoolAllocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseIpamPoolAllocationCommandOutput) => void): void;
2417
-
2418
- replaceIamInstanceProfileAssociation(args: ReplaceIamInstanceProfileAssociationCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceIamInstanceProfileAssociationCommandOutput>;
2419
- replaceIamInstanceProfileAssociation(args: ReplaceIamInstanceProfileAssociationCommandInput, cb: (err: any, data?: ReplaceIamInstanceProfileAssociationCommandOutput) => void): void;
2420
- replaceIamInstanceProfileAssociation(args: ReplaceIamInstanceProfileAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceIamInstanceProfileAssociationCommandOutput) => void): void;
2421
-
2422
- replaceNetworkAclAssociation(args: ReplaceNetworkAclAssociationCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceNetworkAclAssociationCommandOutput>;
2423
- replaceNetworkAclAssociation(args: ReplaceNetworkAclAssociationCommandInput, cb: (err: any, data?: ReplaceNetworkAclAssociationCommandOutput) => void): void;
2424
- replaceNetworkAclAssociation(args: ReplaceNetworkAclAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceNetworkAclAssociationCommandOutput) => void): void;
2425
-
2426
- replaceNetworkAclEntry(args: ReplaceNetworkAclEntryCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceNetworkAclEntryCommandOutput>;
2427
- replaceNetworkAclEntry(args: ReplaceNetworkAclEntryCommandInput, cb: (err: any, data?: ReplaceNetworkAclEntryCommandOutput) => void): void;
2428
- replaceNetworkAclEntry(args: ReplaceNetworkAclEntryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceNetworkAclEntryCommandOutput) => void): void;
2429
-
2430
- replaceRoute(args: ReplaceRouteCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceRouteCommandOutput>;
2431
- replaceRoute(args: ReplaceRouteCommandInput, cb: (err: any, data?: ReplaceRouteCommandOutput) => void): void;
2432
- replaceRoute(args: ReplaceRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceRouteCommandOutput) => void): void;
2433
-
2434
- replaceRouteTableAssociation(args: ReplaceRouteTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceRouteTableAssociationCommandOutput>;
2435
- replaceRouteTableAssociation(args: ReplaceRouteTableAssociationCommandInput, cb: (err: any, data?: ReplaceRouteTableAssociationCommandOutput) => void): void;
2436
- replaceRouteTableAssociation(args: ReplaceRouteTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceRouteTableAssociationCommandOutput) => void): void;
2437
-
2438
- replaceTransitGatewayRoute(args: ReplaceTransitGatewayRouteCommandInput, options?: __HttpHandlerOptions): Promise<ReplaceTransitGatewayRouteCommandOutput>;
2439
- replaceTransitGatewayRoute(args: ReplaceTransitGatewayRouteCommandInput, cb: (err: any, data?: ReplaceTransitGatewayRouteCommandOutput) => void): void;
2440
- replaceTransitGatewayRoute(args: ReplaceTransitGatewayRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplaceTransitGatewayRouteCommandOutput) => void): void;
2441
-
2442
- reportInstanceStatus(args: ReportInstanceStatusCommandInput, options?: __HttpHandlerOptions): Promise<ReportInstanceStatusCommandOutput>;
2443
- reportInstanceStatus(args: ReportInstanceStatusCommandInput, cb: (err: any, data?: ReportInstanceStatusCommandOutput) => void): void;
2444
- reportInstanceStatus(args: ReportInstanceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReportInstanceStatusCommandOutput) => void): void;
2445
-
2446
- requestSpotFleet(args: RequestSpotFleetCommandInput, options?: __HttpHandlerOptions): Promise<RequestSpotFleetCommandOutput>;
2447
- requestSpotFleet(args: RequestSpotFleetCommandInput, cb: (err: any, data?: RequestSpotFleetCommandOutput) => void): void;
2448
- requestSpotFleet(args: RequestSpotFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestSpotFleetCommandOutput) => void): void;
2449
-
2450
- requestSpotInstances(args: RequestSpotInstancesCommandInput, options?: __HttpHandlerOptions): Promise<RequestSpotInstancesCommandOutput>;
2451
- requestSpotInstances(args: RequestSpotInstancesCommandInput, cb: (err: any, data?: RequestSpotInstancesCommandOutput) => void): void;
2452
- requestSpotInstances(args: RequestSpotInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestSpotInstancesCommandOutput) => void): void;
2453
-
2454
- resetAddressAttribute(args: ResetAddressAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetAddressAttributeCommandOutput>;
2455
- resetAddressAttribute(args: ResetAddressAttributeCommandInput, cb: (err: any, data?: ResetAddressAttributeCommandOutput) => void): void;
2456
- resetAddressAttribute(args: ResetAddressAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetAddressAttributeCommandOutput) => void): void;
2457
-
2458
- resetEbsDefaultKmsKeyId(args: ResetEbsDefaultKmsKeyIdCommandInput, options?: __HttpHandlerOptions): Promise<ResetEbsDefaultKmsKeyIdCommandOutput>;
2459
- resetEbsDefaultKmsKeyId(args: ResetEbsDefaultKmsKeyIdCommandInput, cb: (err: any, data?: ResetEbsDefaultKmsKeyIdCommandOutput) => void): void;
2460
- resetEbsDefaultKmsKeyId(args: ResetEbsDefaultKmsKeyIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetEbsDefaultKmsKeyIdCommandOutput) => void): void;
2461
-
2462
- resetFpgaImageAttribute(args: ResetFpgaImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetFpgaImageAttributeCommandOutput>;
2463
- resetFpgaImageAttribute(args: ResetFpgaImageAttributeCommandInput, cb: (err: any, data?: ResetFpgaImageAttributeCommandOutput) => void): void;
2464
- resetFpgaImageAttribute(args: ResetFpgaImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetFpgaImageAttributeCommandOutput) => void): void;
2465
-
2466
- resetImageAttribute(args: ResetImageAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetImageAttributeCommandOutput>;
2467
- resetImageAttribute(args: ResetImageAttributeCommandInput, cb: (err: any, data?: ResetImageAttributeCommandOutput) => void): void;
2468
- resetImageAttribute(args: ResetImageAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetImageAttributeCommandOutput) => void): void;
2469
-
2470
- resetInstanceAttribute(args: ResetInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetInstanceAttributeCommandOutput>;
2471
- resetInstanceAttribute(args: ResetInstanceAttributeCommandInput, cb: (err: any, data?: ResetInstanceAttributeCommandOutput) => void): void;
2472
- resetInstanceAttribute(args: ResetInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetInstanceAttributeCommandOutput) => void): void;
2473
-
2474
- resetNetworkInterfaceAttribute(args: ResetNetworkInterfaceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetNetworkInterfaceAttributeCommandOutput>;
2475
- resetNetworkInterfaceAttribute(args: ResetNetworkInterfaceAttributeCommandInput, cb: (err: any, data?: ResetNetworkInterfaceAttributeCommandOutput) => void): void;
2476
- resetNetworkInterfaceAttribute(args: ResetNetworkInterfaceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetNetworkInterfaceAttributeCommandOutput) => void): void;
2477
-
2478
- resetSnapshotAttribute(args: ResetSnapshotAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ResetSnapshotAttributeCommandOutput>;
2479
- resetSnapshotAttribute(args: ResetSnapshotAttributeCommandInput, cb: (err: any, data?: ResetSnapshotAttributeCommandOutput) => void): void;
2480
- resetSnapshotAttribute(args: ResetSnapshotAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetSnapshotAttributeCommandOutput) => void): void;
2481
-
2482
- restoreAddressToClassic(args: RestoreAddressToClassicCommandInput, options?: __HttpHandlerOptions): Promise<RestoreAddressToClassicCommandOutput>;
2483
- restoreAddressToClassic(args: RestoreAddressToClassicCommandInput, cb: (err: any, data?: RestoreAddressToClassicCommandOutput) => void): void;
2484
- restoreAddressToClassic(args: RestoreAddressToClassicCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreAddressToClassicCommandOutput) => void): void;
2485
-
2486
- restoreManagedPrefixListVersion(args: RestoreManagedPrefixListVersionCommandInput, options?: __HttpHandlerOptions): Promise<RestoreManagedPrefixListVersionCommandOutput>;
2487
- restoreManagedPrefixListVersion(args: RestoreManagedPrefixListVersionCommandInput, cb: (err: any, data?: RestoreManagedPrefixListVersionCommandOutput) => void): void;
2488
- restoreManagedPrefixListVersion(args: RestoreManagedPrefixListVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreManagedPrefixListVersionCommandOutput) => void): void;
2489
-
2490
- restoreSnapshotFromRecycleBin(args: RestoreSnapshotFromRecycleBinCommandInput, options?: __HttpHandlerOptions): Promise<RestoreSnapshotFromRecycleBinCommandOutput>;
2491
- restoreSnapshotFromRecycleBin(args: RestoreSnapshotFromRecycleBinCommandInput, cb: (err: any, data?: RestoreSnapshotFromRecycleBinCommandOutput) => void): void;
2492
- restoreSnapshotFromRecycleBin(args: RestoreSnapshotFromRecycleBinCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreSnapshotFromRecycleBinCommandOutput) => void): void;
2493
-
2494
- restoreSnapshotTier(args: RestoreSnapshotTierCommandInput, options?: __HttpHandlerOptions): Promise<RestoreSnapshotTierCommandOutput>;
2495
- restoreSnapshotTier(args: RestoreSnapshotTierCommandInput, cb: (err: any, data?: RestoreSnapshotTierCommandOutput) => void): void;
2496
- restoreSnapshotTier(args: RestoreSnapshotTierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreSnapshotTierCommandOutput) => void): void;
2497
-
2498
- revokeClientVpnIngress(args: RevokeClientVpnIngressCommandInput, options?: __HttpHandlerOptions): Promise<RevokeClientVpnIngressCommandOutput>;
2499
- revokeClientVpnIngress(args: RevokeClientVpnIngressCommandInput, cb: (err: any, data?: RevokeClientVpnIngressCommandOutput) => void): void;
2500
- revokeClientVpnIngress(args: RevokeClientVpnIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeClientVpnIngressCommandOutput) => void): void;
2501
-
2502
- revokeSecurityGroupEgress(args: RevokeSecurityGroupEgressCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSecurityGroupEgressCommandOutput>;
2503
- revokeSecurityGroupEgress(args: RevokeSecurityGroupEgressCommandInput, cb: (err: any, data?: RevokeSecurityGroupEgressCommandOutput) => void): void;
2504
- revokeSecurityGroupEgress(args: RevokeSecurityGroupEgressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSecurityGroupEgressCommandOutput) => void): void;
2505
-
2506
- revokeSecurityGroupIngress(args: RevokeSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSecurityGroupIngressCommandOutput>;
2507
- revokeSecurityGroupIngress(args: RevokeSecurityGroupIngressCommandInput, cb: (err: any, data?: RevokeSecurityGroupIngressCommandOutput) => void): void;
2508
- revokeSecurityGroupIngress(args: RevokeSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSecurityGroupIngressCommandOutput) => void): void;
2509
-
2510
- runInstances(args: RunInstancesCommandInput, options?: __HttpHandlerOptions): Promise<RunInstancesCommandOutput>;
2511
- runInstances(args: RunInstancesCommandInput, cb: (err: any, data?: RunInstancesCommandOutput) => void): void;
2512
- runInstances(args: RunInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RunInstancesCommandOutput) => void): void;
2513
-
2514
- runScheduledInstances(args: RunScheduledInstancesCommandInput, options?: __HttpHandlerOptions): Promise<RunScheduledInstancesCommandOutput>;
2515
- runScheduledInstances(args: RunScheduledInstancesCommandInput, cb: (err: any, data?: RunScheduledInstancesCommandOutput) => void): void;
2516
- runScheduledInstances(args: RunScheduledInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RunScheduledInstancesCommandOutput) => void): void;
2517
-
2518
- searchLocalGatewayRoutes(args: SearchLocalGatewayRoutesCommandInput, options?: __HttpHandlerOptions): Promise<SearchLocalGatewayRoutesCommandOutput>;
2519
- searchLocalGatewayRoutes(args: SearchLocalGatewayRoutesCommandInput, cb: (err: any, data?: SearchLocalGatewayRoutesCommandOutput) => void): void;
2520
- searchLocalGatewayRoutes(args: SearchLocalGatewayRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchLocalGatewayRoutesCommandOutput) => void): void;
2521
-
2522
- searchTransitGatewayMulticastGroups(args: SearchTransitGatewayMulticastGroupsCommandInput, options?: __HttpHandlerOptions): Promise<SearchTransitGatewayMulticastGroupsCommandOutput>;
2523
- searchTransitGatewayMulticastGroups(args: SearchTransitGatewayMulticastGroupsCommandInput, cb: (err: any, data?: SearchTransitGatewayMulticastGroupsCommandOutput) => void): void;
2524
- searchTransitGatewayMulticastGroups(args: SearchTransitGatewayMulticastGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchTransitGatewayMulticastGroupsCommandOutput) => void): void;
2525
-
2526
- searchTransitGatewayRoutes(args: SearchTransitGatewayRoutesCommandInput, options?: __HttpHandlerOptions): Promise<SearchTransitGatewayRoutesCommandOutput>;
2527
- searchTransitGatewayRoutes(args: SearchTransitGatewayRoutesCommandInput, cb: (err: any, data?: SearchTransitGatewayRoutesCommandOutput) => void): void;
2528
- searchTransitGatewayRoutes(args: SearchTransitGatewayRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchTransitGatewayRoutesCommandOutput) => void): void;
2529
-
2530
- sendDiagnosticInterrupt(args: SendDiagnosticInterruptCommandInput, options?: __HttpHandlerOptions): Promise<SendDiagnosticInterruptCommandOutput>;
2531
- sendDiagnosticInterrupt(args: SendDiagnosticInterruptCommandInput, cb: (err: any, data?: SendDiagnosticInterruptCommandOutput) => void): void;
2532
- sendDiagnosticInterrupt(args: SendDiagnosticInterruptCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDiagnosticInterruptCommandOutput) => void): void;
2533
-
2534
- startInstances(args: StartInstancesCommandInput, options?: __HttpHandlerOptions): Promise<StartInstancesCommandOutput>;
2535
- startInstances(args: StartInstancesCommandInput, cb: (err: any, data?: StartInstancesCommandOutput) => void): void;
2536
- startInstances(args: StartInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartInstancesCommandOutput) => void): void;
2537
-
2538
- startNetworkInsightsAccessScopeAnalysis(args: StartNetworkInsightsAccessScopeAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<StartNetworkInsightsAccessScopeAnalysisCommandOutput>;
2539
- startNetworkInsightsAccessScopeAnalysis(args: StartNetworkInsightsAccessScopeAnalysisCommandInput, cb: (err: any, data?: StartNetworkInsightsAccessScopeAnalysisCommandOutput) => void): void;
2540
- startNetworkInsightsAccessScopeAnalysis(args: StartNetworkInsightsAccessScopeAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartNetworkInsightsAccessScopeAnalysisCommandOutput) => void): void;
2541
-
2542
- startNetworkInsightsAnalysis(args: StartNetworkInsightsAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<StartNetworkInsightsAnalysisCommandOutput>;
2543
- startNetworkInsightsAnalysis(args: StartNetworkInsightsAnalysisCommandInput, cb: (err: any, data?: StartNetworkInsightsAnalysisCommandOutput) => void): void;
2544
- startNetworkInsightsAnalysis(args: StartNetworkInsightsAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartNetworkInsightsAnalysisCommandOutput) => void): void;
2545
-
2546
- startVpcEndpointServicePrivateDnsVerification(args: StartVpcEndpointServicePrivateDnsVerificationCommandInput, options?: __HttpHandlerOptions): Promise<StartVpcEndpointServicePrivateDnsVerificationCommandOutput>;
2547
- startVpcEndpointServicePrivateDnsVerification(args: StartVpcEndpointServicePrivateDnsVerificationCommandInput, cb: (err: any, data?: StartVpcEndpointServicePrivateDnsVerificationCommandOutput) => void): void;
2548
- startVpcEndpointServicePrivateDnsVerification(args: StartVpcEndpointServicePrivateDnsVerificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartVpcEndpointServicePrivateDnsVerificationCommandOutput) => void): void;
2549
-
2550
- stopInstances(args: StopInstancesCommandInput, options?: __HttpHandlerOptions): Promise<StopInstancesCommandOutput>;
2551
- stopInstances(args: StopInstancesCommandInput, cb: (err: any, data?: StopInstancesCommandOutput) => void): void;
2552
- stopInstances(args: StopInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopInstancesCommandOutput) => void): void;
2553
-
2554
- terminateClientVpnConnections(args: TerminateClientVpnConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<TerminateClientVpnConnectionsCommandOutput>;
2555
- terminateClientVpnConnections(args: TerminateClientVpnConnectionsCommandInput, cb: (err: any, data?: TerminateClientVpnConnectionsCommandOutput) => void): void;
2556
- terminateClientVpnConnections(args: TerminateClientVpnConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateClientVpnConnectionsCommandOutput) => void): void;
2557
-
2558
- terminateInstances(args: TerminateInstancesCommandInput, options?: __HttpHandlerOptions): Promise<TerminateInstancesCommandOutput>;
2559
- terminateInstances(args: TerminateInstancesCommandInput, cb: (err: any, data?: TerminateInstancesCommandOutput) => void): void;
2560
- terminateInstances(args: TerminateInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateInstancesCommandOutput) => void): void;
2561
-
2562
- unassignIpv6Addresses(args: UnassignIpv6AddressesCommandInput, options?: __HttpHandlerOptions): Promise<UnassignIpv6AddressesCommandOutput>;
2563
- unassignIpv6Addresses(args: UnassignIpv6AddressesCommandInput, cb: (err: any, data?: UnassignIpv6AddressesCommandOutput) => void): void;
2564
- unassignIpv6Addresses(args: UnassignIpv6AddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnassignIpv6AddressesCommandOutput) => void): void;
2565
-
2566
- unassignPrivateIpAddresses(args: UnassignPrivateIpAddressesCommandInput, options?: __HttpHandlerOptions): Promise<UnassignPrivateIpAddressesCommandOutput>;
2567
- unassignPrivateIpAddresses(args: UnassignPrivateIpAddressesCommandInput, cb: (err: any, data?: UnassignPrivateIpAddressesCommandOutput) => void): void;
2568
- unassignPrivateIpAddresses(args: UnassignPrivateIpAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnassignPrivateIpAddressesCommandOutput) => void): void;
2569
-
2570
- unmonitorInstances(args: UnmonitorInstancesCommandInput, options?: __HttpHandlerOptions): Promise<UnmonitorInstancesCommandOutput>;
2571
- unmonitorInstances(args: UnmonitorInstancesCommandInput, cb: (err: any, data?: UnmonitorInstancesCommandOutput) => void): void;
2572
- unmonitorInstances(args: UnmonitorInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnmonitorInstancesCommandOutput) => void): void;
2573
-
2574
- updateSecurityGroupRuleDescriptionsEgress(args: UpdateSecurityGroupRuleDescriptionsEgressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityGroupRuleDescriptionsEgressCommandOutput>;
2575
- updateSecurityGroupRuleDescriptionsEgress(args: UpdateSecurityGroupRuleDescriptionsEgressCommandInput, cb: (err: any, data?: UpdateSecurityGroupRuleDescriptionsEgressCommandOutput) => void): void;
2576
- updateSecurityGroupRuleDescriptionsEgress(args: UpdateSecurityGroupRuleDescriptionsEgressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityGroupRuleDescriptionsEgressCommandOutput) => void): void;
2577
-
2578
- updateSecurityGroupRuleDescriptionsIngress(args: UpdateSecurityGroupRuleDescriptionsIngressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityGroupRuleDescriptionsIngressCommandOutput>;
2579
- updateSecurityGroupRuleDescriptionsIngress(args: UpdateSecurityGroupRuleDescriptionsIngressCommandInput, cb: (err: any, data?: UpdateSecurityGroupRuleDescriptionsIngressCommandOutput) => void): void;
2580
- updateSecurityGroupRuleDescriptionsIngress(args: UpdateSecurityGroupRuleDescriptionsIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityGroupRuleDescriptionsIngressCommandOutput) => void): void;
2581
-
2582
- withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<WithdrawByoipCidrCommandOutput>;
2583
- withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
2584
- withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
2585
- }