@aws-sdk/client-mailmanager 3.581.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 (311) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +589 -0
  3. package/dist-cjs/MailManager.js +105 -0
  4. package/dist-cjs/MailManagerClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateAddonInstanceCommand.js +29 -0
  8. package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +29 -0
  9. package/dist-cjs/commands/CreateArchiveCommand.js +29 -0
  10. package/dist-cjs/commands/CreateIngressPointCommand.js +29 -0
  11. package/dist-cjs/commands/CreateRelayCommand.js +29 -0
  12. package/dist-cjs/commands/CreateRuleSetCommand.js +29 -0
  13. package/dist-cjs/commands/CreateTrafficPolicyCommand.js +29 -0
  14. package/dist-cjs/commands/DeleteAddonInstanceCommand.js +28 -0
  15. package/dist-cjs/commands/DeleteAddonSubscriptionCommand.js +28 -0
  16. package/dist-cjs/commands/DeleteArchiveCommand.js +28 -0
  17. package/dist-cjs/commands/DeleteIngressPointCommand.js +28 -0
  18. package/dist-cjs/commands/DeleteRelayCommand.js +28 -0
  19. package/dist-cjs/commands/DeleteRuleSetCommand.js +28 -0
  20. package/dist-cjs/commands/DeleteTrafficPolicyCommand.js +28 -0
  21. package/dist-cjs/commands/GetAddonInstanceCommand.js +28 -0
  22. package/dist-cjs/commands/GetAddonSubscriptionCommand.js +28 -0
  23. package/dist-cjs/commands/GetArchiveCommand.js +28 -0
  24. package/dist-cjs/commands/GetArchiveExportCommand.js +28 -0
  25. package/dist-cjs/commands/GetArchiveMessageCommand.js +28 -0
  26. package/dist-cjs/commands/GetArchiveMessageContentCommand.js +28 -0
  27. package/dist-cjs/commands/GetArchiveSearchCommand.js +28 -0
  28. package/dist-cjs/commands/GetArchiveSearchResultsCommand.js +28 -0
  29. package/dist-cjs/commands/GetIngressPointCommand.js +28 -0
  30. package/dist-cjs/commands/GetRelayCommand.js +28 -0
  31. package/dist-cjs/commands/GetRuleSetCommand.js +29 -0
  32. package/dist-cjs/commands/GetTrafficPolicyCommand.js +28 -0
  33. package/dist-cjs/commands/ListAddonInstancesCommand.js +28 -0
  34. package/dist-cjs/commands/ListAddonSubscriptionsCommand.js +28 -0
  35. package/dist-cjs/commands/ListArchiveExportsCommand.js +28 -0
  36. package/dist-cjs/commands/ListArchiveSearchesCommand.js +28 -0
  37. package/dist-cjs/commands/ListArchivesCommand.js +28 -0
  38. package/dist-cjs/commands/ListIngressPointsCommand.js +28 -0
  39. package/dist-cjs/commands/ListRelaysCommand.js +28 -0
  40. package/dist-cjs/commands/ListRuleSetsCommand.js +28 -0
  41. package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
  42. package/dist-cjs/commands/ListTrafficPoliciesCommand.js +28 -0
  43. package/dist-cjs/commands/StartArchiveExportCommand.js +28 -0
  44. package/dist-cjs/commands/StartArchiveSearchCommand.js +28 -0
  45. package/dist-cjs/commands/StopArchiveExportCommand.js +28 -0
  46. package/dist-cjs/commands/StopArchiveSearchCommand.js +28 -0
  47. package/dist-cjs/commands/TagResourceCommand.js +29 -0
  48. package/dist-cjs/commands/UntagResourceCommand.js +29 -0
  49. package/dist-cjs/commands/UpdateArchiveCommand.js +28 -0
  50. package/dist-cjs/commands/UpdateIngressPointCommand.js +29 -0
  51. package/dist-cjs/commands/UpdateRelayCommand.js +28 -0
  52. package/dist-cjs/commands/UpdateRuleSetCommand.js +29 -0
  53. package/dist-cjs/commands/UpdateTrafficPolicyCommand.js +28 -0
  54. package/dist-cjs/commands/index.js +50 -0
  55. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  56. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  57. package/dist-cjs/endpoint/ruleset.js +7 -0
  58. package/dist-cjs/extensionConfiguration.js +2 -0
  59. package/dist-cjs/index.js +11 -0
  60. package/dist-cjs/models/MailManagerServiceException.js +12 -0
  61. package/dist-cjs/models/index.js +4 -0
  62. package/dist-cjs/models/models_0.js +582 -0
  63. package/dist-cjs/pagination/Interfaces.js +2 -0
  64. package/dist-cjs/pagination/ListAddonInstancesPaginator.js +7 -0
  65. package/dist-cjs/pagination/ListAddonSubscriptionsPaginator.js +7 -0
  66. package/dist-cjs/pagination/ListArchiveExportsPaginator.js +7 -0
  67. package/dist-cjs/pagination/ListArchiveSearchesPaginator.js +7 -0
  68. package/dist-cjs/pagination/ListArchivesPaginator.js +7 -0
  69. package/dist-cjs/pagination/ListIngressPointsPaginator.js +7 -0
  70. package/dist-cjs/pagination/ListRelaysPaginator.js +7 -0
  71. package/dist-cjs/pagination/ListRuleSetsPaginator.js +7 -0
  72. package/dist-cjs/pagination/ListTrafficPoliciesPaginator.js +7 -0
  73. package/dist-cjs/pagination/index.js +13 -0
  74. package/dist-cjs/protocols/Aws_json1_0.js +1615 -0
  75. package/dist-cjs/runtimeConfig.browser.js +39 -0
  76. package/dist-cjs/runtimeConfig.js +49 -0
  77. package/dist-cjs/runtimeConfig.native.js +15 -0
  78. package/dist-cjs/runtimeConfig.shared.js +34 -0
  79. package/dist-cjs/runtimeExtensions.js +25 -0
  80. package/dist-es/MailManager.js +101 -0
  81. package/dist-es/MailManagerClient.js +52 -0
  82. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  83. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  84. package/dist-es/commands/CreateAddonInstanceCommand.js +25 -0
  85. package/dist-es/commands/CreateAddonSubscriptionCommand.js +25 -0
  86. package/dist-es/commands/CreateArchiveCommand.js +25 -0
  87. package/dist-es/commands/CreateIngressPointCommand.js +25 -0
  88. package/dist-es/commands/CreateRelayCommand.js +25 -0
  89. package/dist-es/commands/CreateRuleSetCommand.js +25 -0
  90. package/dist-es/commands/CreateTrafficPolicyCommand.js +25 -0
  91. package/dist-es/commands/DeleteAddonInstanceCommand.js +24 -0
  92. package/dist-es/commands/DeleteAddonSubscriptionCommand.js +24 -0
  93. package/dist-es/commands/DeleteArchiveCommand.js +24 -0
  94. package/dist-es/commands/DeleteIngressPointCommand.js +24 -0
  95. package/dist-es/commands/DeleteRelayCommand.js +24 -0
  96. package/dist-es/commands/DeleteRuleSetCommand.js +24 -0
  97. package/dist-es/commands/DeleteTrafficPolicyCommand.js +24 -0
  98. package/dist-es/commands/GetAddonInstanceCommand.js +24 -0
  99. package/dist-es/commands/GetAddonSubscriptionCommand.js +24 -0
  100. package/dist-es/commands/GetArchiveCommand.js +24 -0
  101. package/dist-es/commands/GetArchiveExportCommand.js +24 -0
  102. package/dist-es/commands/GetArchiveMessageCommand.js +24 -0
  103. package/dist-es/commands/GetArchiveMessageContentCommand.js +24 -0
  104. package/dist-es/commands/GetArchiveSearchCommand.js +24 -0
  105. package/dist-es/commands/GetArchiveSearchResultsCommand.js +24 -0
  106. package/dist-es/commands/GetIngressPointCommand.js +24 -0
  107. package/dist-es/commands/GetRelayCommand.js +24 -0
  108. package/dist-es/commands/GetRuleSetCommand.js +25 -0
  109. package/dist-es/commands/GetTrafficPolicyCommand.js +24 -0
  110. package/dist-es/commands/ListAddonInstancesCommand.js +24 -0
  111. package/dist-es/commands/ListAddonSubscriptionsCommand.js +24 -0
  112. package/dist-es/commands/ListArchiveExportsCommand.js +24 -0
  113. package/dist-es/commands/ListArchiveSearchesCommand.js +24 -0
  114. package/dist-es/commands/ListArchivesCommand.js +24 -0
  115. package/dist-es/commands/ListIngressPointsCommand.js +24 -0
  116. package/dist-es/commands/ListRelaysCommand.js +24 -0
  117. package/dist-es/commands/ListRuleSetsCommand.js +24 -0
  118. package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
  119. package/dist-es/commands/ListTrafficPoliciesCommand.js +24 -0
  120. package/dist-es/commands/StartArchiveExportCommand.js +24 -0
  121. package/dist-es/commands/StartArchiveSearchCommand.js +24 -0
  122. package/dist-es/commands/StopArchiveExportCommand.js +24 -0
  123. package/dist-es/commands/StopArchiveSearchCommand.js +24 -0
  124. package/dist-es/commands/TagResourceCommand.js +25 -0
  125. package/dist-es/commands/UntagResourceCommand.js +25 -0
  126. package/dist-es/commands/UpdateArchiveCommand.js +24 -0
  127. package/dist-es/commands/UpdateIngressPointCommand.js +25 -0
  128. package/dist-es/commands/UpdateRelayCommand.js +24 -0
  129. package/dist-es/commands/UpdateRuleSetCommand.js +25 -0
  130. package/dist-es/commands/UpdateTrafficPolicyCommand.js +24 -0
  131. package/dist-es/commands/index.js +47 -0
  132. package/dist-es/endpoint/EndpointParameters.js +14 -0
  133. package/dist-es/endpoint/endpointResolver.js +10 -0
  134. package/dist-es/endpoint/ruleset.js +4 -0
  135. package/dist-es/extensionConfiguration.js +1 -0
  136. package/dist-es/index.js +6 -0
  137. package/dist-es/models/MailManagerServiceException.js +8 -0
  138. package/dist-es/models/index.js +1 -0
  139. package/dist-es/models/models_0.js +554 -0
  140. package/dist-es/pagination/Interfaces.js +1 -0
  141. package/dist-es/pagination/ListAddonInstancesPaginator.js +4 -0
  142. package/dist-es/pagination/ListAddonSubscriptionsPaginator.js +4 -0
  143. package/dist-es/pagination/ListArchiveExportsPaginator.js +4 -0
  144. package/dist-es/pagination/ListArchiveSearchesPaginator.js +4 -0
  145. package/dist-es/pagination/ListArchivesPaginator.js +4 -0
  146. package/dist-es/pagination/ListIngressPointsPaginator.js +4 -0
  147. package/dist-es/pagination/ListRelaysPaginator.js +4 -0
  148. package/dist-es/pagination/ListRuleSetsPaginator.js +4 -0
  149. package/dist-es/pagination/ListTrafficPoliciesPaginator.js +4 -0
  150. package/dist-es/pagination/index.js +10 -0
  151. package/dist-es/protocols/Aws_json1_0.js +1517 -0
  152. package/dist-es/runtimeConfig.browser.js +34 -0
  153. package/dist-es/runtimeConfig.js +44 -0
  154. package/dist-es/runtimeConfig.native.js +11 -0
  155. package/dist-es/runtimeConfig.shared.js +30 -0
  156. package/dist-es/runtimeExtensions.js +21 -0
  157. package/dist-types/MailManager.d.ts +353 -0
  158. package/dist-types/MailManagerClient.d.ts +225 -0
  159. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  160. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  161. package/dist-types/commands/CreateAddonInstanceCommand.d.ts +80 -0
  162. package/dist-types/commands/CreateAddonSubscriptionCommand.d.ts +77 -0
  163. package/dist-types/commands/CreateArchiveCommand.d.ts +85 -0
  164. package/dist-types/commands/CreateIngressPointCommand.d.ts +82 -0
  165. package/dist-types/commands/CreateRelayCommand.d.ts +82 -0
  166. package/dist-types/commands/CreateRuleSetCommand.d.ts +227 -0
  167. package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +120 -0
  168. package/dist-types/commands/DeleteAddonInstanceCommand.d.ts +63 -0
  169. package/dist-types/commands/DeleteAddonSubscriptionCommand.d.ts +63 -0
  170. package/dist-types/commands/DeleteArchiveCommand.d.ts +73 -0
  171. package/dist-types/commands/DeleteIngressPointCommand.d.ts +66 -0
  172. package/dist-types/commands/DeleteRelayCommand.d.ts +66 -0
  173. package/dist-types/commands/DeleteRuleSetCommand.d.ts +63 -0
  174. package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +66 -0
  175. package/dist-types/commands/GetAddonInstanceCommand.d.ts +68 -0
  176. package/dist-types/commands/GetAddonSubscriptionCommand.d.ts +67 -0
  177. package/dist-types/commands/GetArchiveCommand.d.ts +80 -0
  178. package/dist-types/commands/GetArchiveExportCommand.d.ts +122 -0
  179. package/dist-types/commands/GetArchiveMessageCommand.d.ts +70 -0
  180. package/dist-types/commands/GetArchiveMessageContentCommand.d.ts +74 -0
  181. package/dist-types/commands/GetArchiveSearchCommand.d.ts +117 -0
  182. package/dist-types/commands/GetArchiveSearchResultsCommand.d.ts +90 -0
  183. package/dist-types/commands/GetIngressPointCommand.d.ts +82 -0
  184. package/dist-types/commands/GetRelayCommand.d.ts +75 -0
  185. package/dist-types/commands/GetRuleSetCommand.d.ts +221 -0
  186. package/dist-types/commands/GetTrafficPolicyCommand.d.ts +114 -0
  187. package/dist-types/commands/ListAddonInstancesCommand.d.ts +72 -0
  188. package/dist-types/commands/ListAddonSubscriptionsCommand.d.ts +71 -0
  189. package/dist-types/commands/ListArchiveExportsCommand.d.ts +84 -0
  190. package/dist-types/commands/ListArchiveSearchesCommand.d.ts +84 -0
  191. package/dist-types/commands/ListArchivesCommand.d.ts +77 -0
  192. package/dist-types/commands/ListIngressPointsCommand.d.ts +72 -0
  193. package/dist-types/commands/ListRelaysCommand.d.ts +70 -0
  194. package/dist-types/commands/ListRuleSetsCommand.d.ts +70 -0
  195. package/dist-types/commands/ListTagsForResourceCommand.d.ts +70 -0
  196. package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +70 -0
  197. package/dist-types/commands/StartArchiveExportCommand.d.ts +122 -0
  198. package/dist-types/commands/StartArchiveSearchCommand.d.ts +120 -0
  199. package/dist-types/commands/StopArchiveExportCommand.d.ts +66 -0
  200. package/dist-types/commands/StopArchiveSearchCommand.d.ts +66 -0
  201. package/dist-types/commands/TagResourceCommand.d.ts +75 -0
  202. package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
  203. package/dist-types/commands/UpdateArchiveCommand.d.ts +79 -0
  204. package/dist-types/commands/UpdateIngressPointCommand.d.ts +74 -0
  205. package/dist-types/commands/UpdateRelayCommand.d.ts +73 -0
  206. package/dist-types/commands/UpdateRuleSetCommand.d.ts +219 -0
  207. package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +112 -0
  208. package/dist-types/commands/index.d.ts +47 -0
  209. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  210. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  211. package/dist-types/endpoint/ruleset.d.ts +2 -0
  212. package/dist-types/extensionConfiguration.d.ts +9 -0
  213. package/dist-types/index.d.ts +21 -0
  214. package/dist-types/models/MailManagerServiceException.d.ts +13 -0
  215. package/dist-types/models/index.d.ts +1 -0
  216. package/dist-types/models/models_0.d.ts +4046 -0
  217. package/dist-types/pagination/Interfaces.d.ts +8 -0
  218. package/dist-types/pagination/ListAddonInstancesPaginator.d.ts +7 -0
  219. package/dist-types/pagination/ListAddonSubscriptionsPaginator.d.ts +7 -0
  220. package/dist-types/pagination/ListArchiveExportsPaginator.d.ts +7 -0
  221. package/dist-types/pagination/ListArchiveSearchesPaginator.d.ts +7 -0
  222. package/dist-types/pagination/ListArchivesPaginator.d.ts +7 -0
  223. package/dist-types/pagination/ListIngressPointsPaginator.d.ts +7 -0
  224. package/dist-types/pagination/ListRelaysPaginator.d.ts +7 -0
  225. package/dist-types/pagination/ListRuleSetsPaginator.d.ts +7 -0
  226. package/dist-types/pagination/ListTrafficPoliciesPaginator.d.ts +7 -0
  227. package/dist-types/pagination/index.d.ts +10 -0
  228. package/dist-types/protocols/Aws_json1_0.d.ts +425 -0
  229. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  230. package/dist-types/runtimeConfig.d.ts +45 -0
  231. package/dist-types/runtimeConfig.native.d.ts +44 -0
  232. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  233. package/dist-types/runtimeExtensions.d.ts +17 -0
  234. package/dist-types/ts3.4/MailManager.d.ts +813 -0
  235. package/dist-types/ts3.4/MailManagerClient.d.ts +402 -0
  236. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  237. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  238. package/dist-types/ts3.4/commands/CreateAddonInstanceCommand.d.ts +39 -0
  239. package/dist-types/ts3.4/commands/CreateAddonSubscriptionCommand.d.ts +39 -0
  240. package/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +38 -0
  241. package/dist-types/ts3.4/commands/CreateIngressPointCommand.d.ts +39 -0
  242. package/dist-types/ts3.4/commands/CreateRelayCommand.d.ts +35 -0
  243. package/dist-types/ts3.4/commands/CreateRuleSetCommand.d.ts +38 -0
  244. package/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +39 -0
  245. package/dist-types/ts3.4/commands/DeleteAddonInstanceCommand.d.ts +39 -0
  246. package/dist-types/ts3.4/commands/DeleteAddonSubscriptionCommand.d.ts +39 -0
  247. package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +38 -0
  248. package/dist-types/ts3.4/commands/DeleteIngressPointCommand.d.ts +39 -0
  249. package/dist-types/ts3.4/commands/DeleteRelayCommand.d.ts +35 -0
  250. package/dist-types/ts3.4/commands/DeleteRuleSetCommand.d.ts +38 -0
  251. package/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +39 -0
  252. package/dist-types/ts3.4/commands/GetAddonInstanceCommand.d.ts +38 -0
  253. package/dist-types/ts3.4/commands/GetAddonSubscriptionCommand.d.ts +39 -0
  254. package/dist-types/ts3.4/commands/GetArchiveCommand.d.ts +35 -0
  255. package/dist-types/ts3.4/commands/GetArchiveExportCommand.d.ts +38 -0
  256. package/dist-types/ts3.4/commands/GetArchiveMessageCommand.d.ts +39 -0
  257. package/dist-types/ts3.4/commands/GetArchiveMessageContentCommand.d.ts +39 -0
  258. package/dist-types/ts3.4/commands/GetArchiveSearchCommand.d.ts +38 -0
  259. package/dist-types/ts3.4/commands/GetArchiveSearchResultsCommand.d.ts +39 -0
  260. package/dist-types/ts3.4/commands/GetIngressPointCommand.d.ts +38 -0
  261. package/dist-types/ts3.4/commands/GetRelayCommand.d.ts +35 -0
  262. package/dist-types/ts3.4/commands/GetRuleSetCommand.d.ts +35 -0
  263. package/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +38 -0
  264. package/dist-types/ts3.4/commands/ListAddonInstancesCommand.d.ts +39 -0
  265. package/dist-types/ts3.4/commands/ListAddonSubscriptionsCommand.d.ts +39 -0
  266. package/dist-types/ts3.4/commands/ListArchiveExportsCommand.d.ts +39 -0
  267. package/dist-types/ts3.4/commands/ListArchiveSearchesCommand.d.ts +39 -0
  268. package/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +35 -0
  269. package/dist-types/ts3.4/commands/ListIngressPointsCommand.d.ts +39 -0
  270. package/dist-types/ts3.4/commands/ListRelaysCommand.d.ts +35 -0
  271. package/dist-types/ts3.4/commands/ListRuleSetsCommand.d.ts +35 -0
  272. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  273. package/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +39 -0
  274. package/dist-types/ts3.4/commands/StartArchiveExportCommand.d.ts +39 -0
  275. package/dist-types/ts3.4/commands/StartArchiveSearchCommand.d.ts +39 -0
  276. package/dist-types/ts3.4/commands/StopArchiveExportCommand.d.ts +39 -0
  277. package/dist-types/ts3.4/commands/StopArchiveSearchCommand.d.ts +39 -0
  278. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  279. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  280. package/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +38 -0
  281. package/dist-types/ts3.4/commands/UpdateIngressPointCommand.d.ts +39 -0
  282. package/dist-types/ts3.4/commands/UpdateRelayCommand.d.ts +35 -0
  283. package/dist-types/ts3.4/commands/UpdateRuleSetCommand.d.ts +38 -0
  284. package/dist-types/ts3.4/commands/UpdateTrafficPolicyCommand.d.ts +39 -0
  285. package/dist-types/ts3.4/commands/index.d.ts +47 -0
  286. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  287. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  288. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  289. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  290. package/dist-types/ts3.4/index.d.ts +9 -0
  291. package/dist-types/ts3.4/models/MailManagerServiceException.d.ts +8 -0
  292. package/dist-types/ts3.4/models/index.d.ts +1 -0
  293. package/dist-types/ts3.4/models/models_0.d.ts +1514 -0
  294. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  295. package/dist-types/ts3.4/pagination/ListAddonInstancesPaginator.d.ts +11 -0
  296. package/dist-types/ts3.4/pagination/ListAddonSubscriptionsPaginator.d.ts +11 -0
  297. package/dist-types/ts3.4/pagination/ListArchiveExportsPaginator.d.ts +11 -0
  298. package/dist-types/ts3.4/pagination/ListArchiveSearchesPaginator.d.ts +11 -0
  299. package/dist-types/ts3.4/pagination/ListArchivesPaginator.d.ts +11 -0
  300. package/dist-types/ts3.4/pagination/ListIngressPointsPaginator.d.ts +11 -0
  301. package/dist-types/ts3.4/pagination/ListRelaysPaginator.d.ts +11 -0
  302. package/dist-types/ts3.4/pagination/ListRuleSetsPaginator.d.ts +11 -0
  303. package/dist-types/ts3.4/pagination/ListTrafficPoliciesPaginator.d.ts +11 -0
  304. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  305. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +569 -0
  306. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  307. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  308. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  309. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  310. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  311. package/package.json +103 -0
