@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,225 @@
1
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
+ import { CreateAddonInstanceCommandInput, CreateAddonInstanceCommandOutput } from "./commands/CreateAddonInstanceCommand";
11
+ import { CreateAddonSubscriptionCommandInput, CreateAddonSubscriptionCommandOutput } from "./commands/CreateAddonSubscriptionCommand";
12
+ import { CreateArchiveCommandInput, CreateArchiveCommandOutput } from "./commands/CreateArchiveCommand";
13
+ import { CreateIngressPointCommandInput, CreateIngressPointCommandOutput } from "./commands/CreateIngressPointCommand";
14
+ import { CreateRelayCommandInput, CreateRelayCommandOutput } from "./commands/CreateRelayCommand";
15
+ import { CreateRuleSetCommandInput, CreateRuleSetCommandOutput } from "./commands/CreateRuleSetCommand";
16
+ import { CreateTrafficPolicyCommandInput, CreateTrafficPolicyCommandOutput } from "./commands/CreateTrafficPolicyCommand";
17
+ import { DeleteAddonInstanceCommandInput, DeleteAddonInstanceCommandOutput } from "./commands/DeleteAddonInstanceCommand";
18
+ import { DeleteAddonSubscriptionCommandInput, DeleteAddonSubscriptionCommandOutput } from "./commands/DeleteAddonSubscriptionCommand";
19
+ import { DeleteArchiveCommandInput, DeleteArchiveCommandOutput } from "./commands/DeleteArchiveCommand";
20
+ import { DeleteIngressPointCommandInput, DeleteIngressPointCommandOutput } from "./commands/DeleteIngressPointCommand";
21
+ import { DeleteRelayCommandInput, DeleteRelayCommandOutput } from "./commands/DeleteRelayCommand";
22
+ import { DeleteRuleSetCommandInput, DeleteRuleSetCommandOutput } from "./commands/DeleteRuleSetCommand";
23
+ import { DeleteTrafficPolicyCommandInput, DeleteTrafficPolicyCommandOutput } from "./commands/DeleteTrafficPolicyCommand";
24
+ import { GetAddonInstanceCommandInput, GetAddonInstanceCommandOutput } from "./commands/GetAddonInstanceCommand";
25
+ import { GetAddonSubscriptionCommandInput, GetAddonSubscriptionCommandOutput } from "./commands/GetAddonSubscriptionCommand";
26
+ import { GetArchiveCommandInput, GetArchiveCommandOutput } from "./commands/GetArchiveCommand";
27
+ import { GetArchiveExportCommandInput, GetArchiveExportCommandOutput } from "./commands/GetArchiveExportCommand";
28
+ import { GetArchiveMessageCommandInput, GetArchiveMessageCommandOutput } from "./commands/GetArchiveMessageCommand";
29
+ import { GetArchiveMessageContentCommandInput, GetArchiveMessageContentCommandOutput } from "./commands/GetArchiveMessageContentCommand";
30
+ import { GetArchiveSearchCommandInput, GetArchiveSearchCommandOutput } from "./commands/GetArchiveSearchCommand";
31
+ import { GetArchiveSearchResultsCommandInput, GetArchiveSearchResultsCommandOutput } from "./commands/GetArchiveSearchResultsCommand";
32
+ import { GetIngressPointCommandInput, GetIngressPointCommandOutput } from "./commands/GetIngressPointCommand";
33
+ import { GetRelayCommandInput, GetRelayCommandOutput } from "./commands/GetRelayCommand";
34
+ import { GetRuleSetCommandInput, GetRuleSetCommandOutput } from "./commands/GetRuleSetCommand";
35
+ import { GetTrafficPolicyCommandInput, GetTrafficPolicyCommandOutput } from "./commands/GetTrafficPolicyCommand";
36
+ import { ListAddonInstancesCommandInput, ListAddonInstancesCommandOutput } from "./commands/ListAddonInstancesCommand";
37
+ import { ListAddonSubscriptionsCommandInput, ListAddonSubscriptionsCommandOutput } from "./commands/ListAddonSubscriptionsCommand";
38
+ import { ListArchiveExportsCommandInput, ListArchiveExportsCommandOutput } from "./commands/ListArchiveExportsCommand";
39
+ import { ListArchivesCommandInput, ListArchivesCommandOutput } from "./commands/ListArchivesCommand";
40
+ import { ListArchiveSearchesCommandInput, ListArchiveSearchesCommandOutput } from "./commands/ListArchiveSearchesCommand";
41
+ import { ListIngressPointsCommandInput, ListIngressPointsCommandOutput } from "./commands/ListIngressPointsCommand";
42
+ import { ListRelaysCommandInput, ListRelaysCommandOutput } from "./commands/ListRelaysCommand";
43
+ import { ListRuleSetsCommandInput, ListRuleSetsCommandOutput } from "./commands/ListRuleSetsCommand";
44
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
45
+ import { ListTrafficPoliciesCommandInput, ListTrafficPoliciesCommandOutput } from "./commands/ListTrafficPoliciesCommand";
46
+ import { StartArchiveExportCommandInput, StartArchiveExportCommandOutput } from "./commands/StartArchiveExportCommand";
47
+ import { StartArchiveSearchCommandInput, StartArchiveSearchCommandOutput } from "./commands/StartArchiveSearchCommand";
48
+ import { StopArchiveExportCommandInput, StopArchiveExportCommandOutput } from "./commands/StopArchiveExportCommand";
49
+ import { StopArchiveSearchCommandInput, StopArchiveSearchCommandOutput } from "./commands/StopArchiveSearchCommand";
50
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
51
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
52
+ import { UpdateArchiveCommandInput, UpdateArchiveCommandOutput } from "./commands/UpdateArchiveCommand";
53
+ import { UpdateIngressPointCommandInput, UpdateIngressPointCommandOutput } from "./commands/UpdateIngressPointCommand";
54
+ import { UpdateRelayCommandInput, UpdateRelayCommandOutput } from "./commands/UpdateRelayCommand";
55
+ import { UpdateRuleSetCommandInput, UpdateRuleSetCommandOutput } from "./commands/UpdateRuleSetCommand";
56
+ import { UpdateTrafficPolicyCommandInput, UpdateTrafficPolicyCommandOutput } from "./commands/UpdateTrafficPolicyCommand";
57
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
58
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
59
+ export { __Client };
60
+ /**
61
+ * @public
62
+ */
63
+ export type ServiceInputTypes = CreateAddonInstanceCommandInput | CreateAddonSubscriptionCommandInput | CreateArchiveCommandInput | CreateIngressPointCommandInput | CreateRelayCommandInput | CreateRuleSetCommandInput | CreateTrafficPolicyCommandInput | DeleteAddonInstanceCommandInput | DeleteAddonSubscriptionCommandInput | DeleteArchiveCommandInput | DeleteIngressPointCommandInput | DeleteRelayCommandInput | DeleteRuleSetCommandInput | DeleteTrafficPolicyCommandInput | GetAddonInstanceCommandInput | GetAddonSubscriptionCommandInput | GetArchiveCommandInput | GetArchiveExportCommandInput | GetArchiveMessageCommandInput | GetArchiveMessageContentCommandInput | GetArchiveSearchCommandInput | GetArchiveSearchResultsCommandInput | GetIngressPointCommandInput | GetRelayCommandInput | GetRuleSetCommandInput | GetTrafficPolicyCommandInput | ListAddonInstancesCommandInput | ListAddonSubscriptionsCommandInput | ListArchiveExportsCommandInput | ListArchiveSearchesCommandInput | ListArchivesCommandInput | ListIngressPointsCommandInput | ListRelaysCommandInput | ListRuleSetsCommandInput | ListTagsForResourceCommandInput | ListTrafficPoliciesCommandInput | StartArchiveExportCommandInput | StartArchiveSearchCommandInput | StopArchiveExportCommandInput | StopArchiveSearchCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateArchiveCommandInput | UpdateIngressPointCommandInput | UpdateRelayCommandInput | UpdateRuleSetCommandInput | UpdateTrafficPolicyCommandInput;
64
+ /**
65
+ * @public
66
+ */
67
+ export type ServiceOutputTypes = CreateAddonInstanceCommandOutput | CreateAddonSubscriptionCommandOutput | CreateArchiveCommandOutput | CreateIngressPointCommandOutput | CreateRelayCommandOutput | CreateRuleSetCommandOutput | CreateTrafficPolicyCommandOutput | DeleteAddonInstanceCommandOutput | DeleteAddonSubscriptionCommandOutput | DeleteArchiveCommandOutput | DeleteIngressPointCommandOutput | DeleteRelayCommandOutput | DeleteRuleSetCommandOutput | DeleteTrafficPolicyCommandOutput | GetAddonInstanceCommandOutput | GetAddonSubscriptionCommandOutput | GetArchiveCommandOutput | GetArchiveExportCommandOutput | GetArchiveMessageCommandOutput | GetArchiveMessageContentCommandOutput | GetArchiveSearchCommandOutput | GetArchiveSearchResultsCommandOutput | GetIngressPointCommandOutput | GetRelayCommandOutput | GetRuleSetCommandOutput | GetTrafficPolicyCommandOutput | ListAddonInstancesCommandOutput | ListAddonSubscriptionsCommandOutput | ListArchiveExportsCommandOutput | ListArchiveSearchesCommandOutput | ListArchivesCommandOutput | ListIngressPointsCommandOutput | ListRelaysCommandOutput | ListRuleSetsCommandOutput | ListTagsForResourceCommandOutput | ListTrafficPoliciesCommandOutput | StartArchiveExportCommandOutput | StartArchiveSearchCommandOutput | StopArchiveExportCommandOutput | StopArchiveSearchCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateArchiveCommandOutput | UpdateIngressPointCommandOutput | UpdateRelayCommandOutput | UpdateRuleSetCommandOutput | UpdateTrafficPolicyCommandOutput;
68
+ /**
69
+ * @public
70
+ */
71
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
72
+ /**
73
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
74
+ */
75
+ requestHandler?: __HttpHandlerUserInput;
76
+ /**
77
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
78
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
79
+ * @internal
80
+ */
81
+ sha256?: __ChecksumConstructor | __HashConstructor;
82
+ /**
83
+ * The function that will be used to convert strings into HTTP endpoints.
84
+ * @internal
85
+ */
86
+ urlParser?: __UrlParser;
87
+ /**
88
+ * A function that can calculate the length of a request body.
89
+ * @internal
90
+ */
91
+ bodyLengthChecker?: __BodyLengthCalculator;
92
+ /**
93
+ * A function that converts a stream into an array of bytes.
94
+ * @internal
95
+ */
96
+ streamCollector?: __StreamCollector;
97
+ /**
98
+ * The function that will be used to convert a base64-encoded string to a byte array.
99
+ * @internal
100
+ */
101
+ base64Decoder?: __Decoder;
102
+ /**
103
+ * The function that will be used to convert binary data to a base64-encoded string.
104
+ * @internal
105
+ */
106
+ base64Encoder?: __Encoder;
107
+ /**
108
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
109
+ * @internal
110
+ */
111
+ utf8Decoder?: __Decoder;
112
+ /**
113
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
114
+ * @internal
115
+ */
116
+ utf8Encoder?: __Encoder;
117
+ /**
118
+ * The runtime environment.
119
+ * @internal
120
+ */
121
+ runtime?: string;
122
+ /**
123
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
124
+ * trait of an operation.
125
+ */
126
+ disableHostPrefix?: boolean;
127
+ /**
128
+ * Unique service identifier.
129
+ * @internal
130
+ */
131
+ serviceId?: string;
132
+ /**
133
+ * Enables IPv6/IPv4 dualstack endpoint.
134
+ */
135
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
136
+ /**
137
+ * Enables FIPS compatible endpoints.
138
+ */
139
+ useFipsEndpoint?: boolean | __Provider<boolean>;
140
+ /**
141
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
142
+ * @internal
143
+ */
144
+ defaultUserAgentProvider?: Provider<__UserAgent>;
145
+ /**
146
+ * The AWS region to which this client will send requests
147
+ */
148
+ region?: string | __Provider<string>;
149
+ /**
150
+ * Default credentials provider; Not available in browser runtime.
151
+ * @deprecated
152
+ * @internal
153
+ */
154
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
155
+ /**
156
+ * Value for how many times a request will be made at most in case of retry.
157
+ */
158
+ maxAttempts?: number | __Provider<number>;
159
+ /**
160
+ * Specifies which retry algorithm to use.
161
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
162
+ *
163
+ */
164
+ retryMode?: string | __Provider<string>;
165
+ /**
166
+ * Optional logger for logging debug/info/warn/error.
167
+ */
168
+ logger?: __Logger;
169
+ /**
170
+ * Optional extensions
171
+ */
172
+ extensions?: RuntimeExtension[];
173
+ /**
174
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
175
+ */
176
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
177
+ }
178
+ /**
179
+ * @public
180
+ */
181
+ export type MailManagerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & UserAgentInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
182
+ /**
183
+ * @public
184
+ *
185
+ * The configuration interface of MailManagerClient class constructor that set the region, credentials and other options.
186
+ */
187
+ export interface MailManagerClientConfig extends MailManagerClientConfigType {
188
+ }
189
+ /**
190
+ * @public
191
+ */
192
+ export type MailManagerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
193
+ /**
194
+ * @public
195
+ *
196
+ * The resolved configuration interface of MailManagerClient class. This is resolved and normalized from the {@link MailManagerClientConfig | constructor configuration interface}.
197
+ */
198
+ export interface MailManagerClientResolvedConfig extends MailManagerClientResolvedConfigType {
199
+ }
200
+ /**
201
+ * <fullname>AWS SES Mail Manager API</fullname>
202
+ * <p>
203
+ * <a href="http://aws.amazon.com/ses">AWS SES Mail Manager API</a> contains operations and data types
204
+ * that comprise the Mail Manager feature of Amazon Simple Email Service.</p>
205
+ * <p>Mail Manager is a set of Amazon SES email gateway features designed to help you strengthen
206
+ * your organization's email infrastructure, simplify email workflow management, and
207
+ * streamline email compliance control. To learn more, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/eb.html">Mail Manager chapter</a> in the Amazon SES Developer
208
+ * Guide.</p>
209
+ * @public
210
+ */
211
+ export declare class MailManagerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MailManagerClientResolvedConfig> {
212
+ /**
213
+ * The resolved configuration of MailManagerClient class. This is resolved and normalized from the {@link MailManagerClientConfig | constructor configuration interface}.
214
+ */
215
+ readonly config: MailManagerClientResolvedConfig;
216
+ constructor(...[configuration]: __CheckOptionalClientConfig<MailManagerClientConfig>);
217
+ /**
218
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
219
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
220
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
221
+ */
222
+ destroy(): void;
223
+ private getDefaultHttpAuthSchemeParametersProvider;
224
+ private getIdentityProviderConfigProvider;
225
+ }
@@ -0,0 +1,29 @@
1
+ import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
+ import { MailManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): MailManagerHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,61 @@
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
+ import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
3
+ import { MailManagerClientResolvedConfig } from "../MailManagerClient";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface MailManagerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
8
+ region?: string;
9
+ }
10
+ /**
11
+ * @internal
12
+ */
13
+ export interface MailManagerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<MailManagerClientResolvedConfig, HandlerExecutionContext, MailManagerHttpAuthSchemeParameters, object> {
14
+ }
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const defaultMailManagerHttpAuthSchemeParametersProvider: (config: MailManagerClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<MailManagerHttpAuthSchemeParameters>;
19
+ /**
20
+ * @internal
21
+ */
22
+ export interface MailManagerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<MailManagerHttpAuthSchemeParameters> {
23
+ }
24
+ /**
25
+ * @internal
26
+ */
27
+ export declare const defaultMailManagerHttpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
28
+ /**
29
+ * @internal
30
+ */
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ /**
33
+ * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
+ * @internal
35
+ */
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ /**
38
+ * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
39
+ * @internal
40
+ */
41
+ httpAuthSchemeProvider?: MailManagerHttpAuthSchemeProvider;
42
+ }
43
+ /**
44
+ * @internal
45
+ */
46
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
+ /**
48
+ * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
+ * @internal
50
+ */
51
+ readonly httpAuthSchemes: HttpAuthScheme[];
52
+ /**
53
+ * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
54
+ * @internal
55
+ */
56
+ readonly httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
57
+ }
58
+ /**
59
+ * @internal
60
+ */
61
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,80 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
4
+ import { CreateAddonInstanceRequest, CreateAddonInstanceResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateAddonInstanceCommand}.
13
+ */
14
+ export interface CreateAddonInstanceCommandInput extends CreateAddonInstanceRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateAddonInstanceCommand}.
20
+ */
21
+ export interface CreateAddonInstanceCommandOutput extends CreateAddonInstanceResponse, __MetadataBearer {
22
+ }
23
+ declare const CreateAddonInstanceCommand_base: {
24
+ new (input: CreateAddonInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAddonInstanceCommandInput, CreateAddonInstanceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateAddonInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAddonInstanceCommandInput, CreateAddonInstanceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Creates an Add On instance for the subscription indicated in the request. The
30
+ * resulting Amazon Resource Name (ARN) can be used in a conditional statement for a rule set or traffic policy.
31
+ * </p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { MailManagerClient, CreateAddonInstanceCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
36
+ * // const { MailManagerClient, CreateAddonInstanceCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
37
+ * const client = new MailManagerClient(config);
38
+ * const input = { // CreateAddonInstanceRequest
39
+ * ClientToken: "STRING_VALUE",
40
+ * AddonSubscriptionId: "STRING_VALUE", // required
41
+ * Tags: [ // TagList
42
+ * { // Tag
43
+ * Key: "STRING_VALUE", // required
44
+ * Value: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * };
48
+ * const command = new CreateAddonInstanceCommand(input);
49
+ * const response = await client.send(command);
50
+ * // { // CreateAddonInstanceResponse
51
+ * // AddonInstanceId: "STRING_VALUE", // required
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param CreateAddonInstanceCommandInput - {@link CreateAddonInstanceCommandInput}
57
+ * @returns {@link CreateAddonInstanceCommandOutput}
58
+ * @see {@link CreateAddonInstanceCommandInput} for command's `input` shape.
59
+ * @see {@link CreateAddonInstanceCommandOutput} for command's `response` shape.
60
+ * @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
61
+ *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>Occurs when a requested resource is not found.</p>
67
+ *
68
+ * @throws {@link ServiceQuotaExceededException} (client fault)
69
+ * <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The request validation has failed. For details, see the accompanying error message.</p>
73
+ *
74
+ * @throws {@link MailManagerServiceException}
75
+ * <p>Base exception class for all service exceptions from MailManager service.</p>
76
+ *
77
+ * @public
78
+ */
79
+ export declare class CreateAddonInstanceCommand extends CreateAddonInstanceCommand_base {
80
+ }
@@ -0,0 +1,77 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
4
+ import { CreateAddonSubscriptionRequest, CreateAddonSubscriptionResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateAddonSubscriptionCommand}.
13
+ */
14
+ export interface CreateAddonSubscriptionCommandInput extends CreateAddonSubscriptionRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateAddonSubscriptionCommand}.
20
+ */
21
+ export interface CreateAddonSubscriptionCommandOutput extends CreateAddonSubscriptionResponse, __MetadataBearer {
22
+ }
23
+ declare const CreateAddonSubscriptionCommand_base: {
24
+ new (input: CreateAddonSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAddonSubscriptionCommandInput, CreateAddonSubscriptionCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateAddonSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAddonSubscriptionCommandInput, CreateAddonSubscriptionCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Creates a subscription for an Add On representing the acceptance of its terms of use
30
+ * and additional pricing. The subscription can then be used to create an instance for use
31
+ * in rule sets or traffic policies.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { MailManagerClient, CreateAddonSubscriptionCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
36
+ * // const { MailManagerClient, CreateAddonSubscriptionCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
37
+ * const client = new MailManagerClient(config);
38
+ * const input = { // CreateAddonSubscriptionRequest
39
+ * ClientToken: "STRING_VALUE",
40
+ * AddonName: "STRING_VALUE", // required
41
+ * Tags: [ // TagList
42
+ * { // Tag
43
+ * Key: "STRING_VALUE", // required
44
+ * Value: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * };
48
+ * const command = new CreateAddonSubscriptionCommand(input);
49
+ * const response = await client.send(command);
50
+ * // { // CreateAddonSubscriptionResponse
51
+ * // AddonSubscriptionId: "STRING_VALUE", // required
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param CreateAddonSubscriptionCommandInput - {@link CreateAddonSubscriptionCommandInput}
57
+ * @returns {@link CreateAddonSubscriptionCommandOutput}
58
+ * @see {@link CreateAddonSubscriptionCommandInput} for command's `input` shape.
59
+ * @see {@link CreateAddonSubscriptionCommandOutput} for command's `response` shape.
60
+ * @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
61
+ *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
64
+ *
65
+ * @throws {@link ServiceQuotaExceededException} (client fault)
66
+ * <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
67
+ *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The request validation has failed. For details, see the accompanying error message.</p>
70
+ *
71
+ * @throws {@link MailManagerServiceException}
72
+ * <p>Base exception class for all service exceptions from MailManager service.</p>
73
+ *
74
+ * @public
75
+ */
76
+ export declare class CreateAddonSubscriptionCommand extends CreateAddonSubscriptionCommand_base {
77
+ }
@@ -0,0 +1,85 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
4
+ import { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateArchiveCommand}.
13
+ */
14
+ export interface CreateArchiveCommandInput extends CreateArchiveRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateArchiveCommand}.
20
+ */
21
+ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __MetadataBearer {
22
+ }
23
+ declare const CreateArchiveCommand_base: {
24
+ new (input: CreateArchiveCommandInput): import("@smithy/smithy-client").CommandImpl<CreateArchiveCommandInput, CreateArchiveCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateArchiveCommandInput): import("@smithy/smithy-client").CommandImpl<CreateArchiveCommandInput, CreateArchiveCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Creates a new email archive resource for storing and retaining emails.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { MailManagerClient, CreateArchiveCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
34
+ * // const { MailManagerClient, CreateArchiveCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
35
+ * const client = new MailManagerClient(config);
36
+ * const input = { // CreateArchiveRequest
37
+ * ClientToken: "STRING_VALUE",
38
+ * ArchiveName: "STRING_VALUE", // required
39
+ * Retention: { // ArchiveRetention Union: only one key present
40
+ * RetentionPeriod: "THREE_MONTHS" || "SIX_MONTHS" || "NINE_MONTHS" || "ONE_YEAR" || "EIGHTEEN_MONTHS" || "TWO_YEARS" || "THIRTY_MONTHS" || "THREE_YEARS" || "FOUR_YEARS" || "FIVE_YEARS" || "SIX_YEARS" || "SEVEN_YEARS" || "EIGHT_YEARS" || "NINE_YEARS" || "TEN_YEARS" || "PERMANENT",
41
+ * },
42
+ * KmsKeyArn: "STRING_VALUE",
43
+ * Tags: [ // TagList
44
+ * { // Tag
45
+ * Key: "STRING_VALUE", // required
46
+ * Value: "STRING_VALUE", // required
47
+ * },
48
+ * ],
49
+ * };
50
+ * const command = new CreateArchiveCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // CreateArchiveResponse
53
+ * // ArchiveId: "STRING_VALUE", // required
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param CreateArchiveCommandInput - {@link CreateArchiveCommandInput}
59
+ * @returns {@link CreateArchiveCommandOutput}
60
+ * @see {@link CreateArchiveCommandInput} for command's `input` shape.
61
+ * @see {@link CreateArchiveCommandOutput} for command's `response` shape.
62
+ * @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>Occurs when a user is denied access to a specific resource or action.</p>
66
+ *
67
+ * @throws {@link ConflictException} (client fault)
68
+ * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
69
+ *
70
+ * @throws {@link ServiceQuotaExceededException} (client fault)
71
+ * <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>The request validation has failed. For details, see the accompanying error message.</p>
78
+ *
79
+ * @throws {@link MailManagerServiceException}
80
+ * <p>Base exception class for all service exceptions from MailManager service.</p>
81
+ *
82
+ * @public
83
+ */
84
+ export declare class CreateArchiveCommand extends CreateArchiveCommand_base {
85
+ }
@@ -0,0 +1,82 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
4
+ import { CreateIngressPointRequest, CreateIngressPointResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateIngressPointCommand}.
13
+ */
14
+ export interface CreateIngressPointCommandInput extends CreateIngressPointRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateIngressPointCommand}.
20
+ */
21
+ export interface CreateIngressPointCommandOutput extends CreateIngressPointResponse, __MetadataBearer {
22
+ }
23
+ declare const CreateIngressPointCommand_base: {
24
+ new (input: CreateIngressPointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngressPointCommandInput, CreateIngressPointCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateIngressPointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIngressPointCommandInput, CreateIngressPointCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Provision a new ingress endpoint resource.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { MailManagerClient, CreateIngressPointCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
34
+ * // const { MailManagerClient, CreateIngressPointCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
35
+ * const client = new MailManagerClient(config);
36
+ * const input = { // CreateIngressPointRequest
37
+ * ClientToken: "STRING_VALUE",
38
+ * IngressPointName: "STRING_VALUE", // required
39
+ * Type: "OPEN" || "AUTH", // required
40
+ * RuleSetId: "STRING_VALUE", // required
41
+ * TrafficPolicyId: "STRING_VALUE", // required
42
+ * IngressPointConfiguration: { // IngressPointConfiguration Union: only one key present
43
+ * SmtpPassword: "STRING_VALUE",
44
+ * SecretArn: "STRING_VALUE",
45
+ * },
46
+ * Tags: [ // TagList
47
+ * { // Tag
48
+ * Key: "STRING_VALUE", // required
49
+ * Value: "STRING_VALUE", // required
50
+ * },
51
+ * ],
52
+ * };
53
+ * const command = new CreateIngressPointCommand(input);
54
+ * const response = await client.send(command);
55
+ * // { // CreateIngressPointResponse
56
+ * // IngressPointId: "STRING_VALUE", // required
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param CreateIngressPointCommandInput - {@link CreateIngressPointCommandInput}
62
+ * @returns {@link CreateIngressPointCommandOutput}
63
+ * @see {@link CreateIngressPointCommandInput} for command's `input` shape.
64
+ * @see {@link CreateIngressPointCommandOutput} for command's `response` shape.
65
+ * @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
66
+ *
67
+ * @throws {@link ConflictException} (client fault)
68
+ * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
69
+ *
70
+ * @throws {@link ServiceQuotaExceededException} (client fault)
71
+ * <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
72
+ *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>The request validation has failed. For details, see the accompanying error message.</p>
75
+ *
76
+ * @throws {@link MailManagerServiceException}
77
+ * <p>Base exception class for all service exceptions from MailManager service.</p>
78
+ *
79
+ * @public
80
+ */
81
+ export declare class CreateIngressPointCommand extends CreateIngressPointCommand_base {
82
+ }