@@ -0,0 +1,813 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateAddonInstanceCommandInput,
4
+ CreateAddonInstanceCommandOutput,
5
+ } from "./commands/CreateAddonInstanceCommand";
6
+ import {
7
+ CreateAddonSubscriptionCommandInput,
8
+ CreateAddonSubscriptionCommandOutput,
9
+ } from "./commands/CreateAddonSubscriptionCommand";
10
+ import {
11
+ CreateArchiveCommandInput,
12
+ CreateArchiveCommandOutput,
13
+ } from "./commands/CreateArchiveCommand";
14
+ import {
15
+ CreateIngressPointCommandInput,
16
+ CreateIngressPointCommandOutput,
17
+ } from "./commands/CreateIngressPointCommand";
18
+ import {
19
+ CreateRelayCommandInput,
20
+ CreateRelayCommandOutput,
21
+ } from "./commands/CreateRelayCommand";
22
+ import {
23
+ CreateRuleSetCommandInput,
24
+ CreateRuleSetCommandOutput,
25
+ } from "./commands/CreateRuleSetCommand";
26
+ import {
27
+ CreateTrafficPolicyCommandInput,
28
+ CreateTrafficPolicyCommandOutput,
29
+ } from "./commands/CreateTrafficPolicyCommand";
30
+ import {
31
+ DeleteAddonInstanceCommandInput,
32
+ DeleteAddonInstanceCommandOutput,
33
+ } from "./commands/DeleteAddonInstanceCommand";
34
+ import {
35
+ DeleteAddonSubscriptionCommandInput,
36
+ DeleteAddonSubscriptionCommandOutput,
37
+ } from "./commands/DeleteAddonSubscriptionCommand";
38
+ import {
39
+ DeleteArchiveCommandInput,
40
+ DeleteArchiveCommandOutput,
41
+ } from "./commands/DeleteArchiveCommand";
42
+ import {
43
+ DeleteIngressPointCommandInput,
44
+ DeleteIngressPointCommandOutput,
45
+ } from "./commands/DeleteIngressPointCommand";
46
+ import {
47
+ DeleteRelayCommandInput,
48
+ DeleteRelayCommandOutput,
49
+ } from "./commands/DeleteRelayCommand";
50
+ import {
51
+ DeleteRuleSetCommandInput,
52
+ DeleteRuleSetCommandOutput,
53
+ } from "./commands/DeleteRuleSetCommand";
54
+ import {
55
+ DeleteTrafficPolicyCommandInput,
56
+ DeleteTrafficPolicyCommandOutput,
57
+ } from "./commands/DeleteTrafficPolicyCommand";
58
+ import {
59
+ GetAddonInstanceCommandInput,
60
+ GetAddonInstanceCommandOutput,
61
+ } from "./commands/GetAddonInstanceCommand";
62
+ import {
63
+ GetAddonSubscriptionCommandInput,
64
+ GetAddonSubscriptionCommandOutput,
65
+ } from "./commands/GetAddonSubscriptionCommand";
66
+ import {
67
+ GetArchiveCommandInput,
68
+ GetArchiveCommandOutput,
69
+ } from "./commands/GetArchiveCommand";
70
+ import {
71
+ GetArchiveExportCommandInput,
72
+ GetArchiveExportCommandOutput,
73
+ } from "./commands/GetArchiveExportCommand";
74
+ import {
75
+ GetArchiveMessageCommandInput,
76
+ GetArchiveMessageCommandOutput,
77
+ } from "./commands/GetArchiveMessageCommand";
78
+ import {
79
+ GetArchiveMessageContentCommandInput,
80
+ GetArchiveMessageContentCommandOutput,
81
+ } from "./commands/GetArchiveMessageContentCommand";
82
+ import {
83
+ GetArchiveSearchCommandInput,
84
+ GetArchiveSearchCommandOutput,
85
+ } from "./commands/GetArchiveSearchCommand";
86
+ import {
87
+ GetArchiveSearchResultsCommandInput,
88
+ GetArchiveSearchResultsCommandOutput,
89
+ } from "./commands/GetArchiveSearchResultsCommand";
90
+ import {
91
+ GetIngressPointCommandInput,
92
+ GetIngressPointCommandOutput,
93
+ } from "./commands/GetIngressPointCommand";
94
+ import {
95
+ GetRelayCommandInput,
96
+ GetRelayCommandOutput,
97
+ } from "./commands/GetRelayCommand";
98
+ import {
99
+ GetRuleSetCommandInput,
100
+ GetRuleSetCommandOutput,
101
+ } from "./commands/GetRuleSetCommand";
102
+ import {
103
+ GetTrafficPolicyCommandInput,
104
+ GetTrafficPolicyCommandOutput,
105
+ } from "./commands/GetTrafficPolicyCommand";
106
+ import {
107
+ ListAddonInstancesCommandInput,
108
+ ListAddonInstancesCommandOutput,
109
+ } from "./commands/ListAddonInstancesCommand";
110
+ import {
111
+ ListAddonSubscriptionsCommandInput,
112
+ ListAddonSubscriptionsCommandOutput,
113
+ } from "./commands/ListAddonSubscriptionsCommand";
114
+ import {
115
+ ListArchiveExportsCommandInput,
116
+ ListArchiveExportsCommandOutput,
117
+ } from "./commands/ListArchiveExportsCommand";
118
+ import {
119
+ ListArchivesCommandInput,
120
+ ListArchivesCommandOutput,
121
+ } from "./commands/ListArchivesCommand";
122
+ import {
123
+ ListArchiveSearchesCommandInput,
124
+ ListArchiveSearchesCommandOutput,
125
+ } from "./commands/ListArchiveSearchesCommand";
126
+ import {
127
+ ListIngressPointsCommandInput,
128
+ ListIngressPointsCommandOutput,
129
+ } from "./commands/ListIngressPointsCommand";
130
+ import {
131
+ ListRelaysCommandInput,
132
+ ListRelaysCommandOutput,
133
+ } from "./commands/ListRelaysCommand";
134
+ import {
135
+ ListRuleSetsCommandInput,
136
+ ListRuleSetsCommandOutput,
137
+ } from "./commands/ListRuleSetsCommand";
138
+ import {
139
+ ListTagsForResourceCommandInput,
140
+ ListTagsForResourceCommandOutput,
141
+ } from "./commands/ListTagsForResourceCommand";
142
+ import {
143
+ ListTrafficPoliciesCommandInput,
144
+ ListTrafficPoliciesCommandOutput,
145
+ } from "./commands/ListTrafficPoliciesCommand";
146
+ import {
147
+ StartArchiveExportCommandInput,
148
+ StartArchiveExportCommandOutput,
149
+ } from "./commands/StartArchiveExportCommand";
150
+ import {
151
+ StartArchiveSearchCommandInput,
152
+ StartArchiveSearchCommandOutput,
153
+ } from "./commands/StartArchiveSearchCommand";
154
+ import {
155
+ StopArchiveExportCommandInput,
156
+ StopArchiveExportCommandOutput,
157
+ } from "./commands/StopArchiveExportCommand";
158
+ import {
159
+ StopArchiveSearchCommandInput,
160
+ StopArchiveSearchCommandOutput,
161
+ } from "./commands/StopArchiveSearchCommand";
162
+ import {
163
+ TagResourceCommandInput,
164
+ TagResourceCommandOutput,
165
+ } from "./commands/TagResourceCommand";
166
+ import {
167
+ UntagResourceCommandInput,
168
+ UntagResourceCommandOutput,
169
+ } from "./commands/UntagResourceCommand";
170
+ import {
171
+ UpdateArchiveCommandInput,
172
+ UpdateArchiveCommandOutput,
173
+ } from "./commands/UpdateArchiveCommand";
174
+ import {
175
+ UpdateIngressPointCommandInput,
176
+ UpdateIngressPointCommandOutput,
177
+ } from "./commands/UpdateIngressPointCommand";
178
+ import {
179
+ UpdateRelayCommandInput,
180
+ UpdateRelayCommandOutput,
181
+ } from "./commands/UpdateRelayCommand";
182
+ import {
183
+ UpdateRuleSetCommandInput,
184
+ UpdateRuleSetCommandOutput,
185
+ } from "./commands/UpdateRuleSetCommand";
186
+ import {
187
+ UpdateTrafficPolicyCommandInput,
188
+ UpdateTrafficPolicyCommandOutput,
189
+ } from "./commands/UpdateTrafficPolicyCommand";
190
+ import { MailManagerClient } from "./MailManagerClient";
191
+ export interface MailManager {
192
+ createAddonInstance(
193
+ args: CreateAddonInstanceCommandInput,
194
+ options?: __HttpHandlerOptions
195
+ ): Promise<CreateAddonInstanceCommandOutput>;
196
+ createAddonInstance(
197
+ args: CreateAddonInstanceCommandInput,
198
+ cb: (err: any, data?: CreateAddonInstanceCommandOutput) => void
199
+ ): void;
200
+ createAddonInstance(
201
+ args: CreateAddonInstanceCommandInput,
202
+ options: __HttpHandlerOptions,
203
+ cb: (err: any, data?: CreateAddonInstanceCommandOutput) => void
204
+ ): void;
205
+ createAddonSubscription(
206
+ args: CreateAddonSubscriptionCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<CreateAddonSubscriptionCommandOutput>;
209
+ createAddonSubscription(
210
+ args: CreateAddonSubscriptionCommandInput,
211
+ cb: (err: any, data?: CreateAddonSubscriptionCommandOutput) => void
212
+ ): void;
213
+ createAddonSubscription(
214
+ args: CreateAddonSubscriptionCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: CreateAddonSubscriptionCommandOutput) => void
217
+ ): void;
218
+ createArchive(
219
+ args: CreateArchiveCommandInput,
220
+ options?: __HttpHandlerOptions
221
+ ): Promise<CreateArchiveCommandOutput>;
222
+ createArchive(
223
+ args: CreateArchiveCommandInput,
224
+ cb: (err: any, data?: CreateArchiveCommandOutput) => void
225
+ ): void;
226
+ createArchive(
227
+ args: CreateArchiveCommandInput,
228
+ options: __HttpHandlerOptions,
229
+ cb: (err: any, data?: CreateArchiveCommandOutput) => void
230
+ ): void;
231
+ createIngressPoint(
232
+ args: CreateIngressPointCommandInput,
233
+ options?: __HttpHandlerOptions
234
+ ): Promise<CreateIngressPointCommandOutput>;
235
+ createIngressPoint(
236
+ args: CreateIngressPointCommandInput,
237
+ cb: (err: any, data?: CreateIngressPointCommandOutput) => void
238
+ ): void;
239
+ createIngressPoint(
240
+ args: CreateIngressPointCommandInput,
241
+ options: __HttpHandlerOptions,
242
+ cb: (err: any, data?: CreateIngressPointCommandOutput) => void
243
+ ): void;
244
+ createRelay(
245
+ args: CreateRelayCommandInput,
246
+ options?: __HttpHandlerOptions
247
+ ): Promise<CreateRelayCommandOutput>;
248
+ createRelay(
249
+ args: CreateRelayCommandInput,
250
+ cb: (err: any, data?: CreateRelayCommandOutput) => void
251
+ ): void;
252
+ createRelay(
253
+ args: CreateRelayCommandInput,
254
+ options: __HttpHandlerOptions,
255
+ cb: (err: any, data?: CreateRelayCommandOutput) => void
256
+ ): void;
257
+ createRuleSet(
258
+ args: CreateRuleSetCommandInput,
259
+ options?: __HttpHandlerOptions
260
+ ): Promise<CreateRuleSetCommandOutput>;
261
+ createRuleSet(
262
+ args: CreateRuleSetCommandInput,
263
+ cb: (err: any, data?: CreateRuleSetCommandOutput) => void
264
+ ): void;
265
+ createRuleSet(
266
+ args: CreateRuleSetCommandInput,
267
+ options: __HttpHandlerOptions,
268
+ cb: (err: any, data?: CreateRuleSetCommandOutput) => void
269
+ ): void;
270
+ createTrafficPolicy(
271
+ args: CreateTrafficPolicyCommandInput,
272
+ options?: __HttpHandlerOptions
273
+ ): Promise<CreateTrafficPolicyCommandOutput>;
274
+ createTrafficPolicy(
275
+ args: CreateTrafficPolicyCommandInput,
276
+ cb: (err: any, data?: CreateTrafficPolicyCommandOutput) => void
277
+ ): void;
278
+ createTrafficPolicy(
279
+ args: CreateTrafficPolicyCommandInput,
280
+ options: __HttpHandlerOptions,
281
+ cb: (err: any, data?: CreateTrafficPolicyCommandOutput) => void
282
+ ): void;
283
+ deleteAddonInstance(
284
+ args: DeleteAddonInstanceCommandInput,
285
+ options?: __HttpHandlerOptions
286
+ ): Promise<DeleteAddonInstanceCommandOutput>;
287
+ deleteAddonInstance(
288
+ args: DeleteAddonInstanceCommandInput,
289
+ cb: (err: any, data?: DeleteAddonInstanceCommandOutput) => void
290
+ ): void;
291
+ deleteAddonInstance(
292
+ args: DeleteAddonInstanceCommandInput,
293
+ options: __HttpHandlerOptions,
294
+ cb: (err: any, data?: DeleteAddonInstanceCommandOutput) => void
295
+ ): void;
296
+ deleteAddonSubscription(
297
+ args: DeleteAddonSubscriptionCommandInput,
298
+ options?: __HttpHandlerOptions
299
+ ): Promise<DeleteAddonSubscriptionCommandOutput>;
300
+ deleteAddonSubscription(
301
+ args: DeleteAddonSubscriptionCommandInput,
302
+ cb: (err: any, data?: DeleteAddonSubscriptionCommandOutput) => void
303
+ ): void;
304
+ deleteAddonSubscription(
305
+ args: DeleteAddonSubscriptionCommandInput,
306
+ options: __HttpHandlerOptions,
307
+ cb: (err: any, data?: DeleteAddonSubscriptionCommandOutput) => void
308
+ ): void;
309
+ deleteArchive(
310
+ args: DeleteArchiveCommandInput,
311
+ options?: __HttpHandlerOptions
312
+ ): Promise<DeleteArchiveCommandOutput>;
313
+ deleteArchive(
314
+ args: DeleteArchiveCommandInput,
315
+ cb: (err: any, data?: DeleteArchiveCommandOutput) => void
316
+ ): void;
317
+ deleteArchive(
318
+ args: DeleteArchiveCommandInput,
319
+ options: __HttpHandlerOptions,
320
+ cb: (err: any, data?: DeleteArchiveCommandOutput) => void
321
+ ): void;
322
+ deleteIngressPoint(
323
+ args: DeleteIngressPointCommandInput,
324
+ options?: __HttpHandlerOptions
325
+ ): Promise<DeleteIngressPointCommandOutput>;
326
+ deleteIngressPoint(
327
+ args: DeleteIngressPointCommandInput,
328
+ cb: (err: any, data?: DeleteIngressPointCommandOutput) => void
329
+ ): void;
330
+ deleteIngressPoint(
331
+ args: DeleteIngressPointCommandInput,
332
+ options: __HttpHandlerOptions,
333
+ cb: (err: any, data?: DeleteIngressPointCommandOutput) => void
334
+ ): void;
335
+ deleteRelay(
336
+ args: DeleteRelayCommandInput,
337
+ options?: __HttpHandlerOptions
338
+ ): Promise<DeleteRelayCommandOutput>;
339
+ deleteRelay(
340
+ args: DeleteRelayCommandInput,
341
+ cb: (err: any, data?: DeleteRelayCommandOutput) => void
342
+ ): void;
343
+ deleteRelay(
344
+ args: DeleteRelayCommandInput,
345
+ options: __HttpHandlerOptions,
346
+ cb: (err: any, data?: DeleteRelayCommandOutput) => void
347
+ ): void;
348
+ deleteRuleSet(
349
+ args: DeleteRuleSetCommandInput,
350
+ options?: __HttpHandlerOptions
351
+ ): Promise<DeleteRuleSetCommandOutput>;
352
+ deleteRuleSet(
353
+ args: DeleteRuleSetCommandInput,
354
+ cb: (err: any, data?: DeleteRuleSetCommandOutput) => void
355
+ ): void;
356
+ deleteRuleSet(
357
+ args: DeleteRuleSetCommandInput,
358
+ options: __HttpHandlerOptions,
359
+ cb: (err: any, data?: DeleteRuleSetCommandOutput) => void
360
+ ): void;
361
+ deleteTrafficPolicy(
362
+ args: DeleteTrafficPolicyCommandInput,
363
+ options?: __HttpHandlerOptions
364
+ ): Promise<DeleteTrafficPolicyCommandOutput>;
365
+ deleteTrafficPolicy(
366
+ args: DeleteTrafficPolicyCommandInput,
367
+ cb: (err: any, data?: DeleteTrafficPolicyCommandOutput) => void
368
+ ): void;
369
+ deleteTrafficPolicy(
370
+ args: DeleteTrafficPolicyCommandInput,
371
+ options: __HttpHandlerOptions,
372
+ cb: (err: any, data?: DeleteTrafficPolicyCommandOutput) => void
373
+ ): void;
374
+ getAddonInstance(
375
+ args: GetAddonInstanceCommandInput,
376
+ options?: __HttpHandlerOptions
377
+ ): Promise<GetAddonInstanceCommandOutput>;
378
+ getAddonInstance(
379
+ args: GetAddonInstanceCommandInput,
380
+ cb: (err: any, data?: GetAddonInstanceCommandOutput) => void
381
+ ): void;
382
+ getAddonInstance(
383
+ args: GetAddonInstanceCommandInput,
384
+ options: __HttpHandlerOptions,
385
+ cb: (err: any, data?: GetAddonInstanceCommandOutput) => void
386
+ ): void;
387
+ getAddonSubscription(
388
+ args: GetAddonSubscriptionCommandInput,
389
+ options?: __HttpHandlerOptions
390
+ ): Promise<GetAddonSubscriptionCommandOutput>;
391
+ getAddonSubscription(
392
+ args: GetAddonSubscriptionCommandInput,
393
+ cb: (err: any, data?: GetAddonSubscriptionCommandOutput) => void
394
+ ): void;
395
+ getAddonSubscription(
396
+ args: GetAddonSubscriptionCommandInput,
397
+ options: __HttpHandlerOptions,
398
+ cb: (err: any, data?: GetAddonSubscriptionCommandOutput) => void
399
+ ): void;
400
+ getArchive(
401
+ args: GetArchiveCommandInput,
402
+ options?: __HttpHandlerOptions
403
+ ): Promise<GetArchiveCommandOutput>;
404
+ getArchive(
405
+ args: GetArchiveCommandInput,
406
+ cb: (err: any, data?: GetArchiveCommandOutput) => void
407
+ ): void;
408
+ getArchive(
409
+ args: GetArchiveCommandInput,
410
+ options: __HttpHandlerOptions,
411
+ cb: (err: any, data?: GetArchiveCommandOutput) => void
412
+ ): void;
413
+ getArchiveExport(
414
+ args: GetArchiveExportCommandInput,
415
+ options?: __HttpHandlerOptions
416
+ ): Promise<GetArchiveExportCommandOutput>;
417
+ getArchiveExport(
418
+ args: GetArchiveExportCommandInput,
419
+ cb: (err: any, data?: GetArchiveExportCommandOutput) => void
420
+ ): void;
421
+ getArchiveExport(
422
+ args: GetArchiveExportCommandInput,
423
+ options: __HttpHandlerOptions,
424
+ cb: (err: any, data?: GetArchiveExportCommandOutput) => void
425
+ ): void;
426
+ getArchiveMessage(
427
+ args: GetArchiveMessageCommandInput,
428
+ options?: __HttpHandlerOptions
429
+ ): Promise<GetArchiveMessageCommandOutput>;
430
+ getArchiveMessage(
431
+ args: GetArchiveMessageCommandInput,
432
+ cb: (err: any, data?: GetArchiveMessageCommandOutput) => void
433
+ ): void;
434
+ getArchiveMessage(
435
+ args: GetArchiveMessageCommandInput,
436
+ options: __HttpHandlerOptions,
437
+ cb: (err: any, data?: GetArchiveMessageCommandOutput) => void
438
+ ): void;
439
+ getArchiveMessageContent(
440
+ args: GetArchiveMessageContentCommandInput,
441
+ options?: __HttpHandlerOptions
442
+ ): Promise<GetArchiveMessageContentCommandOutput>;
443
+ getArchiveMessageContent(
444
+ args: GetArchiveMessageContentCommandInput,
445
+ cb: (err: any, data?: GetArchiveMessageContentCommandOutput) => void
446
+ ): void;
447
+ getArchiveMessageContent(
448
+ args: GetArchiveMessageContentCommandInput,
449
+ options: __HttpHandlerOptions,
450
+ cb: (err: any, data?: GetArchiveMessageContentCommandOutput) => void
451
+ ): void;
452
+ getArchiveSearch(
453
+ args: GetArchiveSearchCommandInput,
454
+ options?: __HttpHandlerOptions
455
+ ): Promise<GetArchiveSearchCommandOutput>;
456
+ getArchiveSearch(
457
+ args: GetArchiveSearchCommandInput,
458
+ cb: (err: any, data?: GetArchiveSearchCommandOutput) => void
459
+ ): void;
460
+ getArchiveSearch(
461
+ args: GetArchiveSearchCommandInput,
462
+ options: __HttpHandlerOptions,
463
+ cb: (err: any, data?: GetArchiveSearchCommandOutput) => void
464
+ ): void;
465
+ getArchiveSearchResults(
466
+ args: GetArchiveSearchResultsCommandInput,
467
+ options?: __HttpHandlerOptions
468
+ ): Promise<GetArchiveSearchResultsCommandOutput>;
469
+ getArchiveSearchResults(
470
+ args: GetArchiveSearchResultsCommandInput,
471
+ cb: (err: any, data?: GetArchiveSearchResultsCommandOutput) => void
472
+ ): void;
473
+ getArchiveSearchResults(
474
+ args: GetArchiveSearchResultsCommandInput,
475
+ options: __HttpHandlerOptions,
476
+ cb: (err: any, data?: GetArchiveSearchResultsCommandOutput) => void
477
+ ): void;
478
+ getIngressPoint(
479
+ args: GetIngressPointCommandInput,
480
+ options?: __HttpHandlerOptions
481
+ ): Promise<GetIngressPointCommandOutput>;
482
+ getIngressPoint(
483
+ args: GetIngressPointCommandInput,
484
+ cb: (err: any, data?: GetIngressPointCommandOutput) => void
485
+ ): void;
486
+ getIngressPoint(
487
+ args: GetIngressPointCommandInput,
488
+ options: __HttpHandlerOptions,
489
+ cb: (err: any, data?: GetIngressPointCommandOutput) => void
490
+ ): void;
491
+ getRelay(
492
+ args: GetRelayCommandInput,
493
+ options?: __HttpHandlerOptions
494
+ ): Promise<GetRelayCommandOutput>;
495
+ getRelay(
496
+ args: GetRelayCommandInput,
497
+ cb: (err: any, data?: GetRelayCommandOutput) => void
498
+ ): void;
499
+ getRelay(
500
+ args: GetRelayCommandInput,
501
+ options: __HttpHandlerOptions,
502
+ cb: (err: any, data?: GetRelayCommandOutput) => void
503
+ ): void;
504
+ getRuleSet(
505
+ args: GetRuleSetCommandInput,
506
+ options?: __HttpHandlerOptions
507
+ ): Promise<GetRuleSetCommandOutput>;
508
+ getRuleSet(
509
+ args: GetRuleSetCommandInput,
510
+ cb: (err: any, data?: GetRuleSetCommandOutput) => void
511
+ ): void;
512
+ getRuleSet(
513
+ args: GetRuleSetCommandInput,
514
+ options: __HttpHandlerOptions,
515
+ cb: (err: any, data?: GetRuleSetCommandOutput) => void
516
+ ): void;
517
+ getTrafficPolicy(
518
+ args: GetTrafficPolicyCommandInput,
519
+ options?: __HttpHandlerOptions
520
+ ): Promise<GetTrafficPolicyCommandOutput>;
521
+ getTrafficPolicy(
522
+ args: GetTrafficPolicyCommandInput,
523
+ cb: (err: any, data?: GetTrafficPolicyCommandOutput) => void
524
+ ): void;
525
+ getTrafficPolicy(
526
+ args: GetTrafficPolicyCommandInput,
527
+ options: __HttpHandlerOptions,
528
+ cb: (err: any, data?: GetTrafficPolicyCommandOutput) => void
529
+ ): void;
530
+ listAddonInstances(): Promise<ListAddonInstancesCommandOutput>;
531
+ listAddonInstances(
532
+ args: ListAddonInstancesCommandInput,
533
+ options?: __HttpHandlerOptions
534
+ ): Promise<ListAddonInstancesCommandOutput>;
535
+ listAddonInstances(
536
+ args: ListAddonInstancesCommandInput,
537
+ cb: (err: any, data?: ListAddonInstancesCommandOutput) => void
538
+ ): void;
539
+ listAddonInstances(
540
+ args: ListAddonInstancesCommandInput,
541
+ options: __HttpHandlerOptions,
542
+ cb: (err: any, data?: ListAddonInstancesCommandOutput) => void
543
+ ): void;
544
+ listAddonSubscriptions(): Promise<ListAddonSubscriptionsCommandOutput>;
545
+ listAddonSubscriptions(
546
+ args: ListAddonSubscriptionsCommandInput,
547
+ options?: __HttpHandlerOptions
548
+ ): Promise<ListAddonSubscriptionsCommandOutput>;
549
+ listAddonSubscriptions(
550
+ args: ListAddonSubscriptionsCommandInput,
551
+ cb: (err: any, data?: ListAddonSubscriptionsCommandOutput) => void
552
+ ): void;
553
+ listAddonSubscriptions(
554
+ args: ListAddonSubscriptionsCommandInput,
555
+ options: __HttpHandlerOptions,
556
+ cb: (err: any, data?: ListAddonSubscriptionsCommandOutput) => void
557
+ ): void;
558
+ listArchiveExports(
559
+ args: ListArchiveExportsCommandInput,
560
+ options?: __HttpHandlerOptions
561
+ ): Promise<ListArchiveExportsCommandOutput>;
562
+ listArchiveExports(
563
+ args: ListArchiveExportsCommandInput,
564
+ cb: (err: any, data?: ListArchiveExportsCommandOutput) => void
565
+ ): void;
566
+ listArchiveExports(
567
+ args: ListArchiveExportsCommandInput,
568
+ options: __HttpHandlerOptions,
569
+ cb: (err: any, data?: ListArchiveExportsCommandOutput) => void
570
+ ): void;
571
+ listArchives(): Promise<ListArchivesCommandOutput>;
572
+ listArchives(
573
+ args: ListArchivesCommandInput,
574
+ options?: __HttpHandlerOptions
575
+ ): Promise<ListArchivesCommandOutput>;
576
+ listArchives(
577
+ args: ListArchivesCommandInput,
578
+ cb: (err: any, data?: ListArchivesCommandOutput) => void
579
+ ): void;
580
+ listArchives(
581
+ args: ListArchivesCommandInput,
582
+ options: __HttpHandlerOptions,
583
+ cb: (err: any, data?: ListArchivesCommandOutput) => void
584
+ ): void;
585
+ listArchiveSearches(
586
+ args: ListArchiveSearchesCommandInput,
587
+ options?: __HttpHandlerOptions
588
+ ): Promise<ListArchiveSearchesCommandOutput>;
589
+ listArchiveSearches(
590
+ args: ListArchiveSearchesCommandInput,
591
+ cb: (err: any, data?: ListArchiveSearchesCommandOutput) => void
592
+ ): void;
593
+ listArchiveSearches(
594
+ args: ListArchiveSearchesCommandInput,
595
+ options: __HttpHandlerOptions,
596
+ cb: (err: any, data?: ListArchiveSearchesCommandOutput) => void
597
+ ): void;
598
+ listIngressPoints(): Promise<ListIngressPointsCommandOutput>;
599
+ listIngressPoints(
600
+ args: ListIngressPointsCommandInput,
601
+ options?: __HttpHandlerOptions
602
+ ): Promise<ListIngressPointsCommandOutput>;
603
+ listIngressPoints(
604
+ args: ListIngressPointsCommandInput,
605
+ cb: (err: any, data?: ListIngressPointsCommandOutput) => void
606
+ ): void;
607
+ listIngressPoints(
608
+ args: ListIngressPointsCommandInput,
609
+ options: __HttpHandlerOptions,
610
+ cb: (err: any, data?: ListIngressPointsCommandOutput) => void
611
+ ): void;
612
+ listRelays(): Promise<ListRelaysCommandOutput>;
613
+ listRelays(
614
+ args: ListRelaysCommandInput,
615
+ options?: __HttpHandlerOptions
616
+ ): Promise<ListRelaysCommandOutput>;
617
+ listRelays(
618
+ args: ListRelaysCommandInput,
619
+ cb: (err: any, data?: ListRelaysCommandOutput) => void
620
+ ): void;
621
+ listRelays(
622
+ args: ListRelaysCommandInput,
623
+ options: __HttpHandlerOptions,
624
+ cb: (err: any, data?: ListRelaysCommandOutput) => void
625
+ ): void;
626
+ listRuleSets(): Promise<ListRuleSetsCommandOutput>;
627
+ listRuleSets(
628
+ args: ListRuleSetsCommandInput,
629
+ options?: __HttpHandlerOptions
630
+ ): Promise<ListRuleSetsCommandOutput>;
631
+ listRuleSets(
632
+ args: ListRuleSetsCommandInput,
633
+ cb: (err: any, data?: ListRuleSetsCommandOutput) => void
634
+ ): void;
635
+ listRuleSets(
636
+ args: ListRuleSetsCommandInput,
637
+ options: __HttpHandlerOptions,
638
+ cb: (err: any, data?: ListRuleSetsCommandOutput) => void
639
+ ): void;
640
+ listTagsForResource(
641
+ args: ListTagsForResourceCommandInput,
642
+ options?: __HttpHandlerOptions
643
+ ): Promise<ListTagsForResourceCommandOutput>;
644
+ listTagsForResource(
645
+ args: ListTagsForResourceCommandInput,
646
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
647
+ ): void;
648
+ listTagsForResource(
649
+ args: ListTagsForResourceCommandInput,
650
+ options: __HttpHandlerOptions,
651
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
652
+ ): void;
653
+ listTrafficPolicies(): Promise<ListTrafficPoliciesCommandOutput>;
654
+ listTrafficPolicies(
655
+ args: ListTrafficPoliciesCommandInput,
656
+ options?: __HttpHandlerOptions
657
+ ): Promise<ListTrafficPoliciesCommandOutput>;
658
+ listTrafficPolicies(
659
+ args: ListTrafficPoliciesCommandInput,
660
+ cb: (err: any, data?: ListTrafficPoliciesCommandOutput) => void
661
+ ): void;
662
+ listTrafficPolicies(
663
+ args: ListTrafficPoliciesCommandInput,
664
+ options: __HttpHandlerOptions,
665
+ cb: (err: any, data?: ListTrafficPoliciesCommandOutput) => void
666
+ ): void;
667
+ startArchiveExport(
668
+ args: StartArchiveExportCommandInput,
669
+ options?: __HttpHandlerOptions
670
+ ): Promise<StartArchiveExportCommandOutput>;
671
+ startArchiveExport(
672
+ args: StartArchiveExportCommandInput,
673
+ cb: (err: any, data?: StartArchiveExportCommandOutput) => void
674
+ ): void;
675
+ startArchiveExport(
676
+ args: StartArchiveExportCommandInput,
677
+ options: __HttpHandlerOptions,
678
+ cb: (err: any, data?: StartArchiveExportCommandOutput) => void
679
+ ): void;
680
+ startArchiveSearch(
681
+ args: StartArchiveSearchCommandInput,
682
+ options?: __HttpHandlerOptions
683
+ ): Promise<StartArchiveSearchCommandOutput>;
684
+ startArchiveSearch(
685
+ args: StartArchiveSearchCommandInput,
686
+ cb: (err: any, data?: StartArchiveSearchCommandOutput) => void
687
+ ): void;
688
+ startArchiveSearch(
689
+ args: StartArchiveSearchCommandInput,
690
+ options: __HttpHandlerOptions,
691
+ cb: (err: any, data?: StartArchiveSearchCommandOutput) => void
692
+ ): void;
693
+ stopArchiveExport(
694
+ args: StopArchiveExportCommandInput,
695
+ options?: __HttpHandlerOptions
696
+ ): Promise<StopArchiveExportCommandOutput>;
697
+ stopArchiveExport(
698
+ args: StopArchiveExportCommandInput,
699
+ cb: (err: any, data?: StopArchiveExportCommandOutput) => void
700
+ ): void;
701
+ stopArchiveExport(
702
+ args: StopArchiveExportCommandInput,
703
+ options: __HttpHandlerOptions,
704
+ cb: (err: any, data?: StopArchiveExportCommandOutput) => void
705
+ ): void;
706
+ stopArchiveSearch(
707
+ args: StopArchiveSearchCommandInput,
708
+ options?: __HttpHandlerOptions
709
+ ): Promise<StopArchiveSearchCommandOutput>;
710
+ stopArchiveSearch(
711
+ args: StopArchiveSearchCommandInput,
712
+ cb: (err: any, data?: StopArchiveSearchCommandOutput) => void
713
+ ): void;
714
+ stopArchiveSearch(
715
+ args: StopArchiveSearchCommandInput,
716
+ options: __HttpHandlerOptions,
717
+ cb: (err: any, data?: StopArchiveSearchCommandOutput) => void
718
+ ): void;
719
+ tagResource(
720
+ args: TagResourceCommandInput,
721
+ options?: __HttpHandlerOptions
722
+ ): Promise<TagResourceCommandOutput>;
723
+ tagResource(
724
+ args: TagResourceCommandInput,
725
+ cb: (err: any, data?: TagResourceCommandOutput) => void
726
+ ): void;
727
+ tagResource(
728
+ args: TagResourceCommandInput,
729
+ options: __HttpHandlerOptions,
730
+ cb: (err: any, data?: TagResourceCommandOutput) => void
731
+ ): void;
732
+ untagResource(
733
+ args: UntagResourceCommandInput,
734
+ options?: __HttpHandlerOptions
735
+ ): Promise<UntagResourceCommandOutput>;
736
+ untagResource(
737
+ args: UntagResourceCommandInput,
738
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
739
+ ): void;
740
+ untagResource(
741
+ args: UntagResourceCommandInput,
742
+ options: __HttpHandlerOptions,
743
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
744
+ ): void;
745
+ updateArchive(
746
+ args: UpdateArchiveCommandInput,
747
+ options?: __HttpHandlerOptions
748
+ ): Promise<UpdateArchiveCommandOutput>;
749
+ updateArchive(
750
+ args: UpdateArchiveCommandInput,
751
+ cb: (err: any, data?: UpdateArchiveCommandOutput) => void
752
+ ): void;
753
+ updateArchive(
754
+ args: UpdateArchiveCommandInput,
755
+ options: __HttpHandlerOptions,
756
+ cb: (err: any, data?: UpdateArchiveCommandOutput) => void
757
+ ): void;
758
+ updateIngressPoint(
759
+ args: UpdateIngressPointCommandInput,
760
+ options?: __HttpHandlerOptions
761
+ ): Promise<UpdateIngressPointCommandOutput>;
762
+ updateIngressPoint(
763
+ args: UpdateIngressPointCommandInput,
764
+ cb: (err: any, data?: UpdateIngressPointCommandOutput) => void
765
+ ): void;
766
+ updateIngressPoint(
767
+ args: UpdateIngressPointCommandInput,
768
+ options: __HttpHandlerOptions,
769
+ cb: (err: any, data?: UpdateIngressPointCommandOutput) => void
770
+ ): void;
771
+ updateRelay(
772
+ args: UpdateRelayCommandInput,
773
+ options?: __HttpHandlerOptions
774
+ ): Promise<UpdateRelayCommandOutput>;
775
+ updateRelay(
776
+ args: UpdateRelayCommandInput,
777
+ cb: (err: any, data?: UpdateRelayCommandOutput) => void
778
+ ): void;
779
+ updateRelay(
780
+ args: UpdateRelayCommandInput,
781
+ options: __HttpHandlerOptions,
782
+ cb: (err: any, data?: UpdateRelayCommandOutput) => void
783
+ ): void;
784
+ updateRuleSet(
785
+ args: UpdateRuleSetCommandInput,
786
+ options?: __HttpHandlerOptions
787
+ ): Promise<UpdateRuleSetCommandOutput>;
788
+ updateRuleSet(
789
+ args: UpdateRuleSetCommandInput,
790
+ cb: (err: any, data?: UpdateRuleSetCommandOutput) => void
791
+ ): void;
792
+ updateRuleSet(
793
+ args: UpdateRuleSetCommandInput,
794
+ options: __HttpHandlerOptions,
795
+ cb: (err: any, data?: UpdateRuleSetCommandOutput) => void
796
+ ): void;
797
+ updateTrafficPolicy(
798
+ args: UpdateTrafficPolicyCommandInput,
799
+ options?: __HttpHandlerOptions
800
+ ): Promise<UpdateTrafficPolicyCommandOutput>;
801
+ updateTrafficPolicy(
802
+ args: UpdateTrafficPolicyCommandInput,
803
+ cb: (err: any, data?: UpdateTrafficPolicyCommandOutput) => void
804
+ ): void;
805
+ updateTrafficPolicy(
806
+ args: UpdateTrafficPolicyCommandInput,
807
+ options: __HttpHandlerOptions,
808
+ cb: (err: any, data?: UpdateTrafficPolicyCommandOutput) => void
809
+ ): void;
810
+ }
811
+ export declare class MailManager
812
+ extends MailManagerClient
813
+ implements MailManager {}