@aws-sdk/client-ses 3.32.0 → 3.36.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 (941) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/SES.js +1083 -0
  3. package/dist-cjs/SESClient.js +51 -0
  4. package/dist-cjs/commands/CloneReceiptRuleSetCommand.js +65 -0
  5. package/dist-cjs/commands/CreateConfigurationSetCommand.js +64 -0
  6. package/dist-cjs/commands/CreateConfigurationSetEventDestinationCommand.js +69 -0
  7. package/dist-cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +64 -0
  8. package/dist-cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +63 -0
  9. package/dist-cjs/commands/CreateReceiptFilterCommand.js +62 -0
  10. package/dist-cjs/commands/CreateReceiptRuleCommand.js +63 -0
  11. package/dist-cjs/commands/CreateReceiptRuleSetCommand.js +63 -0
  12. package/dist-cjs/commands/CreateTemplateCommand.js +63 -0
  13. package/dist-cjs/commands/DeleteConfigurationSetCommand.js +62 -0
  14. package/dist-cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +63 -0
  15. package/dist-cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +69 -0
  16. package/dist-cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +63 -0
  17. package/dist-cjs/commands/DeleteIdentityCommand.js +62 -0
  18. package/dist-cjs/commands/DeleteIdentityPolicyCommand.js +71 -0
  19. package/dist-cjs/commands/DeleteReceiptFilterCommand.js +63 -0
  20. package/dist-cjs/commands/DeleteReceiptRuleCommand.js +63 -0
  21. package/dist-cjs/commands/DeleteReceiptRuleSetCommand.js +66 -0
  22. package/dist-cjs/commands/DeleteTemplateCommand.js +61 -0
  23. package/dist-cjs/commands/DeleteVerifiedEmailAddressCommand.js +61 -0
  24. package/dist-cjs/commands/DescribeActiveReceiptRuleSetCommand.js +64 -0
  25. package/dist-cjs/commands/DescribeConfigurationSetCommand.js +63 -0
  26. package/dist-cjs/commands/DescribeReceiptRuleCommand.js +63 -0
  27. package/dist-cjs/commands/DescribeReceiptRuleSetCommand.js +62 -0
  28. package/dist-cjs/commands/GetAccountSendingEnabledCommand.js +61 -0
  29. package/dist-cjs/commands/GetCustomVerificationEmailTemplateCommand.js +64 -0
  30. package/dist-cjs/commands/GetIdentityDkimAttributesCommand.js +82 -0
  31. package/dist-cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +63 -0
  32. package/dist-cjs/commands/GetIdentityNotificationAttributesCommand.js +65 -0
  33. package/dist-cjs/commands/GetIdentityPoliciesCommand.js +71 -0
  34. package/dist-cjs/commands/GetIdentityVerificationAttributesCommand.js +75 -0
  35. package/dist-cjs/commands/GetSendQuotaCommand.js +61 -0
  36. package/dist-cjs/commands/GetSendStatisticsCommand.js +63 -0
  37. package/dist-cjs/commands/GetTemplateCommand.js +62 -0
  38. package/dist-cjs/commands/ListConfigurationSetsCommand.js +69 -0
  39. package/dist-cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +64 -0
  40. package/dist-cjs/commands/ListIdentitiesCommand.js +62 -0
  41. package/dist-cjs/commands/ListIdentityPoliciesCommand.js +71 -0
  42. package/dist-cjs/commands/ListReceiptFiltersCommand.js +64 -0
  43. package/dist-cjs/commands/ListReceiptRuleSetsCommand.js +65 -0
  44. package/dist-cjs/commands/ListTemplatesCommand.js +62 -0
  45. package/dist-cjs/commands/ListVerifiedEmailAddressesCommand.js +61 -0
  46. package/dist-cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +60 -0
  47. package/dist-cjs/commands/PutIdentityPolicyCommand.js +70 -0
  48. package/dist-cjs/commands/ReorderReceiptRuleSetCommand.js +67 -0
  49. package/dist-cjs/commands/SendBounceCommand.js +68 -0
  50. package/dist-cjs/commands/SendBulkTemplatedEmailCommand.js +102 -0
  51. package/dist-cjs/commands/SendCustomVerificationEmailCommand.js +68 -0
  52. package/dist-cjs/commands/SendEmailCommand.js +104 -0
  53. package/dist-cjs/commands/SendRawEmailCommand.js +168 -0
  54. package/dist-cjs/commands/SendTemplatedEmailCommand.js +109 -0
  55. package/dist-cjs/commands/SetActiveReceiptRuleSetCommand.js +66 -0
  56. package/dist-cjs/commands/SetIdentityDkimEnabledCommand.js +72 -0
  57. package/dist-cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +70 -0
  58. package/dist-cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +65 -0
  59. package/dist-cjs/commands/SetIdentityMailFromDomainCommand.js +69 -0
  60. package/dist-cjs/commands/SetIdentityNotificationTopicCommand.js +68 -0
  61. package/dist-cjs/commands/SetReceiptRulePositionCommand.js +63 -0
  62. package/dist-cjs/commands/TestRenderTemplateCommand.js +62 -0
  63. package/dist-cjs/commands/UpdateAccountSendingEnabledCommand.js +65 -0
  64. package/dist-cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +71 -0
  65. package/dist-cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +64 -0
  66. package/dist-cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +65 -0
  67. package/dist-cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +64 -0
  68. package/dist-cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +63 -0
  69. package/dist-cjs/commands/UpdateReceiptRuleCommand.js +63 -0
  70. package/dist-cjs/commands/UpdateTemplateCommand.js +63 -0
  71. package/dist-cjs/commands/VerifyDomainDkimCommand.js +98 -0
  72. package/dist-cjs/commands/VerifyDomainIdentityCommand.js +66 -0
  73. package/dist-cjs/commands/VerifyEmailAddressCommand.js +61 -0
  74. package/dist-cjs/commands/VerifyEmailIdentityCommand.js +63 -0
  75. package/dist-cjs/endpoints.js +61 -0
  76. package/dist-cjs/index.js +81 -0
  77. package/dist-cjs/models/index.js +4 -0
  78. package/dist-cjs/models/models_0.js +1941 -0
  79. package/dist-cjs/pagination/Interfaces.js +2 -0
  80. package/dist-cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +45 -0
  81. package/dist-cjs/pagination/ListIdentitiesPaginator.js +45 -0
  82. package/dist-cjs/protocols/Aws_query.js +8205 -0
  83. package/dist-cjs/runtimeConfig.browser.js +41 -0
  84. package/dist-cjs/runtimeConfig.js +46 -0
  85. package/dist-cjs/runtimeConfig.native.js +19 -0
  86. package/dist-cjs/runtimeConfig.shared.js +20 -0
  87. package/dist-cjs/waiters/waitForIdentityExists.js +52 -0
  88. package/dist-es/SES.js +1075 -0
  89. package/dist-es/SESClient.js +37 -0
  90. package/dist-es/commands/CloneReceiptRuleSetCommand.js +39 -0
  91. package/dist-es/commands/CreateConfigurationSetCommand.js +39 -0
  92. package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +39 -0
  93. package/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +39 -0
  94. package/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +39 -0
  95. package/dist-es/commands/CreateReceiptFilterCommand.js +39 -0
  96. package/dist-es/commands/CreateReceiptRuleCommand.js +39 -0
  97. package/dist-es/commands/CreateReceiptRuleSetCommand.js +39 -0
  98. package/dist-es/commands/CreateTemplateCommand.js +39 -0
  99. package/dist-es/commands/DeleteConfigurationSetCommand.js +39 -0
  100. package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +39 -0
  101. package/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +39 -0
  102. package/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +39 -0
  103. package/dist-es/commands/DeleteIdentityCommand.js +39 -0
  104. package/dist-es/commands/DeleteIdentityPolicyCommand.js +39 -0
  105. package/dist-es/commands/DeleteReceiptFilterCommand.js +39 -0
  106. package/dist-es/commands/DeleteReceiptRuleCommand.js +39 -0
  107. package/dist-es/commands/DeleteReceiptRuleSetCommand.js +39 -0
  108. package/dist-es/commands/DeleteTemplateCommand.js +39 -0
  109. package/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +39 -0
  110. package/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +39 -0
  111. package/dist-es/commands/DescribeConfigurationSetCommand.js +39 -0
  112. package/dist-es/commands/DescribeReceiptRuleCommand.js +39 -0
  113. package/dist-es/commands/DescribeReceiptRuleSetCommand.js +39 -0
  114. package/dist-es/commands/GetAccountSendingEnabledCommand.js +39 -0
  115. package/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +39 -0
  116. package/dist-es/commands/GetIdentityDkimAttributesCommand.js +39 -0
  117. package/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +39 -0
  118. package/dist-es/commands/GetIdentityNotificationAttributesCommand.js +39 -0
  119. package/dist-es/commands/GetIdentityPoliciesCommand.js +39 -0
  120. package/dist-es/commands/GetIdentityVerificationAttributesCommand.js +39 -0
  121. package/dist-es/commands/GetSendQuotaCommand.js +39 -0
  122. package/dist-es/commands/GetSendStatisticsCommand.js +39 -0
  123. package/dist-es/commands/GetTemplateCommand.js +39 -0
  124. package/dist-es/commands/ListConfigurationSetsCommand.js +39 -0
  125. package/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +39 -0
  126. package/dist-es/commands/ListIdentitiesCommand.js +39 -0
  127. package/dist-es/commands/ListIdentityPoliciesCommand.js +39 -0
  128. package/dist-es/commands/ListReceiptFiltersCommand.js +39 -0
  129. package/dist-es/commands/ListReceiptRuleSetsCommand.js +39 -0
  130. package/dist-es/commands/ListTemplatesCommand.js +39 -0
  131. package/dist-es/commands/ListVerifiedEmailAddressesCommand.js +39 -0
  132. package/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +39 -0
  133. package/dist-es/commands/PutIdentityPolicyCommand.js +39 -0
  134. package/dist-es/commands/ReorderReceiptRuleSetCommand.js +39 -0
  135. package/dist-es/commands/SendBounceCommand.js +39 -0
  136. package/dist-es/commands/SendBulkTemplatedEmailCommand.js +39 -0
  137. package/dist-es/commands/SendCustomVerificationEmailCommand.js +39 -0
  138. package/dist-es/commands/SendEmailCommand.js +39 -0
  139. package/dist-es/commands/SendRawEmailCommand.js +39 -0
  140. package/dist-es/commands/SendTemplatedEmailCommand.js +39 -0
  141. package/dist-es/commands/SetActiveReceiptRuleSetCommand.js +39 -0
  142. package/dist-es/commands/SetIdentityDkimEnabledCommand.js +39 -0
  143. package/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +39 -0
  144. package/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +39 -0
  145. package/dist-es/commands/SetIdentityMailFromDomainCommand.js +39 -0
  146. package/dist-es/commands/SetIdentityNotificationTopicCommand.js +39 -0
  147. package/dist-es/commands/SetReceiptRulePositionCommand.js +39 -0
  148. package/dist-es/commands/TestRenderTemplateCommand.js +39 -0
  149. package/dist-es/commands/UpdateAccountSendingEnabledCommand.js +39 -0
  150. package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +39 -0
  151. package/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +39 -0
  152. package/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +39 -0
  153. package/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +39 -0
  154. package/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +39 -0
  155. package/dist-es/commands/UpdateReceiptRuleCommand.js +39 -0
  156. package/dist-es/commands/UpdateTemplateCommand.js +39 -0
  157. package/dist-es/commands/VerifyDomainDkimCommand.js +39 -0
  158. package/dist-es/commands/VerifyDomainIdentityCommand.js +39 -0
  159. package/dist-es/commands/VerifyEmailAddressCommand.js +39 -0
  160. package/dist-es/commands/VerifyEmailIdentityCommand.js +39 -0
  161. package/dist-es/endpoints.js +57 -0
  162. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  163. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  164. package/dist-es/models/models_0.js +910 -0
  165. package/dist-es/pagination/Interfaces.js +1 -0
  166. package/dist-es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +74 -0
  167. package/dist-es/pagination/ListIdentitiesPaginator.js +74 -0
  168. package/dist-es/protocols/Aws_query.js +8685 -0
  169. package/dist-es/runtimeConfig.browser.js +16 -0
  170. package/dist-es/runtimeConfig.js +21 -0
  171. package/dist-es/runtimeConfig.native.js +8 -0
  172. package/dist-es/runtimeConfig.shared.js +13 -0
  173. package/dist-es/waiters/waitForIdentityExists.js +69 -0
  174. package/dist-types/SES.d.ts +1126 -0
  175. package/dist-types/SESClient.d.ts +211 -0
  176. package/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
  177. package/dist-types/commands/CreateConfigurationSetCommand.d.ts +39 -0
  178. package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
  179. package/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
  180. package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
  181. package/dist-types/commands/CreateReceiptFilterCommand.d.ts +37 -0
  182. package/dist-types/commands/CreateReceiptRuleCommand.d.ts +38 -0
  183. package/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
  184. package/dist-types/commands/CreateTemplateCommand.d.ts +38 -0
  185. package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +37 -0
  186. package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
  187. package/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
  188. package/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
  189. package/dist-types/commands/DeleteIdentityCommand.d.ts +37 -0
  190. package/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
  191. package/dist-types/commands/DeleteReceiptFilterCommand.d.ts +38 -0
  192. package/dist-types/commands/DeleteReceiptRuleCommand.d.ts +38 -0
  193. package/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
  194. package/dist-types/commands/DeleteTemplateCommand.d.ts +36 -0
  195. package/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
  196. package/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
  197. package/dist-types/commands/DescribeConfigurationSetCommand.d.ts +38 -0
  198. package/dist-types/commands/DescribeReceiptRuleCommand.d.ts +38 -0
  199. package/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
  200. package/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
  201. package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
  202. package/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
  203. package/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
  204. package/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
  205. package/dist-types/commands/GetIdentityPoliciesCommand.d.ts +46 -0
  206. package/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
  207. package/dist-types/commands/GetSendQuotaCommand.d.ts +36 -0
  208. package/dist-types/commands/GetSendStatisticsCommand.d.ts +38 -0
  209. package/dist-types/commands/GetTemplateCommand.d.ts +37 -0
  210. package/dist-types/commands/ListConfigurationSetsCommand.d.ts +44 -0
  211. package/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
  212. package/dist-types/commands/ListIdentitiesCommand.d.ts +37 -0
  213. package/dist-types/commands/ListIdentityPoliciesCommand.d.ts +46 -0
  214. package/dist-types/commands/ListReceiptFiltersCommand.d.ts +39 -0
  215. package/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
  216. package/dist-types/commands/ListTemplatesCommand.d.ts +37 -0
  217. package/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
  218. package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
  219. package/dist-types/commands/PutIdentityPolicyCommand.d.ts +45 -0
  220. package/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
  221. package/dist-types/commands/SendBounceCommand.d.ts +43 -0
  222. package/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
  223. package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
  224. package/dist-types/commands/SendEmailCommand.d.ts +79 -0
  225. package/dist-types/commands/SendRawEmailCommand.d.ts +143 -0
  226. package/dist-types/commands/SendTemplatedEmailCommand.d.ts +84 -0
  227. package/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
  228. package/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
  229. package/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
  230. package/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
  231. package/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
  232. package/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
  233. package/dist-types/commands/SetReceiptRulePositionCommand.d.ts +38 -0
  234. package/dist-types/commands/TestRenderTemplateCommand.d.ts +37 -0
  235. package/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
  236. package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
  237. package/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
  238. package/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
  239. package/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
  240. package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
  241. package/dist-types/commands/UpdateReceiptRuleCommand.d.ts +38 -0
  242. package/dist-types/commands/UpdateTemplateCommand.d.ts +38 -0
  243. package/dist-types/commands/VerifyDomainDkimCommand.d.ts +73 -0
  244. package/dist-types/commands/VerifyDomainIdentityCommand.d.ts +41 -0
  245. package/dist-types/commands/VerifyEmailAddressCommand.d.ts +36 -0
  246. package/dist-types/commands/VerifyEmailIdentityCommand.d.ts +38 -0
  247. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  248. package/{index.ts → dist-types/index.d.ts} +0 -0
  249. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  250. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  251. package/dist-types/pagination/Interfaces.d.ts +6 -0
  252. package/dist-types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
  253. package/dist-types/pagination/ListIdentitiesPaginator.d.ts +4 -0
  254. package/dist-types/protocols/Aws_query.d.ts +215 -0
  255. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  256. package/dist-types/runtimeConfig.d.ts +37 -0
  257. package/dist-types/runtimeConfig.native.d.ts +36 -0
  258. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  259. package/dist-types/ts3.4/SES.d.ts +1126 -0
  260. package/dist-types/ts3.4/SESClient.d.ts +211 -0
  261. package/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
  262. package/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +39 -0
  263. package/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
  264. package/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
  265. package/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
  266. package/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +37 -0
  267. package/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +38 -0
  268. package/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
  269. package/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +38 -0
  270. package/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +37 -0
  271. package/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
  272. package/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
  273. package/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
  274. package/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +37 -0
  275. package/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
  276. package/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +38 -0
  277. package/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +38 -0
  278. package/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
  279. package/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +36 -0
  280. package/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
  281. package/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
  282. package/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +38 -0
  283. package/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +38 -0
  284. package/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
  285. package/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
  286. package/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
  287. package/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
  288. package/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
  289. package/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
  290. package/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +46 -0
  291. package/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
  292. package/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +36 -0
  293. package/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +38 -0
  294. package/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +37 -0
  295. package/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +44 -0
  296. package/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
  297. package/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +37 -0
  298. package/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +46 -0
  299. package/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +39 -0
  300. package/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
  301. package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +37 -0
  302. package/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
  303. package/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
  304. package/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +45 -0
  305. package/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
  306. package/dist-types/ts3.4/commands/SendBounceCommand.d.ts +43 -0
  307. package/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
  308. package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
  309. package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +79 -0
  310. package/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +143 -0
  311. package/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +84 -0
  312. package/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
  313. package/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
  314. package/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
  315. package/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
  316. package/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
  317. package/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
  318. package/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +38 -0
  319. package/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +37 -0
  320. package/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
  321. package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
  322. package/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
  323. package/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
  324. package/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
  325. package/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
  326. package/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +38 -0
  327. package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +38 -0
  328. package/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +73 -0
  329. package/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +41 -0
  330. package/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +36 -0
  331. package/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +38 -0
  332. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  333. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  334. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  335. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  336. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  337. package/dist-types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
  338. package/dist-types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +4 -0
  339. package/dist-types/ts3.4/protocols/Aws_query.d.ts +215 -0
  340. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  341. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  342. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  343. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  344. package/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +14 -0
  345. package/dist-types/waiters/waitForIdentityExists.d.ts +14 -0
  346. package/package.json +53 -50
  347. package/SES.ts +0 -3242
  348. package/SESClient.ts +0 -606
  349. package/commands/CloneReceiptRuleSetCommand.ts +0 -99
  350. package/commands/CreateConfigurationSetCommand.ts +0 -98
  351. package/commands/CreateConfigurationSetEventDestinationCommand.ts +0 -115
  352. package/commands/CreateConfigurationSetTrackingOptionsCommand.ts +0 -110
  353. package/commands/CreateCustomVerificationEmailTemplateCommand.ts +0 -104
  354. package/commands/CreateReceiptFilterCommand.ts +0 -96
  355. package/commands/CreateReceiptRuleCommand.ts +0 -97
  356. package/commands/CreateReceiptRuleSetCommand.ts +0 -97
  357. package/commands/CreateTemplateCommand.ts +0 -97
  358. package/commands/DeleteConfigurationSetCommand.ts +0 -96
  359. package/commands/DeleteConfigurationSetEventDestinationCommand.ts +0 -109
  360. package/commands/DeleteConfigurationSetTrackingOptionsCommand.ts +0 -115
  361. package/commands/DeleteCustomVerificationEmailTemplateCommand.ts +0 -104
  362. package/commands/DeleteIdentityCommand.ts +0 -96
  363. package/commands/DeleteIdentityPolicyCommand.ts +0 -105
  364. package/commands/DeleteReceiptFilterCommand.ts +0 -97
  365. package/commands/DeleteReceiptRuleCommand.ts +0 -97
  366. package/commands/DeleteReceiptRuleSetCommand.ts +0 -100
  367. package/commands/DeleteTemplateCommand.ts +0 -95
  368. package/commands/DeleteVerifiedEmailAddressCommand.ts +0 -98
  369. package/commands/DescribeActiveReceiptRuleSetCommand.ts +0 -103
  370. package/commands/DescribeConfigurationSetCommand.ts +0 -97
  371. package/commands/DescribeReceiptRuleCommand.ts +0 -97
  372. package/commands/DescribeReceiptRuleSetCommand.ts +0 -96
  373. package/commands/GetAccountSendingEnabledCommand.ts +0 -95
  374. package/commands/GetCustomVerificationEmailTemplateCommand.ts +0 -109
  375. package/commands/GetIdentityDkimAttributesCommand.ts +0 -119
  376. package/commands/GetIdentityMailFromDomainAttributesCommand.ts +0 -108
  377. package/commands/GetIdentityNotificationAttributesCommand.ts +0 -110
  378. package/commands/GetIdentityPoliciesCommand.ts +0 -105
  379. package/commands/GetIdentityVerificationAttributesCommand.ts +0 -120
  380. package/commands/GetSendQuotaCommand.ts +0 -92
  381. package/commands/GetSendStatisticsCommand.ts +0 -97
  382. package/commands/GetTemplateCommand.ts +0 -93
  383. package/commands/ListConfigurationSetsCommand.ts +0 -103
  384. package/commands/ListCustomVerificationEmailTemplatesCommand.ts +0 -109
  385. package/commands/ListIdentitiesCommand.ts +0 -96
  386. package/commands/ListIdentityPoliciesCommand.ts +0 -105
  387. package/commands/ListReceiptFiltersCommand.ts +0 -98
  388. package/commands/ListReceiptRuleSetsCommand.ts +0 -99
  389. package/commands/ListTemplatesCommand.ts +0 -96
  390. package/commands/ListVerifiedEmailAddressesCommand.ts +0 -98
  391. package/commands/PutConfigurationSetDeliveryOptionsCommand.ts +0 -105
  392. package/commands/PutIdentityPolicyCommand.ts +0 -104
  393. package/commands/ReorderReceiptRuleSetCommand.ts +0 -101
  394. package/commands/SendBounceCommand.ts +0 -99
  395. package/commands/SendBulkTemplatedEmailCommand.ts +0 -136
  396. package/commands/SendCustomVerificationEmailCommand.ts +0 -107
  397. package/commands/SendEmailCommand.ts +0 -131
  398. package/commands/SendRawEmailCommand.ts +0 -199
  399. package/commands/SendTemplatedEmailCommand.ts +0 -143
  400. package/commands/SetActiveReceiptRuleSetCommand.ts +0 -100
  401. package/commands/SetIdentityDkimEnabledCommand.ts +0 -106
  402. package/commands/SetIdentityFeedbackForwardingEnabledCommand.ts +0 -115
  403. package/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts +0 -114
  404. package/commands/SetIdentityMailFromDomainCommand.ts +0 -106
  405. package/commands/SetIdentityNotificationTopicCommand.ts +0 -107
  406. package/commands/SetReceiptRulePositionCommand.ts +0 -97
  407. package/commands/TestRenderTemplateCommand.ts +0 -96
  408. package/commands/UpdateAccountSendingEnabledCommand.ts +0 -102
  409. package/commands/UpdateConfigurationSetEventDestinationCommand.ts +0 -117
  410. package/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts +0 -108
  411. package/commands/UpdateConfigurationSetSendingEnabledCommand.ts +0 -105
  412. package/commands/UpdateConfigurationSetTrackingOptionsCommand.ts +0 -110
  413. package/commands/UpdateCustomVerificationEmailTemplateCommand.ts +0 -104
  414. package/commands/UpdateReceiptRuleCommand.ts +0 -97
  415. package/commands/UpdateTemplateCommand.ts +0 -97
  416. package/commands/VerifyDomainDkimCommand.ts +0 -132
  417. package/commands/VerifyDomainIdentityCommand.ts +0 -100
  418. package/commands/VerifyEmailAddressCommand.ts +0 -95
  419. package/commands/VerifyEmailIdentityCommand.ts +0 -97
  420. package/dist/cjs/SES.js +0 -1084
  421. package/dist/cjs/SES.js.map +0 -1
  422. package/dist/cjs/SESClient.js +0 -52
  423. package/dist/cjs/SESClient.js.map +0 -1
  424. package/dist/cjs/commands/CloneReceiptRuleSetCommand.js +0 -66
  425. package/dist/cjs/commands/CloneReceiptRuleSetCommand.js.map +0 -1
  426. package/dist/cjs/commands/CreateConfigurationSetCommand.js +0 -65
  427. package/dist/cjs/commands/CreateConfigurationSetCommand.js.map +0 -1
  428. package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js +0 -70
  429. package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
  430. package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -65
  431. package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
  432. package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -64
  433. package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
  434. package/dist/cjs/commands/CreateReceiptFilterCommand.js +0 -63
  435. package/dist/cjs/commands/CreateReceiptFilterCommand.js.map +0 -1
  436. package/dist/cjs/commands/CreateReceiptRuleCommand.js +0 -64
  437. package/dist/cjs/commands/CreateReceiptRuleCommand.js.map +0 -1
  438. package/dist/cjs/commands/CreateReceiptRuleSetCommand.js +0 -64
  439. package/dist/cjs/commands/CreateReceiptRuleSetCommand.js.map +0 -1
  440. package/dist/cjs/commands/CreateTemplateCommand.js +0 -64
  441. package/dist/cjs/commands/CreateTemplateCommand.js.map +0 -1
  442. package/dist/cjs/commands/DeleteConfigurationSetCommand.js +0 -63
  443. package/dist/cjs/commands/DeleteConfigurationSetCommand.js.map +0 -1
  444. package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -64
  445. package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
  446. package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -70
  447. package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
  448. package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -64
  449. package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
  450. package/dist/cjs/commands/DeleteIdentityCommand.js +0 -63
  451. package/dist/cjs/commands/DeleteIdentityCommand.js.map +0 -1
  452. package/dist/cjs/commands/DeleteIdentityPolicyCommand.js +0 -72
  453. package/dist/cjs/commands/DeleteIdentityPolicyCommand.js.map +0 -1
  454. package/dist/cjs/commands/DeleteReceiptFilterCommand.js +0 -64
  455. package/dist/cjs/commands/DeleteReceiptFilterCommand.js.map +0 -1
  456. package/dist/cjs/commands/DeleteReceiptRuleCommand.js +0 -64
  457. package/dist/cjs/commands/DeleteReceiptRuleCommand.js.map +0 -1
  458. package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js +0 -67
  459. package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
  460. package/dist/cjs/commands/DeleteTemplateCommand.js +0 -62
  461. package/dist/cjs/commands/DeleteTemplateCommand.js.map +0 -1
  462. package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js +0 -62
  463. package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
  464. package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js +0 -65
  465. package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
  466. package/dist/cjs/commands/DescribeConfigurationSetCommand.js +0 -64
  467. package/dist/cjs/commands/DescribeConfigurationSetCommand.js.map +0 -1
  468. package/dist/cjs/commands/DescribeReceiptRuleCommand.js +0 -64
  469. package/dist/cjs/commands/DescribeReceiptRuleCommand.js.map +0 -1
  470. package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js +0 -63
  471. package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
  472. package/dist/cjs/commands/GetAccountSendingEnabledCommand.js +0 -62
  473. package/dist/cjs/commands/GetAccountSendingEnabledCommand.js.map +0 -1
  474. package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js +0 -65
  475. package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
  476. package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js +0 -83
  477. package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
  478. package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -64
  479. package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
  480. package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js +0 -66
  481. package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
  482. package/dist/cjs/commands/GetIdentityPoliciesCommand.js +0 -72
  483. package/dist/cjs/commands/GetIdentityPoliciesCommand.js.map +0 -1
  484. package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js +0 -76
  485. package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
  486. package/dist/cjs/commands/GetSendQuotaCommand.js +0 -62
  487. package/dist/cjs/commands/GetSendQuotaCommand.js.map +0 -1
  488. package/dist/cjs/commands/GetSendStatisticsCommand.js +0 -64
  489. package/dist/cjs/commands/GetSendStatisticsCommand.js.map +0 -1
  490. package/dist/cjs/commands/GetTemplateCommand.js +0 -63
  491. package/dist/cjs/commands/GetTemplateCommand.js.map +0 -1
  492. package/dist/cjs/commands/ListConfigurationSetsCommand.js +0 -70
  493. package/dist/cjs/commands/ListConfigurationSetsCommand.js.map +0 -1
  494. package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -65
  495. package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
  496. package/dist/cjs/commands/ListIdentitiesCommand.js +0 -63
  497. package/dist/cjs/commands/ListIdentitiesCommand.js.map +0 -1
  498. package/dist/cjs/commands/ListIdentityPoliciesCommand.js +0 -72
  499. package/dist/cjs/commands/ListIdentityPoliciesCommand.js.map +0 -1
  500. package/dist/cjs/commands/ListReceiptFiltersCommand.js +0 -65
  501. package/dist/cjs/commands/ListReceiptFiltersCommand.js.map +0 -1
  502. package/dist/cjs/commands/ListReceiptRuleSetsCommand.js +0 -66
  503. package/dist/cjs/commands/ListReceiptRuleSetsCommand.js.map +0 -1
  504. package/dist/cjs/commands/ListTemplatesCommand.js +0 -63
  505. package/dist/cjs/commands/ListTemplatesCommand.js.map +0 -1
  506. package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js +0 -62
  507. package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
  508. package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -61
  509. package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
  510. package/dist/cjs/commands/PutIdentityPolicyCommand.js +0 -71
  511. package/dist/cjs/commands/PutIdentityPolicyCommand.js.map +0 -1
  512. package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js +0 -68
  513. package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
  514. package/dist/cjs/commands/SendBounceCommand.js +0 -69
  515. package/dist/cjs/commands/SendBounceCommand.js.map +0 -1
  516. package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js +0 -103
  517. package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
  518. package/dist/cjs/commands/SendCustomVerificationEmailCommand.js +0 -69
  519. package/dist/cjs/commands/SendCustomVerificationEmailCommand.js.map +0 -1
  520. package/dist/cjs/commands/SendEmailCommand.js +0 -105
  521. package/dist/cjs/commands/SendEmailCommand.js.map +0 -1
  522. package/dist/cjs/commands/SendRawEmailCommand.js +0 -169
  523. package/dist/cjs/commands/SendRawEmailCommand.js.map +0 -1
  524. package/dist/cjs/commands/SendTemplatedEmailCommand.js +0 -110
  525. package/dist/cjs/commands/SendTemplatedEmailCommand.js.map +0 -1
  526. package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js +0 -67
  527. package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
  528. package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js +0 -73
  529. package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
  530. package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -71
  531. package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
  532. package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -66
  533. package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
  534. package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js +0 -70
  535. package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
  536. package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js +0 -69
  537. package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
  538. package/dist/cjs/commands/SetReceiptRulePositionCommand.js +0 -64
  539. package/dist/cjs/commands/SetReceiptRulePositionCommand.js.map +0 -1
  540. package/dist/cjs/commands/TestRenderTemplateCommand.js +0 -63
  541. package/dist/cjs/commands/TestRenderTemplateCommand.js.map +0 -1
  542. package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js +0 -66
  543. package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
  544. package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -72
  545. package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
  546. package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -65
  547. package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
  548. package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -66
  549. package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
  550. package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -65
  551. package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
  552. package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -64
  553. package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
  554. package/dist/cjs/commands/UpdateReceiptRuleCommand.js +0 -64
  555. package/dist/cjs/commands/UpdateReceiptRuleCommand.js.map +0 -1
  556. package/dist/cjs/commands/UpdateTemplateCommand.js +0 -64
  557. package/dist/cjs/commands/UpdateTemplateCommand.js.map +0 -1
  558. package/dist/cjs/commands/VerifyDomainDkimCommand.js +0 -99
  559. package/dist/cjs/commands/VerifyDomainDkimCommand.js.map +0 -1
  560. package/dist/cjs/commands/VerifyDomainIdentityCommand.js +0 -67
  561. package/dist/cjs/commands/VerifyDomainIdentityCommand.js.map +0 -1
  562. package/dist/cjs/commands/VerifyEmailAddressCommand.js +0 -62
  563. package/dist/cjs/commands/VerifyEmailAddressCommand.js.map +0 -1
  564. package/dist/cjs/commands/VerifyEmailIdentityCommand.js +0 -64
  565. package/dist/cjs/commands/VerifyEmailIdentityCommand.js.map +0 -1
  566. package/dist/cjs/endpoints.js +0 -62
  567. package/dist/cjs/endpoints.js.map +0 -1
  568. package/dist/cjs/index.js +0 -82
  569. package/dist/cjs/index.js.map +0 -1
  570. package/dist/cjs/models/index.js +0 -5
  571. package/dist/cjs/models/index.js.map +0 -1
  572. package/dist/cjs/models/models_0.js +0 -1942
  573. package/dist/cjs/models/models_0.js.map +0 -1
  574. package/dist/cjs/package.json +0 -94
  575. package/dist/cjs/pagination/Interfaces.js +0 -3
  576. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  577. package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -46
  578. package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
  579. package/dist/cjs/pagination/ListIdentitiesPaginator.js +0 -46
  580. package/dist/cjs/pagination/ListIdentitiesPaginator.js.map +0 -1
  581. package/dist/cjs/protocols/Aws_query.js +0 -8206
  582. package/dist/cjs/protocols/Aws_query.js.map +0 -1
  583. package/dist/cjs/runtimeConfig.browser.js +0 -41
  584. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  585. package/dist/cjs/runtimeConfig.js +0 -46
  586. package/dist/cjs/runtimeConfig.js.map +0 -1
  587. package/dist/cjs/runtimeConfig.native.js +0 -20
  588. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  589. package/dist/cjs/runtimeConfig.shared.js +0 -21
  590. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  591. package/dist/cjs/waiters/waitForIdentityExists.js +0 -53
  592. package/dist/cjs/waiters/waitForIdentityExists.js.map +0 -1
  593. package/dist/es/SES.js +0 -1087
  594. package/dist/es/SES.js.map +0 -1
  595. package/dist/es/SESClient.js +0 -54
  596. package/dist/es/SESClient.js.map +0 -1
  597. package/dist/es/commands/CloneReceiptRuleSetCommand.js +0 -70
  598. package/dist/es/commands/CloneReceiptRuleSetCommand.js.map +0 -1
  599. package/dist/es/commands/CreateConfigurationSetCommand.js +0 -69
  600. package/dist/es/commands/CreateConfigurationSetCommand.js.map +0 -1
  601. package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js +0 -74
  602. package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
  603. package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -69
  604. package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
  605. package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -68
  606. package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
  607. package/dist/es/commands/CreateReceiptFilterCommand.js +0 -67
  608. package/dist/es/commands/CreateReceiptFilterCommand.js.map +0 -1
  609. package/dist/es/commands/CreateReceiptRuleCommand.js +0 -68
  610. package/dist/es/commands/CreateReceiptRuleCommand.js.map +0 -1
  611. package/dist/es/commands/CreateReceiptRuleSetCommand.js +0 -68
  612. package/dist/es/commands/CreateReceiptRuleSetCommand.js.map +0 -1
  613. package/dist/es/commands/CreateTemplateCommand.js +0 -68
  614. package/dist/es/commands/CreateTemplateCommand.js.map +0 -1
  615. package/dist/es/commands/DeleteConfigurationSetCommand.js +0 -67
  616. package/dist/es/commands/DeleteConfigurationSetCommand.js.map +0 -1
  617. package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -68
  618. package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
  619. package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -74
  620. package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
  621. package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -68
  622. package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
  623. package/dist/es/commands/DeleteIdentityCommand.js +0 -67
  624. package/dist/es/commands/DeleteIdentityCommand.js.map +0 -1
  625. package/dist/es/commands/DeleteIdentityPolicyCommand.js +0 -76
  626. package/dist/es/commands/DeleteIdentityPolicyCommand.js.map +0 -1
  627. package/dist/es/commands/DeleteReceiptFilterCommand.js +0 -68
  628. package/dist/es/commands/DeleteReceiptFilterCommand.js.map +0 -1
  629. package/dist/es/commands/DeleteReceiptRuleCommand.js +0 -68
  630. package/dist/es/commands/DeleteReceiptRuleCommand.js.map +0 -1
  631. package/dist/es/commands/DeleteReceiptRuleSetCommand.js +0 -71
  632. package/dist/es/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
  633. package/dist/es/commands/DeleteTemplateCommand.js +0 -66
  634. package/dist/es/commands/DeleteTemplateCommand.js.map +0 -1
  635. package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js +0 -66
  636. package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
  637. package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js +0 -69
  638. package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
  639. package/dist/es/commands/DescribeConfigurationSetCommand.js +0 -68
  640. package/dist/es/commands/DescribeConfigurationSetCommand.js.map +0 -1
  641. package/dist/es/commands/DescribeReceiptRuleCommand.js +0 -68
  642. package/dist/es/commands/DescribeReceiptRuleCommand.js.map +0 -1
  643. package/dist/es/commands/DescribeReceiptRuleSetCommand.js +0 -67
  644. package/dist/es/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
  645. package/dist/es/commands/GetAccountSendingEnabledCommand.js +0 -66
  646. package/dist/es/commands/GetAccountSendingEnabledCommand.js.map +0 -1
  647. package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js +0 -69
  648. package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
  649. package/dist/es/commands/GetIdentityDkimAttributesCommand.js +0 -87
  650. package/dist/es/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
  651. package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -68
  652. package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
  653. package/dist/es/commands/GetIdentityNotificationAttributesCommand.js +0 -70
  654. package/dist/es/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
  655. package/dist/es/commands/GetIdentityPoliciesCommand.js +0 -76
  656. package/dist/es/commands/GetIdentityPoliciesCommand.js.map +0 -1
  657. package/dist/es/commands/GetIdentityVerificationAttributesCommand.js +0 -80
  658. package/dist/es/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
  659. package/dist/es/commands/GetSendQuotaCommand.js +0 -66
  660. package/dist/es/commands/GetSendQuotaCommand.js.map +0 -1
  661. package/dist/es/commands/GetSendStatisticsCommand.js +0 -68
  662. package/dist/es/commands/GetSendStatisticsCommand.js.map +0 -1
  663. package/dist/es/commands/GetTemplateCommand.js +0 -67
  664. package/dist/es/commands/GetTemplateCommand.js.map +0 -1
  665. package/dist/es/commands/ListConfigurationSetsCommand.js +0 -74
  666. package/dist/es/commands/ListConfigurationSetsCommand.js.map +0 -1
  667. package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -69
  668. package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
  669. package/dist/es/commands/ListIdentitiesCommand.js +0 -67
  670. package/dist/es/commands/ListIdentitiesCommand.js.map +0 -1
  671. package/dist/es/commands/ListIdentityPoliciesCommand.js +0 -76
  672. package/dist/es/commands/ListIdentityPoliciesCommand.js.map +0 -1
  673. package/dist/es/commands/ListReceiptFiltersCommand.js +0 -69
  674. package/dist/es/commands/ListReceiptFiltersCommand.js.map +0 -1
  675. package/dist/es/commands/ListReceiptRuleSetsCommand.js +0 -70
  676. package/dist/es/commands/ListReceiptRuleSetsCommand.js.map +0 -1
  677. package/dist/es/commands/ListTemplatesCommand.js +0 -67
  678. package/dist/es/commands/ListTemplatesCommand.js.map +0 -1
  679. package/dist/es/commands/ListVerifiedEmailAddressesCommand.js +0 -66
  680. package/dist/es/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
  681. package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -65
  682. package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
  683. package/dist/es/commands/PutIdentityPolicyCommand.js +0 -75
  684. package/dist/es/commands/PutIdentityPolicyCommand.js.map +0 -1
  685. package/dist/es/commands/ReorderReceiptRuleSetCommand.js +0 -72
  686. package/dist/es/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
  687. package/dist/es/commands/SendBounceCommand.js +0 -73
  688. package/dist/es/commands/SendBounceCommand.js.map +0 -1
  689. package/dist/es/commands/SendBulkTemplatedEmailCommand.js +0 -107
  690. package/dist/es/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
  691. package/dist/es/commands/SendCustomVerificationEmailCommand.js +0 -73
  692. package/dist/es/commands/SendCustomVerificationEmailCommand.js.map +0 -1
  693. package/dist/es/commands/SendEmailCommand.js +0 -109
  694. package/dist/es/commands/SendEmailCommand.js.map +0 -1
  695. package/dist/es/commands/SendRawEmailCommand.js +0 -173
  696. package/dist/es/commands/SendRawEmailCommand.js.map +0 -1
  697. package/dist/es/commands/SendTemplatedEmailCommand.js +0 -114
  698. package/dist/es/commands/SendTemplatedEmailCommand.js.map +0 -1
  699. package/dist/es/commands/SetActiveReceiptRuleSetCommand.js +0 -71
  700. package/dist/es/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
  701. package/dist/es/commands/SetIdentityDkimEnabledCommand.js +0 -77
  702. package/dist/es/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
  703. package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -75
  704. package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
  705. package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -70
  706. package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
  707. package/dist/es/commands/SetIdentityMailFromDomainCommand.js +0 -74
  708. package/dist/es/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
  709. package/dist/es/commands/SetIdentityNotificationTopicCommand.js +0 -73
  710. package/dist/es/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
  711. package/dist/es/commands/SetReceiptRulePositionCommand.js +0 -68
  712. package/dist/es/commands/SetReceiptRulePositionCommand.js.map +0 -1
  713. package/dist/es/commands/TestRenderTemplateCommand.js +0 -67
  714. package/dist/es/commands/TestRenderTemplateCommand.js.map +0 -1
  715. package/dist/es/commands/UpdateAccountSendingEnabledCommand.js +0 -70
  716. package/dist/es/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
  717. package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -76
  718. package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
  719. package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -69
  720. package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
  721. package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -70
  722. package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
  723. package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -69
  724. package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
  725. package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -68
  726. package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
  727. package/dist/es/commands/UpdateReceiptRuleCommand.js +0 -68
  728. package/dist/es/commands/UpdateReceiptRuleCommand.js.map +0 -1
  729. package/dist/es/commands/UpdateTemplateCommand.js +0 -68
  730. package/dist/es/commands/UpdateTemplateCommand.js.map +0 -1
  731. package/dist/es/commands/VerifyDomainDkimCommand.js +0 -103
  732. package/dist/es/commands/VerifyDomainDkimCommand.js.map +0 -1
  733. package/dist/es/commands/VerifyDomainIdentityCommand.js +0 -71
  734. package/dist/es/commands/VerifyDomainIdentityCommand.js.map +0 -1
  735. package/dist/es/commands/VerifyEmailAddressCommand.js +0 -66
  736. package/dist/es/commands/VerifyEmailAddressCommand.js.map +0 -1
  737. package/dist/es/commands/VerifyEmailIdentityCommand.js +0 -68
  738. package/dist/es/commands/VerifyEmailIdentityCommand.js.map +0 -1
  739. package/dist/es/endpoints.js +0 -58
  740. package/dist/es/endpoints.js.map +0 -1
  741. package/dist/es/index.js +0 -79
  742. package/dist/es/index.js.map +0 -1
  743. package/dist/es/models/index.js +0 -2
  744. package/dist/es/models/index.js.map +0 -1
  745. package/dist/es/models/models_0.js +0 -1526
  746. package/dist/es/models/models_0.js.map +0 -1
  747. package/dist/es/package.json +0 -94
  748. package/dist/es/pagination/Interfaces.js +0 -2
  749. package/dist/es/pagination/Interfaces.js.map +0 -1
  750. package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -87
  751. package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
  752. package/dist/es/pagination/ListIdentitiesPaginator.js +0 -87
  753. package/dist/es/pagination/ListIdentitiesPaginator.js.map +0 -1
  754. package/dist/es/protocols/Aws_query.js +0 -8688
  755. package/dist/es/protocols/Aws_query.js.map +0 -1
  756. package/dist/es/runtimeConfig.browser.js +0 -20
  757. package/dist/es/runtimeConfig.browser.js.map +0 -1
  758. package/dist/es/runtimeConfig.js +0 -25
  759. package/dist/es/runtimeConfig.js.map +0 -1
  760. package/dist/es/runtimeConfig.native.js +0 -12
  761. package/dist/es/runtimeConfig.native.js.map +0 -1
  762. package/dist/es/runtimeConfig.shared.js +0 -17
  763. package/dist/es/runtimeConfig.shared.js.map +0 -1
  764. package/dist/es/waiters/waitForIdentityExists.js +0 -79
  765. package/dist/es/waiters/waitForIdentityExists.js.map +0 -1
  766. package/dist/types/SES.d.ts +0 -1126
  767. package/dist/types/SESClient.d.ts +0 -211
  768. package/dist/types/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
  769. package/dist/types/commands/CreateConfigurationSetCommand.d.ts +0 -39
  770. package/dist/types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
  771. package/dist/types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
  772. package/dist/types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
  773. package/dist/types/commands/CreateReceiptFilterCommand.d.ts +0 -37
  774. package/dist/types/commands/CreateReceiptRuleCommand.d.ts +0 -38
  775. package/dist/types/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
  776. package/dist/types/commands/CreateTemplateCommand.d.ts +0 -38
  777. package/dist/types/commands/DeleteConfigurationSetCommand.d.ts +0 -37
  778. package/dist/types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
  779. package/dist/types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
  780. package/dist/types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
  781. package/dist/types/commands/DeleteIdentityCommand.d.ts +0 -37
  782. package/dist/types/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
  783. package/dist/types/commands/DeleteReceiptFilterCommand.d.ts +0 -38
  784. package/dist/types/commands/DeleteReceiptRuleCommand.d.ts +0 -38
  785. package/dist/types/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
  786. package/dist/types/commands/DeleteTemplateCommand.d.ts +0 -36
  787. package/dist/types/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
  788. package/dist/types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
  789. package/dist/types/commands/DescribeConfigurationSetCommand.d.ts +0 -38
  790. package/dist/types/commands/DescribeReceiptRuleCommand.d.ts +0 -38
  791. package/dist/types/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
  792. package/dist/types/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
  793. package/dist/types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
  794. package/dist/types/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
  795. package/dist/types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
  796. package/dist/types/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
  797. package/dist/types/commands/GetIdentityPoliciesCommand.d.ts +0 -46
  798. package/dist/types/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
  799. package/dist/types/commands/GetSendQuotaCommand.d.ts +0 -36
  800. package/dist/types/commands/GetSendStatisticsCommand.d.ts +0 -38
  801. package/dist/types/commands/GetTemplateCommand.d.ts +0 -37
  802. package/dist/types/commands/ListConfigurationSetsCommand.d.ts +0 -44
  803. package/dist/types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
  804. package/dist/types/commands/ListIdentitiesCommand.d.ts +0 -37
  805. package/dist/types/commands/ListIdentityPoliciesCommand.d.ts +0 -46
  806. package/dist/types/commands/ListReceiptFiltersCommand.d.ts +0 -39
  807. package/dist/types/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
  808. package/dist/types/commands/ListTemplatesCommand.d.ts +0 -37
  809. package/dist/types/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
  810. package/dist/types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
  811. package/dist/types/commands/PutIdentityPolicyCommand.d.ts +0 -45
  812. package/dist/types/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
  813. package/dist/types/commands/SendBounceCommand.d.ts +0 -43
  814. package/dist/types/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
  815. package/dist/types/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
  816. package/dist/types/commands/SendEmailCommand.d.ts +0 -79
  817. package/dist/types/commands/SendRawEmailCommand.d.ts +0 -143
  818. package/dist/types/commands/SendTemplatedEmailCommand.d.ts +0 -84
  819. package/dist/types/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
  820. package/dist/types/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
  821. package/dist/types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
  822. package/dist/types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
  823. package/dist/types/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
  824. package/dist/types/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
  825. package/dist/types/commands/SetReceiptRulePositionCommand.d.ts +0 -38
  826. package/dist/types/commands/TestRenderTemplateCommand.d.ts +0 -37
  827. package/dist/types/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
  828. package/dist/types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
  829. package/dist/types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
  830. package/dist/types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
  831. package/dist/types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
  832. package/dist/types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
  833. package/dist/types/commands/UpdateReceiptRuleCommand.d.ts +0 -38
  834. package/dist/types/commands/UpdateTemplateCommand.d.ts +0 -38
  835. package/dist/types/commands/VerifyDomainDkimCommand.d.ts +0 -73
  836. package/dist/types/commands/VerifyDomainIdentityCommand.d.ts +0 -41
  837. package/dist/types/commands/VerifyEmailAddressCommand.d.ts +0 -36
  838. package/dist/types/commands/VerifyEmailIdentityCommand.d.ts +0 -38
  839. package/dist/types/pagination/Interfaces.d.ts +0 -6
  840. package/dist/types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
  841. package/dist/types/pagination/ListIdentitiesPaginator.d.ts +0 -4
  842. package/dist/types/protocols/Aws_query.d.ts +0 -215
  843. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  844. package/dist/types/runtimeConfig.d.ts +0 -36
  845. package/dist/types/runtimeConfig.native.d.ts +0 -35
  846. package/dist/types/ts3.4/SES.d.ts +0 -1126
  847. package/dist/types/ts3.4/SESClient.d.ts +0 -211
  848. package/dist/types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
  849. package/dist/types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +0 -39
  850. package/dist/types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
  851. package/dist/types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
  852. package/dist/types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
  853. package/dist/types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +0 -37
  854. package/dist/types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +0 -38
  855. package/dist/types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
  856. package/dist/types/ts3.4/commands/CreateTemplateCommand.d.ts +0 -38
  857. package/dist/types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +0 -37
  858. package/dist/types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
  859. package/dist/types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
  860. package/dist/types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
  861. package/dist/types/ts3.4/commands/DeleteIdentityCommand.d.ts +0 -37
  862. package/dist/types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
  863. package/dist/types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +0 -38
  864. package/dist/types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +0 -38
  865. package/dist/types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
  866. package/dist/types/ts3.4/commands/DeleteTemplateCommand.d.ts +0 -36
  867. package/dist/types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
  868. package/dist/types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
  869. package/dist/types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +0 -38
  870. package/dist/types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +0 -38
  871. package/dist/types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
  872. package/dist/types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
  873. package/dist/types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
  874. package/dist/types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
  875. package/dist/types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
  876. package/dist/types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
  877. package/dist/types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +0 -46
  878. package/dist/types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
  879. package/dist/types/ts3.4/commands/GetSendQuotaCommand.d.ts +0 -36
  880. package/dist/types/ts3.4/commands/GetSendStatisticsCommand.d.ts +0 -38
  881. package/dist/types/ts3.4/commands/GetTemplateCommand.d.ts +0 -37
  882. package/dist/types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +0 -44
  883. package/dist/types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
  884. package/dist/types/ts3.4/commands/ListIdentitiesCommand.d.ts +0 -37
  885. package/dist/types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +0 -46
  886. package/dist/types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +0 -39
  887. package/dist/types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
  888. package/dist/types/ts3.4/commands/ListTemplatesCommand.d.ts +0 -37
  889. package/dist/types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
  890. package/dist/types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
  891. package/dist/types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +0 -45
  892. package/dist/types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
  893. package/dist/types/ts3.4/commands/SendBounceCommand.d.ts +0 -43
  894. package/dist/types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
  895. package/dist/types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
  896. package/dist/types/ts3.4/commands/SendEmailCommand.d.ts +0 -79
  897. package/dist/types/ts3.4/commands/SendRawEmailCommand.d.ts +0 -143
  898. package/dist/types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +0 -84
  899. package/dist/types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
  900. package/dist/types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
  901. package/dist/types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
  902. package/dist/types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
  903. package/dist/types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
  904. package/dist/types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
  905. package/dist/types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +0 -38
  906. package/dist/types/ts3.4/commands/TestRenderTemplateCommand.d.ts +0 -37
  907. package/dist/types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
  908. package/dist/types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
  909. package/dist/types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
  910. package/dist/types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
  911. package/dist/types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
  912. package/dist/types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
  913. package/dist/types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +0 -38
  914. package/dist/types/ts3.4/commands/UpdateTemplateCommand.d.ts +0 -38
  915. package/dist/types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +0 -73
  916. package/dist/types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +0 -41
  917. package/dist/types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +0 -36
  918. package/dist/types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +0 -38
  919. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  920. package/dist/types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
  921. package/dist/types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +0 -4
  922. package/dist/types/ts3.4/protocols/Aws_query.d.ts +0 -215
  923. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  924. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  925. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  926. package/dist/types/ts3.4/waiters/waitForIdentityExists.d.ts +0 -14
  927. package/dist/types/waiters/waitForIdentityExists.d.ts +0 -14
  928. package/endpoints.ts +0 -62
  929. package/jest.config.js +0 -4
  930. package/models/models_0.ts +0 -5983
  931. package/pagination/Interfaces.ts +0 -7
  932. package/pagination/ListCustomVerificationEmailTemplatesPaginator.ts +0 -58
  933. package/pagination/ListIdentitiesPaginator.ts +0 -58
  934. package/protocols/Aws_query.ts +0 -10354
  935. package/runtimeConfig.browser.ts +0 -40
  936. package/runtimeConfig.native.ts +0 -16
  937. package/runtimeConfig.shared.ts +0 -16
  938. package/runtimeConfig.ts +0 -45
  939. package/tsconfig.es.json +0 -12
  940. package/tsconfig.json +0 -32
  941. package/waiters/waitForIdentityExists.ts +0 -59
package/SES.ts DELETED
@@ -1,3242 +0,0 @@
1
- import { SESClient } from "./SESClient";
2
- import {
3
- CloneReceiptRuleSetCommand,
4
- CloneReceiptRuleSetCommandInput,
5
- CloneReceiptRuleSetCommandOutput,
6
- } from "./commands/CloneReceiptRuleSetCommand";
7
- import {
8
- CreateConfigurationSetCommand,
9
- CreateConfigurationSetCommandInput,
10
- CreateConfigurationSetCommandOutput,
11
- } from "./commands/CreateConfigurationSetCommand";
12
- import {
13
- CreateConfigurationSetEventDestinationCommand,
14
- CreateConfigurationSetEventDestinationCommandInput,
15
- CreateConfigurationSetEventDestinationCommandOutput,
16
- } from "./commands/CreateConfigurationSetEventDestinationCommand";
17
- import {
18
- CreateConfigurationSetTrackingOptionsCommand,
19
- CreateConfigurationSetTrackingOptionsCommandInput,
20
- CreateConfigurationSetTrackingOptionsCommandOutput,
21
- } from "./commands/CreateConfigurationSetTrackingOptionsCommand";
22
- import {
23
- CreateCustomVerificationEmailTemplateCommand,
24
- CreateCustomVerificationEmailTemplateCommandInput,
25
- CreateCustomVerificationEmailTemplateCommandOutput,
26
- } from "./commands/CreateCustomVerificationEmailTemplateCommand";
27
- import {
28
- CreateReceiptFilterCommand,
29
- CreateReceiptFilterCommandInput,
30
- CreateReceiptFilterCommandOutput,
31
- } from "./commands/CreateReceiptFilterCommand";
32
- import {
33
- CreateReceiptRuleCommand,
34
- CreateReceiptRuleCommandInput,
35
- CreateReceiptRuleCommandOutput,
36
- } from "./commands/CreateReceiptRuleCommand";
37
- import {
38
- CreateReceiptRuleSetCommand,
39
- CreateReceiptRuleSetCommandInput,
40
- CreateReceiptRuleSetCommandOutput,
41
- } from "./commands/CreateReceiptRuleSetCommand";
42
- import {
43
- CreateTemplateCommand,
44
- CreateTemplateCommandInput,
45
- CreateTemplateCommandOutput,
46
- } from "./commands/CreateTemplateCommand";
47
- import {
48
- DeleteConfigurationSetCommand,
49
- DeleteConfigurationSetCommandInput,
50
- DeleteConfigurationSetCommandOutput,
51
- } from "./commands/DeleteConfigurationSetCommand";
52
- import {
53
- DeleteConfigurationSetEventDestinationCommand,
54
- DeleteConfigurationSetEventDestinationCommandInput,
55
- DeleteConfigurationSetEventDestinationCommandOutput,
56
- } from "./commands/DeleteConfigurationSetEventDestinationCommand";
57
- import {
58
- DeleteConfigurationSetTrackingOptionsCommand,
59
- DeleteConfigurationSetTrackingOptionsCommandInput,
60
- DeleteConfigurationSetTrackingOptionsCommandOutput,
61
- } from "./commands/DeleteConfigurationSetTrackingOptionsCommand";
62
- import {
63
- DeleteCustomVerificationEmailTemplateCommand,
64
- DeleteCustomVerificationEmailTemplateCommandInput,
65
- DeleteCustomVerificationEmailTemplateCommandOutput,
66
- } from "./commands/DeleteCustomVerificationEmailTemplateCommand";
67
- import {
68
- DeleteIdentityCommand,
69
- DeleteIdentityCommandInput,
70
- DeleteIdentityCommandOutput,
71
- } from "./commands/DeleteIdentityCommand";
72
- import {
73
- DeleteIdentityPolicyCommand,
74
- DeleteIdentityPolicyCommandInput,
75
- DeleteIdentityPolicyCommandOutput,
76
- } from "./commands/DeleteIdentityPolicyCommand";
77
- import {
78
- DeleteReceiptFilterCommand,
79
- DeleteReceiptFilterCommandInput,
80
- DeleteReceiptFilterCommandOutput,
81
- } from "./commands/DeleteReceiptFilterCommand";
82
- import {
83
- DeleteReceiptRuleCommand,
84
- DeleteReceiptRuleCommandInput,
85
- DeleteReceiptRuleCommandOutput,
86
- } from "./commands/DeleteReceiptRuleCommand";
87
- import {
88
- DeleteReceiptRuleSetCommand,
89
- DeleteReceiptRuleSetCommandInput,
90
- DeleteReceiptRuleSetCommandOutput,
91
- } from "./commands/DeleteReceiptRuleSetCommand";
92
- import {
93
- DeleteTemplateCommand,
94
- DeleteTemplateCommandInput,
95
- DeleteTemplateCommandOutput,
96
- } from "./commands/DeleteTemplateCommand";
97
- import {
98
- DeleteVerifiedEmailAddressCommand,
99
- DeleteVerifiedEmailAddressCommandInput,
100
- DeleteVerifiedEmailAddressCommandOutput,
101
- } from "./commands/DeleteVerifiedEmailAddressCommand";
102
- import {
103
- DescribeActiveReceiptRuleSetCommand,
104
- DescribeActiveReceiptRuleSetCommandInput,
105
- DescribeActiveReceiptRuleSetCommandOutput,
106
- } from "./commands/DescribeActiveReceiptRuleSetCommand";
107
- import {
108
- DescribeConfigurationSetCommand,
109
- DescribeConfigurationSetCommandInput,
110
- DescribeConfigurationSetCommandOutput,
111
- } from "./commands/DescribeConfigurationSetCommand";
112
- import {
113
- DescribeReceiptRuleCommand,
114
- DescribeReceiptRuleCommandInput,
115
- DescribeReceiptRuleCommandOutput,
116
- } from "./commands/DescribeReceiptRuleCommand";
117
- import {
118
- DescribeReceiptRuleSetCommand,
119
- DescribeReceiptRuleSetCommandInput,
120
- DescribeReceiptRuleSetCommandOutput,
121
- } from "./commands/DescribeReceiptRuleSetCommand";
122
- import {
123
- GetAccountSendingEnabledCommand,
124
- GetAccountSendingEnabledCommandInput,
125
- GetAccountSendingEnabledCommandOutput,
126
- } from "./commands/GetAccountSendingEnabledCommand";
127
- import {
128
- GetCustomVerificationEmailTemplateCommand,
129
- GetCustomVerificationEmailTemplateCommandInput,
130
- GetCustomVerificationEmailTemplateCommandOutput,
131
- } from "./commands/GetCustomVerificationEmailTemplateCommand";
132
- import {
133
- GetIdentityDkimAttributesCommand,
134
- GetIdentityDkimAttributesCommandInput,
135
- GetIdentityDkimAttributesCommandOutput,
136
- } from "./commands/GetIdentityDkimAttributesCommand";
137
- import {
138
- GetIdentityMailFromDomainAttributesCommand,
139
- GetIdentityMailFromDomainAttributesCommandInput,
140
- GetIdentityMailFromDomainAttributesCommandOutput,
141
- } from "./commands/GetIdentityMailFromDomainAttributesCommand";
142
- import {
143
- GetIdentityNotificationAttributesCommand,
144
- GetIdentityNotificationAttributesCommandInput,
145
- GetIdentityNotificationAttributesCommandOutput,
146
- } from "./commands/GetIdentityNotificationAttributesCommand";
147
- import {
148
- GetIdentityPoliciesCommand,
149
- GetIdentityPoliciesCommandInput,
150
- GetIdentityPoliciesCommandOutput,
151
- } from "./commands/GetIdentityPoliciesCommand";
152
- import {
153
- GetIdentityVerificationAttributesCommand,
154
- GetIdentityVerificationAttributesCommandInput,
155
- GetIdentityVerificationAttributesCommandOutput,
156
- } from "./commands/GetIdentityVerificationAttributesCommand";
157
- import {
158
- GetSendQuotaCommand,
159
- GetSendQuotaCommandInput,
160
- GetSendQuotaCommandOutput,
161
- } from "./commands/GetSendQuotaCommand";
162
- import {
163
- GetSendStatisticsCommand,
164
- GetSendStatisticsCommandInput,
165
- GetSendStatisticsCommandOutput,
166
- } from "./commands/GetSendStatisticsCommand";
167
- import { GetTemplateCommand, GetTemplateCommandInput, GetTemplateCommandOutput } from "./commands/GetTemplateCommand";
168
- import {
169
- ListConfigurationSetsCommand,
170
- ListConfigurationSetsCommandInput,
171
- ListConfigurationSetsCommandOutput,
172
- } from "./commands/ListConfigurationSetsCommand";
173
- import {
174
- ListCustomVerificationEmailTemplatesCommand,
175
- ListCustomVerificationEmailTemplatesCommandInput,
176
- ListCustomVerificationEmailTemplatesCommandOutput,
177
- } from "./commands/ListCustomVerificationEmailTemplatesCommand";
178
- import {
179
- ListIdentitiesCommand,
180
- ListIdentitiesCommandInput,
181
- ListIdentitiesCommandOutput,
182
- } from "./commands/ListIdentitiesCommand";
183
- import {
184
- ListIdentityPoliciesCommand,
185
- ListIdentityPoliciesCommandInput,
186
- ListIdentityPoliciesCommandOutput,
187
- } from "./commands/ListIdentityPoliciesCommand";
188
- import {
189
- ListReceiptFiltersCommand,
190
- ListReceiptFiltersCommandInput,
191
- ListReceiptFiltersCommandOutput,
192
- } from "./commands/ListReceiptFiltersCommand";
193
- import {
194
- ListReceiptRuleSetsCommand,
195
- ListReceiptRuleSetsCommandInput,
196
- ListReceiptRuleSetsCommandOutput,
197
- } from "./commands/ListReceiptRuleSetsCommand";
198
- import {
199
- ListTemplatesCommand,
200
- ListTemplatesCommandInput,
201
- ListTemplatesCommandOutput,
202
- } from "./commands/ListTemplatesCommand";
203
- import {
204
- ListVerifiedEmailAddressesCommand,
205
- ListVerifiedEmailAddressesCommandInput,
206
- ListVerifiedEmailAddressesCommandOutput,
207
- } from "./commands/ListVerifiedEmailAddressesCommand";
208
- import {
209
- PutConfigurationSetDeliveryOptionsCommand,
210
- PutConfigurationSetDeliveryOptionsCommandInput,
211
- PutConfigurationSetDeliveryOptionsCommandOutput,
212
- } from "./commands/PutConfigurationSetDeliveryOptionsCommand";
213
- import {
214
- PutIdentityPolicyCommand,
215
- PutIdentityPolicyCommandInput,
216
- PutIdentityPolicyCommandOutput,
217
- } from "./commands/PutIdentityPolicyCommand";
218
- import {
219
- ReorderReceiptRuleSetCommand,
220
- ReorderReceiptRuleSetCommandInput,
221
- ReorderReceiptRuleSetCommandOutput,
222
- } from "./commands/ReorderReceiptRuleSetCommand";
223
- import { SendBounceCommand, SendBounceCommandInput, SendBounceCommandOutput } from "./commands/SendBounceCommand";
224
- import {
225
- SendBulkTemplatedEmailCommand,
226
- SendBulkTemplatedEmailCommandInput,
227
- SendBulkTemplatedEmailCommandOutput,
228
- } from "./commands/SendBulkTemplatedEmailCommand";
229
- import {
230
- SendCustomVerificationEmailCommand,
231
- SendCustomVerificationEmailCommandInput,
232
- SendCustomVerificationEmailCommandOutput,
233
- } from "./commands/SendCustomVerificationEmailCommand";
234
- import { SendEmailCommand, SendEmailCommandInput, SendEmailCommandOutput } from "./commands/SendEmailCommand";
235
- import {
236
- SendRawEmailCommand,
237
- SendRawEmailCommandInput,
238
- SendRawEmailCommandOutput,
239
- } from "./commands/SendRawEmailCommand";
240
- import {
241
- SendTemplatedEmailCommand,
242
- SendTemplatedEmailCommandInput,
243
- SendTemplatedEmailCommandOutput,
244
- } from "./commands/SendTemplatedEmailCommand";
245
- import {
246
- SetActiveReceiptRuleSetCommand,
247
- SetActiveReceiptRuleSetCommandInput,
248
- SetActiveReceiptRuleSetCommandOutput,
249
- } from "./commands/SetActiveReceiptRuleSetCommand";
250
- import {
251
- SetIdentityDkimEnabledCommand,
252
- SetIdentityDkimEnabledCommandInput,
253
- SetIdentityDkimEnabledCommandOutput,
254
- } from "./commands/SetIdentityDkimEnabledCommand";
255
- import {
256
- SetIdentityFeedbackForwardingEnabledCommand,
257
- SetIdentityFeedbackForwardingEnabledCommandInput,
258
- SetIdentityFeedbackForwardingEnabledCommandOutput,
259
- } from "./commands/SetIdentityFeedbackForwardingEnabledCommand";
260
- import {
261
- SetIdentityHeadersInNotificationsEnabledCommand,
262
- SetIdentityHeadersInNotificationsEnabledCommandInput,
263
- SetIdentityHeadersInNotificationsEnabledCommandOutput,
264
- } from "./commands/SetIdentityHeadersInNotificationsEnabledCommand";
265
- import {
266
- SetIdentityMailFromDomainCommand,
267
- SetIdentityMailFromDomainCommandInput,
268
- SetIdentityMailFromDomainCommandOutput,
269
- } from "./commands/SetIdentityMailFromDomainCommand";
270
- import {
271
- SetIdentityNotificationTopicCommand,
272
- SetIdentityNotificationTopicCommandInput,
273
- SetIdentityNotificationTopicCommandOutput,
274
- } from "./commands/SetIdentityNotificationTopicCommand";
275
- import {
276
- SetReceiptRulePositionCommand,
277
- SetReceiptRulePositionCommandInput,
278
- SetReceiptRulePositionCommandOutput,
279
- } from "./commands/SetReceiptRulePositionCommand";
280
- import {
281
- TestRenderTemplateCommand,
282
- TestRenderTemplateCommandInput,
283
- TestRenderTemplateCommandOutput,
284
- } from "./commands/TestRenderTemplateCommand";
285
- import {
286
- UpdateAccountSendingEnabledCommand,
287
- UpdateAccountSendingEnabledCommandInput,
288
- UpdateAccountSendingEnabledCommandOutput,
289
- } from "./commands/UpdateAccountSendingEnabledCommand";
290
- import {
291
- UpdateConfigurationSetEventDestinationCommand,
292
- UpdateConfigurationSetEventDestinationCommandInput,
293
- UpdateConfigurationSetEventDestinationCommandOutput,
294
- } from "./commands/UpdateConfigurationSetEventDestinationCommand";
295
- import {
296
- UpdateConfigurationSetReputationMetricsEnabledCommand,
297
- UpdateConfigurationSetReputationMetricsEnabledCommandInput,
298
- UpdateConfigurationSetReputationMetricsEnabledCommandOutput,
299
- } from "./commands/UpdateConfigurationSetReputationMetricsEnabledCommand";
300
- import {
301
- UpdateConfigurationSetSendingEnabledCommand,
302
- UpdateConfigurationSetSendingEnabledCommandInput,
303
- UpdateConfigurationSetSendingEnabledCommandOutput,
304
- } from "./commands/UpdateConfigurationSetSendingEnabledCommand";
305
- import {
306
- UpdateConfigurationSetTrackingOptionsCommand,
307
- UpdateConfigurationSetTrackingOptionsCommandInput,
308
- UpdateConfigurationSetTrackingOptionsCommandOutput,
309
- } from "./commands/UpdateConfigurationSetTrackingOptionsCommand";
310
- import {
311
- UpdateCustomVerificationEmailTemplateCommand,
312
- UpdateCustomVerificationEmailTemplateCommandInput,
313
- UpdateCustomVerificationEmailTemplateCommandOutput,
314
- } from "./commands/UpdateCustomVerificationEmailTemplateCommand";
315
- import {
316
- UpdateReceiptRuleCommand,
317
- UpdateReceiptRuleCommandInput,
318
- UpdateReceiptRuleCommandOutput,
319
- } from "./commands/UpdateReceiptRuleCommand";
320
- import {
321
- UpdateTemplateCommand,
322
- UpdateTemplateCommandInput,
323
- UpdateTemplateCommandOutput,
324
- } from "./commands/UpdateTemplateCommand";
325
- import {
326
- VerifyDomainDkimCommand,
327
- VerifyDomainDkimCommandInput,
328
- VerifyDomainDkimCommandOutput,
329
- } from "./commands/VerifyDomainDkimCommand";
330
- import {
331
- VerifyDomainIdentityCommand,
332
- VerifyDomainIdentityCommandInput,
333
- VerifyDomainIdentityCommandOutput,
334
- } from "./commands/VerifyDomainIdentityCommand";
335
- import {
336
- VerifyEmailAddressCommand,
337
- VerifyEmailAddressCommandInput,
338
- VerifyEmailAddressCommandOutput,
339
- } from "./commands/VerifyEmailAddressCommand";
340
- import {
341
- VerifyEmailIdentityCommand,
342
- VerifyEmailIdentityCommandInput,
343
- VerifyEmailIdentityCommandOutput,
344
- } from "./commands/VerifyEmailIdentityCommand";
345
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
346
-
347
- /**
348
- * <fullname>Amazon Simple Email Service</fullname>
349
- * <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version
350
- * 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
351
- * Guide</a>. </p>
352
- * <note>
353
- * <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and
354
- * Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
355
- * Guide</a>.</p>
356
- * </note>
357
- */
358
- export class SES extends SESClient {
359
- /**
360
- * <p>Creates a receipt rule set by cloning an existing one. All receipt rules and
361
- * configurations are copied to the new receipt rule set and are completely independent of
362
- * the source rule set.</p>
363
- * <p>For information about setting up rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
364
- * Developer Guide</a>.</p>
365
- * <p>You can execute this operation no more than once per second.</p>
366
- */
367
- public cloneReceiptRuleSet(
368
- args: CloneReceiptRuleSetCommandInput,
369
- options?: __HttpHandlerOptions
370
- ): Promise<CloneReceiptRuleSetCommandOutput>;
371
- public cloneReceiptRuleSet(
372
- args: CloneReceiptRuleSetCommandInput,
373
- cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void
374
- ): void;
375
- public cloneReceiptRuleSet(
376
- args: CloneReceiptRuleSetCommandInput,
377
- options: __HttpHandlerOptions,
378
- cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void
379
- ): void;
380
- public cloneReceiptRuleSet(
381
- args: CloneReceiptRuleSetCommandInput,
382
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CloneReceiptRuleSetCommandOutput) => void),
383
- cb?: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void
384
- ): Promise<CloneReceiptRuleSetCommandOutput> | void {
385
- const command = new CloneReceiptRuleSetCommand(args);
386
- if (typeof optionsOrCb === "function") {
387
- this.send(command, optionsOrCb);
388
- } else if (typeof cb === "function") {
389
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
390
- this.send(command, optionsOrCb || {}, cb);
391
- } else {
392
- return this.send(command, optionsOrCb);
393
- }
394
- }
395
-
396
- /**
397
- * <p>Creates a configuration set.</p>
398
- * <p>Configuration sets enable you to publish email sending events. For information about
399
- * using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
400
- * Guide</a>.</p>
401
- * <p>You can execute this operation no more than once per second.</p>
402
- */
403
- public createConfigurationSet(
404
- args: CreateConfigurationSetCommandInput,
405
- options?: __HttpHandlerOptions
406
- ): Promise<CreateConfigurationSetCommandOutput>;
407
- public createConfigurationSet(
408
- args: CreateConfigurationSetCommandInput,
409
- cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void
410
- ): void;
411
- public createConfigurationSet(
412
- args: CreateConfigurationSetCommandInput,
413
- options: __HttpHandlerOptions,
414
- cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void
415
- ): void;
416
- public createConfigurationSet(
417
- args: CreateConfigurationSetCommandInput,
418
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateConfigurationSetCommandOutput) => void),
419
- cb?: (err: any, data?: CreateConfigurationSetCommandOutput) => void
420
- ): Promise<CreateConfigurationSetCommandOutput> | void {
421
- const command = new CreateConfigurationSetCommand(args);
422
- if (typeof optionsOrCb === "function") {
423
- this.send(command, optionsOrCb);
424
- } else if (typeof cb === "function") {
425
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
426
- this.send(command, optionsOrCb || {}, cb);
427
- } else {
428
- return this.send(command, optionsOrCb);
429
- }
430
- }
431
-
432
- /**
433
- * <p>Creates a configuration set event destination.</p>
434
- * <note>
435
- * <p>When you create or update an event destination, you must provide one, and only
436
- * one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).</p>
437
- * </note>
438
- * <p>An event destination is the AWS service to which Amazon SES publishes the email sending
439
- * events associated with a configuration set. For information about using configuration
440
- * sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
441
- * Guide</a>.</p>
442
- * <p>You can execute this operation no more than once per second.</p>
443
- */
444
- public createConfigurationSetEventDestination(
445
- args: CreateConfigurationSetEventDestinationCommandInput,
446
- options?: __HttpHandlerOptions
447
- ): Promise<CreateConfigurationSetEventDestinationCommandOutput>;
448
- public createConfigurationSetEventDestination(
449
- args: CreateConfigurationSetEventDestinationCommandInput,
450
- cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void
451
- ): void;
452
- public createConfigurationSetEventDestination(
453
- args: CreateConfigurationSetEventDestinationCommandInput,
454
- options: __HttpHandlerOptions,
455
- cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void
456
- ): void;
457
- public createConfigurationSetEventDestination(
458
- args: CreateConfigurationSetEventDestinationCommandInput,
459
- optionsOrCb?:
460
- | __HttpHandlerOptions
461
- | ((err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void),
462
- cb?: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void
463
- ): Promise<CreateConfigurationSetEventDestinationCommandOutput> | void {
464
- const command = new CreateConfigurationSetEventDestinationCommand(args);
465
- if (typeof optionsOrCb === "function") {
466
- this.send(command, optionsOrCb);
467
- } else if (typeof cb === "function") {
468
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
469
- this.send(command, optionsOrCb || {}, cb);
470
- } else {
471
- return this.send(command, optionsOrCb);
472
- }
473
- }
474
-
475
- /**
476
- * <p>Creates an association between a configuration set and a custom domain for open and
477
- * click event tracking. </p>
478
- * <p>By default, images and links used for tracking open and click events are hosted on
479
- * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
480
- * events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
481
- */
482
- public createConfigurationSetTrackingOptions(
483
- args: CreateConfigurationSetTrackingOptionsCommandInput,
484
- options?: __HttpHandlerOptions
485
- ): Promise<CreateConfigurationSetTrackingOptionsCommandOutput>;
486
- public createConfigurationSetTrackingOptions(
487
- args: CreateConfigurationSetTrackingOptionsCommandInput,
488
- cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void
489
- ): void;
490
- public createConfigurationSetTrackingOptions(
491
- args: CreateConfigurationSetTrackingOptionsCommandInput,
492
- options: __HttpHandlerOptions,
493
- cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void
494
- ): void;
495
- public createConfigurationSetTrackingOptions(
496
- args: CreateConfigurationSetTrackingOptionsCommandInput,
497
- optionsOrCb?:
498
- | __HttpHandlerOptions
499
- | ((err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void),
500
- cb?: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void
501
- ): Promise<CreateConfigurationSetTrackingOptionsCommandOutput> | void {
502
- const command = new CreateConfigurationSetTrackingOptionsCommand(args);
503
- if (typeof optionsOrCb === "function") {
504
- this.send(command, optionsOrCb);
505
- } else if (typeof cb === "function") {
506
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
507
- this.send(command, optionsOrCb || {}, cb);
508
- } else {
509
- return this.send(command, optionsOrCb);
510
- }
511
- }
512
-
513
- /**
514
- * <p>Creates a new custom verification email template.</p>
515
- * <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
516
- * Guide</i>.</p>
517
- * <p>You can execute this operation no more than once per second.</p>
518
- */
519
- public createCustomVerificationEmailTemplate(
520
- args: CreateCustomVerificationEmailTemplateCommandInput,
521
- options?: __HttpHandlerOptions
522
- ): Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
523
- public createCustomVerificationEmailTemplate(
524
- args: CreateCustomVerificationEmailTemplateCommandInput,
525
- cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void
526
- ): void;
527
- public createCustomVerificationEmailTemplate(
528
- args: CreateCustomVerificationEmailTemplateCommandInput,
529
- options: __HttpHandlerOptions,
530
- cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void
531
- ): void;
532
- public createCustomVerificationEmailTemplate(
533
- args: CreateCustomVerificationEmailTemplateCommandInput,
534
- optionsOrCb?:
535
- | __HttpHandlerOptions
536
- | ((err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void),
537
- cb?: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void
538
- ): Promise<CreateCustomVerificationEmailTemplateCommandOutput> | void {
539
- const command = new CreateCustomVerificationEmailTemplateCommand(args);
540
- if (typeof optionsOrCb === "function") {
541
- this.send(command, optionsOrCb);
542
- } else if (typeof cb === "function") {
543
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
544
- this.send(command, optionsOrCb || {}, cb);
545
- } else {
546
- return this.send(command, optionsOrCb);
547
- }
548
- }
549
-
550
- /**
551
- * <p>Creates a new IP address filter.</p>
552
- * <p>For information about setting up IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html">Amazon SES Developer Guide</a>.</p>
553
- * <p>You can execute this operation no more than once per second.</p>
554
- */
555
- public createReceiptFilter(
556
- args: CreateReceiptFilterCommandInput,
557
- options?: __HttpHandlerOptions
558
- ): Promise<CreateReceiptFilterCommandOutput>;
559
- public createReceiptFilter(
560
- args: CreateReceiptFilterCommandInput,
561
- cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void
562
- ): void;
563
- public createReceiptFilter(
564
- args: CreateReceiptFilterCommandInput,
565
- options: __HttpHandlerOptions,
566
- cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void
567
- ): void;
568
- public createReceiptFilter(
569
- args: CreateReceiptFilterCommandInput,
570
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateReceiptFilterCommandOutput) => void),
571
- cb?: (err: any, data?: CreateReceiptFilterCommandOutput) => void
572
- ): Promise<CreateReceiptFilterCommandOutput> | void {
573
- const command = new CreateReceiptFilterCommand(args);
574
- if (typeof optionsOrCb === "function") {
575
- this.send(command, optionsOrCb);
576
- } else if (typeof cb === "function") {
577
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
578
- this.send(command, optionsOrCb || {}, cb);
579
- } else {
580
- return this.send(command, optionsOrCb);
581
- }
582
- }
583
-
584
- /**
585
- * <p>Creates a receipt rule.</p>
586
- * <p>For information about setting up receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html">Amazon SES Developer
587
- * Guide</a>.</p>
588
- * <p>You can execute this operation no more than once per second.</p>
589
- */
590
- public createReceiptRule(
591
- args: CreateReceiptRuleCommandInput,
592
- options?: __HttpHandlerOptions
593
- ): Promise<CreateReceiptRuleCommandOutput>;
594
- public createReceiptRule(
595
- args: CreateReceiptRuleCommandInput,
596
- cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void
597
- ): void;
598
- public createReceiptRule(
599
- args: CreateReceiptRuleCommandInput,
600
- options: __HttpHandlerOptions,
601
- cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void
602
- ): void;
603
- public createReceiptRule(
604
- args: CreateReceiptRuleCommandInput,
605
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateReceiptRuleCommandOutput) => void),
606
- cb?: (err: any, data?: CreateReceiptRuleCommandOutput) => void
607
- ): Promise<CreateReceiptRuleCommandOutput> | void {
608
- const command = new CreateReceiptRuleCommand(args);
609
- if (typeof optionsOrCb === "function") {
610
- this.send(command, optionsOrCb);
611
- } else if (typeof cb === "function") {
612
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
613
- this.send(command, optionsOrCb || {}, cb);
614
- } else {
615
- return this.send(command, optionsOrCb);
616
- }
617
- }
618
-
619
- /**
620
- * <p>Creates an empty receipt rule set.</p>
621
- * <p>For information about setting up receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
622
- * Developer Guide</a>.</p>
623
- * <p>You can execute this operation no more than once per second.</p>
624
- */
625
- public createReceiptRuleSet(
626
- args: CreateReceiptRuleSetCommandInput,
627
- options?: __HttpHandlerOptions
628
- ): Promise<CreateReceiptRuleSetCommandOutput>;
629
- public createReceiptRuleSet(
630
- args: CreateReceiptRuleSetCommandInput,
631
- cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void
632
- ): void;
633
- public createReceiptRuleSet(
634
- args: CreateReceiptRuleSetCommandInput,
635
- options: __HttpHandlerOptions,
636
- cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void
637
- ): void;
638
- public createReceiptRuleSet(
639
- args: CreateReceiptRuleSetCommandInput,
640
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateReceiptRuleSetCommandOutput) => void),
641
- cb?: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void
642
- ): Promise<CreateReceiptRuleSetCommandOutput> | void {
643
- const command = new CreateReceiptRuleSetCommand(args);
644
- if (typeof optionsOrCb === "function") {
645
- this.send(command, optionsOrCb);
646
- } else if (typeof cb === "function") {
647
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
648
- this.send(command, optionsOrCb || {}, cb);
649
- } else {
650
- return this.send(command, optionsOrCb);
651
- }
652
- }
653
-
654
- /**
655
- * <p>Creates an email template. Email templates enable you to send personalized email to
656
- * one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
657
- * Guide</a>.</p>
658
- * <p>You can execute this operation no more than once per second.</p>
659
- */
660
- public createTemplate(
661
- args: CreateTemplateCommandInput,
662
- options?: __HttpHandlerOptions
663
- ): Promise<CreateTemplateCommandOutput>;
664
- public createTemplate(
665
- args: CreateTemplateCommandInput,
666
- cb: (err: any, data?: CreateTemplateCommandOutput) => void
667
- ): void;
668
- public createTemplate(
669
- args: CreateTemplateCommandInput,
670
- options: __HttpHandlerOptions,
671
- cb: (err: any, data?: CreateTemplateCommandOutput) => void
672
- ): void;
673
- public createTemplate(
674
- args: CreateTemplateCommandInput,
675
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateTemplateCommandOutput) => void),
676
- cb?: (err: any, data?: CreateTemplateCommandOutput) => void
677
- ): Promise<CreateTemplateCommandOutput> | void {
678
- const command = new CreateTemplateCommand(args);
679
- if (typeof optionsOrCb === "function") {
680
- this.send(command, optionsOrCb);
681
- } else if (typeof cb === "function") {
682
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
683
- this.send(command, optionsOrCb || {}, cb);
684
- } else {
685
- return this.send(command, optionsOrCb);
686
- }
687
- }
688
-
689
- /**
690
- * <p>Deletes a configuration set. Configuration sets enable you to publish email sending
691
- * events. For information about using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer Guide</a>.</p>
692
- * <p>You can execute this operation no more than once per second.</p>
693
- */
694
- public deleteConfigurationSet(
695
- args: DeleteConfigurationSetCommandInput,
696
- options?: __HttpHandlerOptions
697
- ): Promise<DeleteConfigurationSetCommandOutput>;
698
- public deleteConfigurationSet(
699
- args: DeleteConfigurationSetCommandInput,
700
- cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void
701
- ): void;
702
- public deleteConfigurationSet(
703
- args: DeleteConfigurationSetCommandInput,
704
- options: __HttpHandlerOptions,
705
- cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void
706
- ): void;
707
- public deleteConfigurationSet(
708
- args: DeleteConfigurationSetCommandInput,
709
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteConfigurationSetCommandOutput) => void),
710
- cb?: (err: any, data?: DeleteConfigurationSetCommandOutput) => void
711
- ): Promise<DeleteConfigurationSetCommandOutput> | void {
712
- const command = new DeleteConfigurationSetCommand(args);
713
- if (typeof optionsOrCb === "function") {
714
- this.send(command, optionsOrCb);
715
- } else if (typeof cb === "function") {
716
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
717
- this.send(command, optionsOrCb || {}, cb);
718
- } else {
719
- return this.send(command, optionsOrCb);
720
- }
721
- }
722
-
723
- /**
724
- * <p>Deletes a configuration set event destination. Configuration set event destinations
725
- * are associated with configuration sets, which enable you to publish email sending
726
- * events. For information about using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer Guide</a>.</p>
727
- * <p>You can execute this operation no more than once per second.</p>
728
- */
729
- public deleteConfigurationSetEventDestination(
730
- args: DeleteConfigurationSetEventDestinationCommandInput,
731
- options?: __HttpHandlerOptions
732
- ): Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
733
- public deleteConfigurationSetEventDestination(
734
- args: DeleteConfigurationSetEventDestinationCommandInput,
735
- cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void
736
- ): void;
737
- public deleteConfigurationSetEventDestination(
738
- args: DeleteConfigurationSetEventDestinationCommandInput,
739
- options: __HttpHandlerOptions,
740
- cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void
741
- ): void;
742
- public deleteConfigurationSetEventDestination(
743
- args: DeleteConfigurationSetEventDestinationCommandInput,
744
- optionsOrCb?:
745
- | __HttpHandlerOptions
746
- | ((err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void),
747
- cb?: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void
748
- ): Promise<DeleteConfigurationSetEventDestinationCommandOutput> | void {
749
- const command = new DeleteConfigurationSetEventDestinationCommand(args);
750
- if (typeof optionsOrCb === "function") {
751
- this.send(command, optionsOrCb);
752
- } else if (typeof cb === "function") {
753
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
754
- this.send(command, optionsOrCb || {}, cb);
755
- } else {
756
- return this.send(command, optionsOrCb);
757
- }
758
- }
759
-
760
- /**
761
- * <p>Deletes an association between a configuration set and a custom domain for open and
762
- * click event tracking.</p>
763
- * <p>By default, images and links used for tracking open and click events are hosted on
764
- * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
765
- * events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
766
- * <note>
767
- * <p>Deleting this kind of association will result in emails sent using the specified
768
- * configuration set to capture open and click events using the standard,
769
- * Amazon SES-operated domains.</p>
770
- * </note>
771
- */
772
- public deleteConfigurationSetTrackingOptions(
773
- args: DeleteConfigurationSetTrackingOptionsCommandInput,
774
- options?: __HttpHandlerOptions
775
- ): Promise<DeleteConfigurationSetTrackingOptionsCommandOutput>;
776
- public deleteConfigurationSetTrackingOptions(
777
- args: DeleteConfigurationSetTrackingOptionsCommandInput,
778
- cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void
779
- ): void;
780
- public deleteConfigurationSetTrackingOptions(
781
- args: DeleteConfigurationSetTrackingOptionsCommandInput,
782
- options: __HttpHandlerOptions,
783
- cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void
784
- ): void;
785
- public deleteConfigurationSetTrackingOptions(
786
- args: DeleteConfigurationSetTrackingOptionsCommandInput,
787
- optionsOrCb?:
788
- | __HttpHandlerOptions
789
- | ((err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void),
790
- cb?: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void
791
- ): Promise<DeleteConfigurationSetTrackingOptionsCommandOutput> | void {
792
- const command = new DeleteConfigurationSetTrackingOptionsCommand(args);
793
- if (typeof optionsOrCb === "function") {
794
- this.send(command, optionsOrCb);
795
- } else if (typeof cb === "function") {
796
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
797
- this.send(command, optionsOrCb || {}, cb);
798
- } else {
799
- return this.send(command, optionsOrCb);
800
- }
801
- }
802
-
803
- /**
804
- * <p>Deletes an existing custom verification email template. </p>
805
- * <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
806
- * Guide</i>.</p>
807
- * <p>You can execute this operation no more than once per second.</p>
808
- */
809
- public deleteCustomVerificationEmailTemplate(
810
- args: DeleteCustomVerificationEmailTemplateCommandInput,
811
- options?: __HttpHandlerOptions
812
- ): Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
813
- public deleteCustomVerificationEmailTemplate(
814
- args: DeleteCustomVerificationEmailTemplateCommandInput,
815
- cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void
816
- ): void;
817
- public deleteCustomVerificationEmailTemplate(
818
- args: DeleteCustomVerificationEmailTemplateCommandInput,
819
- options: __HttpHandlerOptions,
820
- cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void
821
- ): void;
822
- public deleteCustomVerificationEmailTemplate(
823
- args: DeleteCustomVerificationEmailTemplateCommandInput,
824
- optionsOrCb?:
825
- | __HttpHandlerOptions
826
- | ((err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void),
827
- cb?: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void
828
- ): Promise<DeleteCustomVerificationEmailTemplateCommandOutput> | void {
829
- const command = new DeleteCustomVerificationEmailTemplateCommand(args);
830
- if (typeof optionsOrCb === "function") {
831
- this.send(command, optionsOrCb);
832
- } else if (typeof cb === "function") {
833
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
834
- this.send(command, optionsOrCb || {}, cb);
835
- } else {
836
- return this.send(command, optionsOrCb);
837
- }
838
- }
839
-
840
- /**
841
- * <p>Deletes the specified identity (an email address or a domain) from the list of
842
- * verified identities.</p>
843
- * <p>You can execute this operation no more than once per second.</p>
844
- */
845
- public deleteIdentity(
846
- args: DeleteIdentityCommandInput,
847
- options?: __HttpHandlerOptions
848
- ): Promise<DeleteIdentityCommandOutput>;
849
- public deleteIdentity(
850
- args: DeleteIdentityCommandInput,
851
- cb: (err: any, data?: DeleteIdentityCommandOutput) => void
852
- ): void;
853
- public deleteIdentity(
854
- args: DeleteIdentityCommandInput,
855
- options: __HttpHandlerOptions,
856
- cb: (err: any, data?: DeleteIdentityCommandOutput) => void
857
- ): void;
858
- public deleteIdentity(
859
- args: DeleteIdentityCommandInput,
860
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteIdentityCommandOutput) => void),
861
- cb?: (err: any, data?: DeleteIdentityCommandOutput) => void
862
- ): Promise<DeleteIdentityCommandOutput> | void {
863
- const command = new DeleteIdentityCommand(args);
864
- if (typeof optionsOrCb === "function") {
865
- this.send(command, optionsOrCb);
866
- } else if (typeof cb === "function") {
867
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
868
- this.send(command, optionsOrCb || {}, cb);
869
- } else {
870
- return this.send(command, optionsOrCb);
871
- }
872
- }
873
-
874
- /**
875
- * <p>Deletes the specified sending authorization policy for the given identity (an email
876
- * address or a domain). This API returns successfully even if a policy with the specified
877
- * name does not exist.</p>
878
- * <note>
879
- * <p>This API is for the identity owner only. If you have not verified the identity,
880
- * this API will return an error.</p>
881
- * </note>
882
- * <p>Sending authorization is a feature that enables an identity owner to authorize other
883
- * senders to use its identities. For information about using sending authorization, see
884
- * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
885
- * Guide</a>.</p>
886
- * <p>You can execute this operation no more than once per second.</p>
887
- */
888
- public deleteIdentityPolicy(
889
- args: DeleteIdentityPolicyCommandInput,
890
- options?: __HttpHandlerOptions
891
- ): Promise<DeleteIdentityPolicyCommandOutput>;
892
- public deleteIdentityPolicy(
893
- args: DeleteIdentityPolicyCommandInput,
894
- cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void
895
- ): void;
896
- public deleteIdentityPolicy(
897
- args: DeleteIdentityPolicyCommandInput,
898
- options: __HttpHandlerOptions,
899
- cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void
900
- ): void;
901
- public deleteIdentityPolicy(
902
- args: DeleteIdentityPolicyCommandInput,
903
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteIdentityPolicyCommandOutput) => void),
904
- cb?: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void
905
- ): Promise<DeleteIdentityPolicyCommandOutput> | void {
906
- const command = new DeleteIdentityPolicyCommand(args);
907
- if (typeof optionsOrCb === "function") {
908
- this.send(command, optionsOrCb);
909
- } else if (typeof cb === "function") {
910
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
911
- this.send(command, optionsOrCb || {}, cb);
912
- } else {
913
- return this.send(command, optionsOrCb);
914
- }
915
- }
916
-
917
- /**
918
- * <p>Deletes the specified IP address filter.</p>
919
- * <p>For information about managing IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html">Amazon SES
920
- * Developer Guide</a>.</p>
921
- * <p>You can execute this operation no more than once per second.</p>
922
- */
923
- public deleteReceiptFilter(
924
- args: DeleteReceiptFilterCommandInput,
925
- options?: __HttpHandlerOptions
926
- ): Promise<DeleteReceiptFilterCommandOutput>;
927
- public deleteReceiptFilter(
928
- args: DeleteReceiptFilterCommandInput,
929
- cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void
930
- ): void;
931
- public deleteReceiptFilter(
932
- args: DeleteReceiptFilterCommandInput,
933
- options: __HttpHandlerOptions,
934
- cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void
935
- ): void;
936
- public deleteReceiptFilter(
937
- args: DeleteReceiptFilterCommandInput,
938
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteReceiptFilterCommandOutput) => void),
939
- cb?: (err: any, data?: DeleteReceiptFilterCommandOutput) => void
940
- ): Promise<DeleteReceiptFilterCommandOutput> | void {
941
- const command = new DeleteReceiptFilterCommand(args);
942
- if (typeof optionsOrCb === "function") {
943
- this.send(command, optionsOrCb);
944
- } else if (typeof cb === "function") {
945
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
946
- this.send(command, optionsOrCb || {}, cb);
947
- } else {
948
- return this.send(command, optionsOrCb);
949
- }
950
- }
951
-
952
- /**
953
- * <p>Deletes the specified receipt rule.</p>
954
- * <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
955
- * Developer Guide</a>.</p>
956
- * <p>You can execute this operation no more than once per second.</p>
957
- */
958
- public deleteReceiptRule(
959
- args: DeleteReceiptRuleCommandInput,
960
- options?: __HttpHandlerOptions
961
- ): Promise<DeleteReceiptRuleCommandOutput>;
962
- public deleteReceiptRule(
963
- args: DeleteReceiptRuleCommandInput,
964
- cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void
965
- ): void;
966
- public deleteReceiptRule(
967
- args: DeleteReceiptRuleCommandInput,
968
- options: __HttpHandlerOptions,
969
- cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void
970
- ): void;
971
- public deleteReceiptRule(
972
- args: DeleteReceiptRuleCommandInput,
973
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteReceiptRuleCommandOutput) => void),
974
- cb?: (err: any, data?: DeleteReceiptRuleCommandOutput) => void
975
- ): Promise<DeleteReceiptRuleCommandOutput> | void {
976
- const command = new DeleteReceiptRuleCommand(args);
977
- if (typeof optionsOrCb === "function") {
978
- this.send(command, optionsOrCb);
979
- } else if (typeof cb === "function") {
980
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
981
- this.send(command, optionsOrCb || {}, cb);
982
- } else {
983
- return this.send(command, optionsOrCb);
984
- }
985
- }
986
-
987
- /**
988
- * <p>Deletes the specified receipt rule set and all of the receipt rules it
989
- * contains.</p>
990
- * <note>
991
- * <p>The currently active rule set cannot be deleted.</p>
992
- * </note>
993
- * <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
994
- * <p>You can execute this operation no more than once per second.</p>
995
- */
996
- public deleteReceiptRuleSet(
997
- args: DeleteReceiptRuleSetCommandInput,
998
- options?: __HttpHandlerOptions
999
- ): Promise<DeleteReceiptRuleSetCommandOutput>;
1000
- public deleteReceiptRuleSet(
1001
- args: DeleteReceiptRuleSetCommandInput,
1002
- cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void
1003
- ): void;
1004
- public deleteReceiptRuleSet(
1005
- args: DeleteReceiptRuleSetCommandInput,
1006
- options: __HttpHandlerOptions,
1007
- cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void
1008
- ): void;
1009
- public deleteReceiptRuleSet(
1010
- args: DeleteReceiptRuleSetCommandInput,
1011
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteReceiptRuleSetCommandOutput) => void),
1012
- cb?: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void
1013
- ): Promise<DeleteReceiptRuleSetCommandOutput> | void {
1014
- const command = new DeleteReceiptRuleSetCommand(args);
1015
- if (typeof optionsOrCb === "function") {
1016
- this.send(command, optionsOrCb);
1017
- } else if (typeof cb === "function") {
1018
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1019
- this.send(command, optionsOrCb || {}, cb);
1020
- } else {
1021
- return this.send(command, optionsOrCb);
1022
- }
1023
- }
1024
-
1025
- /**
1026
- * <p>Deletes an email template.</p>
1027
- * <p>You can execute this operation no more than once per second.</p>
1028
- */
1029
- public deleteTemplate(
1030
- args: DeleteTemplateCommandInput,
1031
- options?: __HttpHandlerOptions
1032
- ): Promise<DeleteTemplateCommandOutput>;
1033
- public deleteTemplate(
1034
- args: DeleteTemplateCommandInput,
1035
- cb: (err: any, data?: DeleteTemplateCommandOutput) => void
1036
- ): void;
1037
- public deleteTemplate(
1038
- args: DeleteTemplateCommandInput,
1039
- options: __HttpHandlerOptions,
1040
- cb: (err: any, data?: DeleteTemplateCommandOutput) => void
1041
- ): void;
1042
- public deleteTemplate(
1043
- args: DeleteTemplateCommandInput,
1044
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteTemplateCommandOutput) => void),
1045
- cb?: (err: any, data?: DeleteTemplateCommandOutput) => void
1046
- ): Promise<DeleteTemplateCommandOutput> | void {
1047
- const command = new DeleteTemplateCommand(args);
1048
- if (typeof optionsOrCb === "function") {
1049
- this.send(command, optionsOrCb);
1050
- } else if (typeof cb === "function") {
1051
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1052
- this.send(command, optionsOrCb || {}, cb);
1053
- } else {
1054
- return this.send(command, optionsOrCb);
1055
- }
1056
- }
1057
-
1058
- /**
1059
- * <p>Deprecated. Use the <code>DeleteIdentity</code> operation to delete email addresses
1060
- * and domains.</p>
1061
- */
1062
- public deleteVerifiedEmailAddress(
1063
- args: DeleteVerifiedEmailAddressCommandInput,
1064
- options?: __HttpHandlerOptions
1065
- ): Promise<DeleteVerifiedEmailAddressCommandOutput>;
1066
- public deleteVerifiedEmailAddress(
1067
- args: DeleteVerifiedEmailAddressCommandInput,
1068
- cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void
1069
- ): void;
1070
- public deleteVerifiedEmailAddress(
1071
- args: DeleteVerifiedEmailAddressCommandInput,
1072
- options: __HttpHandlerOptions,
1073
- cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void
1074
- ): void;
1075
- public deleteVerifiedEmailAddress(
1076
- args: DeleteVerifiedEmailAddressCommandInput,
1077
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void),
1078
- cb?: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void
1079
- ): Promise<DeleteVerifiedEmailAddressCommandOutput> | void {
1080
- const command = new DeleteVerifiedEmailAddressCommand(args);
1081
- if (typeof optionsOrCb === "function") {
1082
- this.send(command, optionsOrCb);
1083
- } else if (typeof cb === "function") {
1084
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1085
- this.send(command, optionsOrCb || {}, cb);
1086
- } else {
1087
- return this.send(command, optionsOrCb);
1088
- }
1089
- }
1090
-
1091
- /**
1092
- * <p>Returns the metadata and receipt rules for the receipt rule set that is currently
1093
- * active.</p>
1094
- * <p>For information about setting up receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html">Amazon SES
1095
- * Developer Guide</a>.</p>
1096
- * <p>You can execute this operation no more than once per second.</p>
1097
- */
1098
- public describeActiveReceiptRuleSet(
1099
- args: DescribeActiveReceiptRuleSetCommandInput,
1100
- options?: __HttpHandlerOptions
1101
- ): Promise<DescribeActiveReceiptRuleSetCommandOutput>;
1102
- public describeActiveReceiptRuleSet(
1103
- args: DescribeActiveReceiptRuleSetCommandInput,
1104
- cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void
1105
- ): void;
1106
- public describeActiveReceiptRuleSet(
1107
- args: DescribeActiveReceiptRuleSetCommandInput,
1108
- options: __HttpHandlerOptions,
1109
- cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void
1110
- ): void;
1111
- public describeActiveReceiptRuleSet(
1112
- args: DescribeActiveReceiptRuleSetCommandInput,
1113
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void),
1114
- cb?: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void
1115
- ): Promise<DescribeActiveReceiptRuleSetCommandOutput> | void {
1116
- const command = new DescribeActiveReceiptRuleSetCommand(args);
1117
- if (typeof optionsOrCb === "function") {
1118
- this.send(command, optionsOrCb);
1119
- } else if (typeof cb === "function") {
1120
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1121
- this.send(command, optionsOrCb || {}, cb);
1122
- } else {
1123
- return this.send(command, optionsOrCb);
1124
- }
1125
- }
1126
-
1127
- /**
1128
- * <p>Returns the details of the specified configuration set. For information about using
1129
- * configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
1130
- * Guide</a>.</p>
1131
- * <p>You can execute this operation no more than once per second.</p>
1132
- */
1133
- public describeConfigurationSet(
1134
- args: DescribeConfigurationSetCommandInput,
1135
- options?: __HttpHandlerOptions
1136
- ): Promise<DescribeConfigurationSetCommandOutput>;
1137
- public describeConfigurationSet(
1138
- args: DescribeConfigurationSetCommandInput,
1139
- cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void
1140
- ): void;
1141
- public describeConfigurationSet(
1142
- args: DescribeConfigurationSetCommandInput,
1143
- options: __HttpHandlerOptions,
1144
- cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void
1145
- ): void;
1146
- public describeConfigurationSet(
1147
- args: DescribeConfigurationSetCommandInput,
1148
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DescribeConfigurationSetCommandOutput) => void),
1149
- cb?: (err: any, data?: DescribeConfigurationSetCommandOutput) => void
1150
- ): Promise<DescribeConfigurationSetCommandOutput> | void {
1151
- const command = new DescribeConfigurationSetCommand(args);
1152
- if (typeof optionsOrCb === "function") {
1153
- this.send(command, optionsOrCb);
1154
- } else if (typeof cb === "function") {
1155
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1156
- this.send(command, optionsOrCb || {}, cb);
1157
- } else {
1158
- return this.send(command, optionsOrCb);
1159
- }
1160
- }
1161
-
1162
- /**
1163
- * <p>Returns the details of the specified receipt rule.</p>
1164
- * <p>For information about setting up receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html">Amazon SES Developer
1165
- * Guide</a>.</p>
1166
- * <p>You can execute this operation no more than once per second.</p>
1167
- */
1168
- public describeReceiptRule(
1169
- args: DescribeReceiptRuleCommandInput,
1170
- options?: __HttpHandlerOptions
1171
- ): Promise<DescribeReceiptRuleCommandOutput>;
1172
- public describeReceiptRule(
1173
- args: DescribeReceiptRuleCommandInput,
1174
- cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void
1175
- ): void;
1176
- public describeReceiptRule(
1177
- args: DescribeReceiptRuleCommandInput,
1178
- options: __HttpHandlerOptions,
1179
- cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void
1180
- ): void;
1181
- public describeReceiptRule(
1182
- args: DescribeReceiptRuleCommandInput,
1183
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DescribeReceiptRuleCommandOutput) => void),
1184
- cb?: (err: any, data?: DescribeReceiptRuleCommandOutput) => void
1185
- ): Promise<DescribeReceiptRuleCommandOutput> | void {
1186
- const command = new DescribeReceiptRuleCommand(args);
1187
- if (typeof optionsOrCb === "function") {
1188
- this.send(command, optionsOrCb);
1189
- } else if (typeof cb === "function") {
1190
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1191
- this.send(command, optionsOrCb || {}, cb);
1192
- } else {
1193
- return this.send(command, optionsOrCb);
1194
- }
1195
- }
1196
-
1197
- /**
1198
- * <p>Returns the details of the specified receipt rule set.</p>
1199
- * <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
1200
- * <p>You can execute this operation no more than once per second.</p>
1201
- */
1202
- public describeReceiptRuleSet(
1203
- args: DescribeReceiptRuleSetCommandInput,
1204
- options?: __HttpHandlerOptions
1205
- ): Promise<DescribeReceiptRuleSetCommandOutput>;
1206
- public describeReceiptRuleSet(
1207
- args: DescribeReceiptRuleSetCommandInput,
1208
- cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void
1209
- ): void;
1210
- public describeReceiptRuleSet(
1211
- args: DescribeReceiptRuleSetCommandInput,
1212
- options: __HttpHandlerOptions,
1213
- cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void
1214
- ): void;
1215
- public describeReceiptRuleSet(
1216
- args: DescribeReceiptRuleSetCommandInput,
1217
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DescribeReceiptRuleSetCommandOutput) => void),
1218
- cb?: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void
1219
- ): Promise<DescribeReceiptRuleSetCommandOutput> | void {
1220
- const command = new DescribeReceiptRuleSetCommand(args);
1221
- if (typeof optionsOrCb === "function") {
1222
- this.send(command, optionsOrCb);
1223
- } else if (typeof cb === "function") {
1224
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1225
- this.send(command, optionsOrCb || {}, cb);
1226
- } else {
1227
- return this.send(command, optionsOrCb);
1228
- }
1229
- }
1230
-
1231
- /**
1232
- * <p>Returns the email sending status of the Amazon SES account for the current region.</p>
1233
- * <p>You can execute this operation no more than once per second.</p>
1234
- */
1235
- public getAccountSendingEnabled(
1236
- args: GetAccountSendingEnabledCommandInput,
1237
- options?: __HttpHandlerOptions
1238
- ): Promise<GetAccountSendingEnabledCommandOutput>;
1239
- public getAccountSendingEnabled(
1240
- args: GetAccountSendingEnabledCommandInput,
1241
- cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void
1242
- ): void;
1243
- public getAccountSendingEnabled(
1244
- args: GetAccountSendingEnabledCommandInput,
1245
- options: __HttpHandlerOptions,
1246
- cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void
1247
- ): void;
1248
- public getAccountSendingEnabled(
1249
- args: GetAccountSendingEnabledCommandInput,
1250
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetAccountSendingEnabledCommandOutput) => void),
1251
- cb?: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void
1252
- ): Promise<GetAccountSendingEnabledCommandOutput> | void {
1253
- const command = new GetAccountSendingEnabledCommand(args);
1254
- if (typeof optionsOrCb === "function") {
1255
- this.send(command, optionsOrCb);
1256
- } else if (typeof cb === "function") {
1257
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1258
- this.send(command, optionsOrCb || {}, cb);
1259
- } else {
1260
- return this.send(command, optionsOrCb);
1261
- }
1262
- }
1263
-
1264
- /**
1265
- * <p>Returns the custom email verification template for the template name you
1266
- * specify.</p>
1267
- * <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
1268
- * Guide</i>.</p>
1269
- * <p>You can execute this operation no more than once per second.</p>
1270
- */
1271
- public getCustomVerificationEmailTemplate(
1272
- args: GetCustomVerificationEmailTemplateCommandInput,
1273
- options?: __HttpHandlerOptions
1274
- ): Promise<GetCustomVerificationEmailTemplateCommandOutput>;
1275
- public getCustomVerificationEmailTemplate(
1276
- args: GetCustomVerificationEmailTemplateCommandInput,
1277
- cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void
1278
- ): void;
1279
- public getCustomVerificationEmailTemplate(
1280
- args: GetCustomVerificationEmailTemplateCommandInput,
1281
- options: __HttpHandlerOptions,
1282
- cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void
1283
- ): void;
1284
- public getCustomVerificationEmailTemplate(
1285
- args: GetCustomVerificationEmailTemplateCommandInput,
1286
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void),
1287
- cb?: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void
1288
- ): Promise<GetCustomVerificationEmailTemplateCommandOutput> | void {
1289
- const command = new GetCustomVerificationEmailTemplateCommand(args);
1290
- if (typeof optionsOrCb === "function") {
1291
- this.send(command, optionsOrCb);
1292
- } else if (typeof cb === "function") {
1293
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1294
- this.send(command, optionsOrCb || {}, cb);
1295
- } else {
1296
- return this.send(command, optionsOrCb);
1297
- }
1298
- }
1299
-
1300
- /**
1301
- * <p>Returns the current status of Easy DKIM signing for an entity. For domain name
1302
- * identities, this operation also returns the DKIM tokens that are required for Easy DKIM
1303
- * signing, and whether Amazon SES has successfully verified that these tokens have been
1304
- * published.</p>
1305
- * <p>This operation takes a list of identities as input and returns the following
1306
- * information for each:</p>
1307
- * <ul>
1308
- * <li>
1309
- * <p>Whether Easy DKIM signing is enabled or disabled.</p>
1310
- * </li>
1311
- * <li>
1312
- * <p>A set of DKIM tokens that represent the identity. If the identity is an email
1313
- * address, the tokens represent the domain of that address.</p>
1314
- * </li>
1315
- * <li>
1316
- * <p>Whether Amazon SES has successfully verified the DKIM tokens published in the
1317
- * domain's DNS. This information is only returned for domain name identities, not
1318
- * for email addresses.</p>
1319
- * </li>
1320
- * </ul>
1321
- * <p>This operation is throttled at one request per second and can only get DKIM attributes
1322
- * for up to 100 identities at a time.</p>
1323
- * <p>For more information about creating DNS records using DKIM tokens, go to the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html">Amazon SES Developer Guide</a>.</p>
1324
- */
1325
- public getIdentityDkimAttributes(
1326
- args: GetIdentityDkimAttributesCommandInput,
1327
- options?: __HttpHandlerOptions
1328
- ): Promise<GetIdentityDkimAttributesCommandOutput>;
1329
- public getIdentityDkimAttributes(
1330
- args: GetIdentityDkimAttributesCommandInput,
1331
- cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void
1332
- ): void;
1333
- public getIdentityDkimAttributes(
1334
- args: GetIdentityDkimAttributesCommandInput,
1335
- options: __HttpHandlerOptions,
1336
- cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void
1337
- ): void;
1338
- public getIdentityDkimAttributes(
1339
- args: GetIdentityDkimAttributesCommandInput,
1340
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetIdentityDkimAttributesCommandOutput) => void),
1341
- cb?: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void
1342
- ): Promise<GetIdentityDkimAttributesCommandOutput> | void {
1343
- const command = new GetIdentityDkimAttributesCommand(args);
1344
- if (typeof optionsOrCb === "function") {
1345
- this.send(command, optionsOrCb);
1346
- } else if (typeof cb === "function") {
1347
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1348
- this.send(command, optionsOrCb || {}, cb);
1349
- } else {
1350
- return this.send(command, optionsOrCb);
1351
- }
1352
- }
1353
-
1354
- /**
1355
- * <p>Returns the custom MAIL FROM attributes for a list of identities (email addresses :
1356
- * domains).</p>
1357
- * <p>This operation is throttled at one request per second and can only get custom MAIL
1358
- * FROM attributes for up to 100 identities at a time.</p>
1359
- */
1360
- public getIdentityMailFromDomainAttributes(
1361
- args: GetIdentityMailFromDomainAttributesCommandInput,
1362
- options?: __HttpHandlerOptions
1363
- ): Promise<GetIdentityMailFromDomainAttributesCommandOutput>;
1364
- public getIdentityMailFromDomainAttributes(
1365
- args: GetIdentityMailFromDomainAttributesCommandInput,
1366
- cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void
1367
- ): void;
1368
- public getIdentityMailFromDomainAttributes(
1369
- args: GetIdentityMailFromDomainAttributesCommandInput,
1370
- options: __HttpHandlerOptions,
1371
- cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void
1372
- ): void;
1373
- public getIdentityMailFromDomainAttributes(
1374
- args: GetIdentityMailFromDomainAttributesCommandInput,
1375
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void),
1376
- cb?: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void
1377
- ): Promise<GetIdentityMailFromDomainAttributesCommandOutput> | void {
1378
- const command = new GetIdentityMailFromDomainAttributesCommand(args);
1379
- if (typeof optionsOrCb === "function") {
1380
- this.send(command, optionsOrCb);
1381
- } else if (typeof cb === "function") {
1382
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1383
- this.send(command, optionsOrCb || {}, cb);
1384
- } else {
1385
- return this.send(command, optionsOrCb);
1386
- }
1387
- }
1388
-
1389
- /**
1390
- * <p>Given a list of verified identities (email addresses and/or domains), returns a
1391
- * structure describing identity notification attributes.</p>
1392
- * <p>This operation is throttled at one request per second and can only get notification
1393
- * attributes for up to 100 identities at a time.</p>
1394
- * <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
1395
- * Developer Guide</a>.</p>
1396
- */
1397
- public getIdentityNotificationAttributes(
1398
- args: GetIdentityNotificationAttributesCommandInput,
1399
- options?: __HttpHandlerOptions
1400
- ): Promise<GetIdentityNotificationAttributesCommandOutput>;
1401
- public getIdentityNotificationAttributes(
1402
- args: GetIdentityNotificationAttributesCommandInput,
1403
- cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void
1404
- ): void;
1405
- public getIdentityNotificationAttributes(
1406
- args: GetIdentityNotificationAttributesCommandInput,
1407
- options: __HttpHandlerOptions,
1408
- cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void
1409
- ): void;
1410
- public getIdentityNotificationAttributes(
1411
- args: GetIdentityNotificationAttributesCommandInput,
1412
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void),
1413
- cb?: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void
1414
- ): Promise<GetIdentityNotificationAttributesCommandOutput> | void {
1415
- const command = new GetIdentityNotificationAttributesCommand(args);
1416
- if (typeof optionsOrCb === "function") {
1417
- this.send(command, optionsOrCb);
1418
- } else if (typeof cb === "function") {
1419
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1420
- this.send(command, optionsOrCb || {}, cb);
1421
- } else {
1422
- return this.send(command, optionsOrCb);
1423
- }
1424
- }
1425
-
1426
- /**
1427
- * <p>Returns the requested sending authorization policies for the given identity (an email
1428
- * address or a domain). The policies are returned as a map of policy names to policy
1429
- * contents. You can retrieve a maximum of 20 policies at a time.</p>
1430
- * <note>
1431
- * <p>This API is for the identity owner only. If you have not verified the identity,
1432
- * this API will return an error.</p>
1433
- * </note>
1434
- * <p>Sending authorization is a feature that enables an identity owner to authorize other
1435
- * senders to use its identities. For information about using sending authorization, see
1436
- * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
1437
- * Guide</a>.</p>
1438
- * <p>You can execute this operation no more than once per second.</p>
1439
- */
1440
- public getIdentityPolicies(
1441
- args: GetIdentityPoliciesCommandInput,
1442
- options?: __HttpHandlerOptions
1443
- ): Promise<GetIdentityPoliciesCommandOutput>;
1444
- public getIdentityPolicies(
1445
- args: GetIdentityPoliciesCommandInput,
1446
- cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void
1447
- ): void;
1448
- public getIdentityPolicies(
1449
- args: GetIdentityPoliciesCommandInput,
1450
- options: __HttpHandlerOptions,
1451
- cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void
1452
- ): void;
1453
- public getIdentityPolicies(
1454
- args: GetIdentityPoliciesCommandInput,
1455
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetIdentityPoliciesCommandOutput) => void),
1456
- cb?: (err: any, data?: GetIdentityPoliciesCommandOutput) => void
1457
- ): Promise<GetIdentityPoliciesCommandOutput> | void {
1458
- const command = new GetIdentityPoliciesCommand(args);
1459
- if (typeof optionsOrCb === "function") {
1460
- this.send(command, optionsOrCb);
1461
- } else if (typeof cb === "function") {
1462
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1463
- this.send(command, optionsOrCb || {}, cb);
1464
- } else {
1465
- return this.send(command, optionsOrCb);
1466
- }
1467
- }
1468
-
1469
- /**
1470
- * <p>Given a list of identities (email addresses and/or domains), returns the verification
1471
- * status and (for domain identities) the verification token for each identity.</p>
1472
- * <p>The verification status of an email address is "Pending" until the email address owner
1473
- * clicks the link within the verification email that Amazon SES sent to that address. If the
1474
- * email address owner clicks the link within 24 hours, the verification status of the
1475
- * email address changes to "Success". If the link is not clicked within 24 hours, the
1476
- * verification status changes to "Failed." In that case, if you still want to verify the
1477
- * email address, you must restart the verification process from the beginning.</p>
1478
- * <p>For domain identities, the domain's verification status is "Pending" as Amazon SES searches
1479
- * for the required TXT record in the DNS settings of the domain. When Amazon SES detects the
1480
- * record, the domain's verification status changes to "Success". If Amazon SES is unable to
1481
- * detect the record within 72 hours, the domain's verification status changes to "Failed."
1482
- * In that case, if you still want to verify the domain, you must restart the verification
1483
- * process from the beginning.</p>
1484
- * <p>This operation is throttled at one request per second and can only get verification
1485
- * attributes for up to 100 identities at a time.</p>
1486
- */
1487
- public getIdentityVerificationAttributes(
1488
- args: GetIdentityVerificationAttributesCommandInput,
1489
- options?: __HttpHandlerOptions
1490
- ): Promise<GetIdentityVerificationAttributesCommandOutput>;
1491
- public getIdentityVerificationAttributes(
1492
- args: GetIdentityVerificationAttributesCommandInput,
1493
- cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void
1494
- ): void;
1495
- public getIdentityVerificationAttributes(
1496
- args: GetIdentityVerificationAttributesCommandInput,
1497
- options: __HttpHandlerOptions,
1498
- cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void
1499
- ): void;
1500
- public getIdentityVerificationAttributes(
1501
- args: GetIdentityVerificationAttributesCommandInput,
1502
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void),
1503
- cb?: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void
1504
- ): Promise<GetIdentityVerificationAttributesCommandOutput> | void {
1505
- const command = new GetIdentityVerificationAttributesCommand(args);
1506
- if (typeof optionsOrCb === "function") {
1507
- this.send(command, optionsOrCb);
1508
- } else if (typeof cb === "function") {
1509
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1510
- this.send(command, optionsOrCb || {}, cb);
1511
- } else {
1512
- return this.send(command, optionsOrCb);
1513
- }
1514
- }
1515
-
1516
- /**
1517
- * <p>Provides the sending limits for the Amazon SES account. </p>
1518
- * <p>You can execute this operation no more than once per second.</p>
1519
- */
1520
- public getSendQuota(
1521
- args: GetSendQuotaCommandInput,
1522
- options?: __HttpHandlerOptions
1523
- ): Promise<GetSendQuotaCommandOutput>;
1524
- public getSendQuota(args: GetSendQuotaCommandInput, cb: (err: any, data?: GetSendQuotaCommandOutput) => void): void;
1525
- public getSendQuota(
1526
- args: GetSendQuotaCommandInput,
1527
- options: __HttpHandlerOptions,
1528
- cb: (err: any, data?: GetSendQuotaCommandOutput) => void
1529
- ): void;
1530
- public getSendQuota(
1531
- args: GetSendQuotaCommandInput,
1532
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetSendQuotaCommandOutput) => void),
1533
- cb?: (err: any, data?: GetSendQuotaCommandOutput) => void
1534
- ): Promise<GetSendQuotaCommandOutput> | void {
1535
- const command = new GetSendQuotaCommand(args);
1536
- if (typeof optionsOrCb === "function") {
1537
- this.send(command, optionsOrCb);
1538
- } else if (typeof cb === "function") {
1539
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1540
- this.send(command, optionsOrCb || {}, cb);
1541
- } else {
1542
- return this.send(command, optionsOrCb);
1543
- }
1544
- }
1545
-
1546
- /**
1547
- * <p>Provides sending statistics for the current AWS Region. The result is a list of data
1548
- * points, representing the last two weeks of sending activity. Each data point in the list
1549
- * contains statistics for a 15-minute period of time.</p>
1550
- * <p>You can execute this operation no more than once per second.</p>
1551
- */
1552
- public getSendStatistics(
1553
- args: GetSendStatisticsCommandInput,
1554
- options?: __HttpHandlerOptions
1555
- ): Promise<GetSendStatisticsCommandOutput>;
1556
- public getSendStatistics(
1557
- args: GetSendStatisticsCommandInput,
1558
- cb: (err: any, data?: GetSendStatisticsCommandOutput) => void
1559
- ): void;
1560
- public getSendStatistics(
1561
- args: GetSendStatisticsCommandInput,
1562
- options: __HttpHandlerOptions,
1563
- cb: (err: any, data?: GetSendStatisticsCommandOutput) => void
1564
- ): void;
1565
- public getSendStatistics(
1566
- args: GetSendStatisticsCommandInput,
1567
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetSendStatisticsCommandOutput) => void),
1568
- cb?: (err: any, data?: GetSendStatisticsCommandOutput) => void
1569
- ): Promise<GetSendStatisticsCommandOutput> | void {
1570
- const command = new GetSendStatisticsCommand(args);
1571
- if (typeof optionsOrCb === "function") {
1572
- this.send(command, optionsOrCb);
1573
- } else if (typeof cb === "function") {
1574
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1575
- this.send(command, optionsOrCb || {}, cb);
1576
- } else {
1577
- return this.send(command, optionsOrCb);
1578
- }
1579
- }
1580
-
1581
- /**
1582
- * <p>Displays the template object (which includes the Subject line, HTML part and text
1583
- * part) for the template you specify.</p>
1584
- * <p>You can execute this operation no more than once per second.</p>
1585
- */
1586
- public getTemplate(args: GetTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTemplateCommandOutput>;
1587
- public getTemplate(args: GetTemplateCommandInput, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
1588
- public getTemplate(
1589
- args: GetTemplateCommandInput,
1590
- options: __HttpHandlerOptions,
1591
- cb: (err: any, data?: GetTemplateCommandOutput) => void
1592
- ): void;
1593
- public getTemplate(
1594
- args: GetTemplateCommandInput,
1595
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetTemplateCommandOutput) => void),
1596
- cb?: (err: any, data?: GetTemplateCommandOutput) => void
1597
- ): Promise<GetTemplateCommandOutput> | void {
1598
- const command = new GetTemplateCommand(args);
1599
- if (typeof optionsOrCb === "function") {
1600
- this.send(command, optionsOrCb);
1601
- } else if (typeof cb === "function") {
1602
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1603
- this.send(command, optionsOrCb || {}, cb);
1604
- } else {
1605
- return this.send(command, optionsOrCb);
1606
- }
1607
- }
1608
-
1609
- /**
1610
- * <p>Provides a list of the configuration sets associated with your Amazon SES account in the
1611
- * current AWS Region. For information about using configuration sets, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Monitoring Your Amazon SES Sending Activity</a> in the <i>Amazon SES Developer
1612
- * Guide.</i>
1613
- * </p>
1614
- * <p>You can execute this operation no more than once per second. This operation will
1615
- * return up to 1,000 configuration sets each time it is run. If your Amazon SES account has
1616
- * more than 1,000 configuration sets, this operation will also return a NextToken element.
1617
- * You can then execute the <code>ListConfigurationSets</code> operation again, passing the
1618
- * <code>NextToken</code> parameter and the value of the NextToken element to retrieve
1619
- * additional results.</p>
1620
- */
1621
- public listConfigurationSets(
1622
- args: ListConfigurationSetsCommandInput,
1623
- options?: __HttpHandlerOptions
1624
- ): Promise<ListConfigurationSetsCommandOutput>;
1625
- public listConfigurationSets(
1626
- args: ListConfigurationSetsCommandInput,
1627
- cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void
1628
- ): void;
1629
- public listConfigurationSets(
1630
- args: ListConfigurationSetsCommandInput,
1631
- options: __HttpHandlerOptions,
1632
- cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void
1633
- ): void;
1634
- public listConfigurationSets(
1635
- args: ListConfigurationSetsCommandInput,
1636
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListConfigurationSetsCommandOutput) => void),
1637
- cb?: (err: any, data?: ListConfigurationSetsCommandOutput) => void
1638
- ): Promise<ListConfigurationSetsCommandOutput> | void {
1639
- const command = new ListConfigurationSetsCommand(args);
1640
- if (typeof optionsOrCb === "function") {
1641
- this.send(command, optionsOrCb);
1642
- } else if (typeof cb === "function") {
1643
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1644
- this.send(command, optionsOrCb || {}, cb);
1645
- } else {
1646
- return this.send(command, optionsOrCb);
1647
- }
1648
- }
1649
-
1650
- /**
1651
- * <p>Lists the existing custom verification email templates for your account in the current
1652
- * AWS Region.</p>
1653
- * <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
1654
- * Guide</i>.</p>
1655
- * <p>You can execute this operation no more than once per second.</p>
1656
- */
1657
- public listCustomVerificationEmailTemplates(
1658
- args: ListCustomVerificationEmailTemplatesCommandInput,
1659
- options?: __HttpHandlerOptions
1660
- ): Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
1661
- public listCustomVerificationEmailTemplates(
1662
- args: ListCustomVerificationEmailTemplatesCommandInput,
1663
- cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void
1664
- ): void;
1665
- public listCustomVerificationEmailTemplates(
1666
- args: ListCustomVerificationEmailTemplatesCommandInput,
1667
- options: __HttpHandlerOptions,
1668
- cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void
1669
- ): void;
1670
- public listCustomVerificationEmailTemplates(
1671
- args: ListCustomVerificationEmailTemplatesCommandInput,
1672
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void),
1673
- cb?: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void
1674
- ): Promise<ListCustomVerificationEmailTemplatesCommandOutput> | void {
1675
- const command = new ListCustomVerificationEmailTemplatesCommand(args);
1676
- if (typeof optionsOrCb === "function") {
1677
- this.send(command, optionsOrCb);
1678
- } else if (typeof cb === "function") {
1679
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1680
- this.send(command, optionsOrCb || {}, cb);
1681
- } else {
1682
- return this.send(command, optionsOrCb);
1683
- }
1684
- }
1685
-
1686
- /**
1687
- * <p>Returns a list containing all of the identities (email addresses and domains) for your
1688
- * AWS account in the current AWS Region, regardless of verification status.</p>
1689
- * <p>You can execute this operation no more than once per second.</p>
1690
- */
1691
- public listIdentities(
1692
- args: ListIdentitiesCommandInput,
1693
- options?: __HttpHandlerOptions
1694
- ): Promise<ListIdentitiesCommandOutput>;
1695
- public listIdentities(
1696
- args: ListIdentitiesCommandInput,
1697
- cb: (err: any, data?: ListIdentitiesCommandOutput) => void
1698
- ): void;
1699
- public listIdentities(
1700
- args: ListIdentitiesCommandInput,
1701
- options: __HttpHandlerOptions,
1702
- cb: (err: any, data?: ListIdentitiesCommandOutput) => void
1703
- ): void;
1704
- public listIdentities(
1705
- args: ListIdentitiesCommandInput,
1706
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListIdentitiesCommandOutput) => void),
1707
- cb?: (err: any, data?: ListIdentitiesCommandOutput) => void
1708
- ): Promise<ListIdentitiesCommandOutput> | void {
1709
- const command = new ListIdentitiesCommand(args);
1710
- if (typeof optionsOrCb === "function") {
1711
- this.send(command, optionsOrCb);
1712
- } else if (typeof cb === "function") {
1713
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1714
- this.send(command, optionsOrCb || {}, cb);
1715
- } else {
1716
- return this.send(command, optionsOrCb);
1717
- }
1718
- }
1719
-
1720
- /**
1721
- * <p>Returns a list of sending authorization policies that are attached to the given
1722
- * identity (an email address or a domain). This API returns only a list. If you want the
1723
- * actual policy content, you can use <code>GetIdentityPolicies</code>.</p>
1724
- * <note>
1725
- * <p>This API is for the identity owner only. If you have not verified the identity,
1726
- * this API will return an error.</p>
1727
- * </note>
1728
- * <p>Sending authorization is a feature that enables an identity owner to authorize other
1729
- * senders to use its identities. For information about using sending authorization, see
1730
- * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
1731
- * Guide</a>.</p>
1732
- * <p>You can execute this operation no more than once per second.</p>
1733
- */
1734
- public listIdentityPolicies(
1735
- args: ListIdentityPoliciesCommandInput,
1736
- options?: __HttpHandlerOptions
1737
- ): Promise<ListIdentityPoliciesCommandOutput>;
1738
- public listIdentityPolicies(
1739
- args: ListIdentityPoliciesCommandInput,
1740
- cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void
1741
- ): void;
1742
- public listIdentityPolicies(
1743
- args: ListIdentityPoliciesCommandInput,
1744
- options: __HttpHandlerOptions,
1745
- cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void
1746
- ): void;
1747
- public listIdentityPolicies(
1748
- args: ListIdentityPoliciesCommandInput,
1749
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListIdentityPoliciesCommandOutput) => void),
1750
- cb?: (err: any, data?: ListIdentityPoliciesCommandOutput) => void
1751
- ): Promise<ListIdentityPoliciesCommandOutput> | void {
1752
- const command = new ListIdentityPoliciesCommand(args);
1753
- if (typeof optionsOrCb === "function") {
1754
- this.send(command, optionsOrCb);
1755
- } else if (typeof cb === "function") {
1756
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1757
- this.send(command, optionsOrCb || {}, cb);
1758
- } else {
1759
- return this.send(command, optionsOrCb);
1760
- }
1761
- }
1762
-
1763
- /**
1764
- * <p>Lists the IP address filters associated with your AWS account in the current AWS
1765
- * Region.</p>
1766
- * <p>For information about managing IP address filters, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html">Amazon SES
1767
- * Developer Guide</a>.</p>
1768
- * <p>You can execute this operation no more than once per second.</p>
1769
- */
1770
- public listReceiptFilters(
1771
- args: ListReceiptFiltersCommandInput,
1772
- options?: __HttpHandlerOptions
1773
- ): Promise<ListReceiptFiltersCommandOutput>;
1774
- public listReceiptFilters(
1775
- args: ListReceiptFiltersCommandInput,
1776
- cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void
1777
- ): void;
1778
- public listReceiptFilters(
1779
- args: ListReceiptFiltersCommandInput,
1780
- options: __HttpHandlerOptions,
1781
- cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void
1782
- ): void;
1783
- public listReceiptFilters(
1784
- args: ListReceiptFiltersCommandInput,
1785
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListReceiptFiltersCommandOutput) => void),
1786
- cb?: (err: any, data?: ListReceiptFiltersCommandOutput) => void
1787
- ): Promise<ListReceiptFiltersCommandOutput> | void {
1788
- const command = new ListReceiptFiltersCommand(args);
1789
- if (typeof optionsOrCb === "function") {
1790
- this.send(command, optionsOrCb);
1791
- } else if (typeof cb === "function") {
1792
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1793
- this.send(command, optionsOrCb || {}, cb);
1794
- } else {
1795
- return this.send(command, optionsOrCb);
1796
- }
1797
- }
1798
-
1799
- /**
1800
- * <p>Lists the receipt rule sets that exist under your AWS account in the current AWS
1801
- * Region. If there are additional receipt rule sets to be retrieved, you will receive a
1802
- * <code>NextToken</code> that you can provide to the next call to
1803
- * <code>ListReceiptRuleSets</code> to retrieve the additional entries.</p>
1804
- * <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
1805
- * <p>You can execute this operation no more than once per second.</p>
1806
- */
1807
- public listReceiptRuleSets(
1808
- args: ListReceiptRuleSetsCommandInput,
1809
- options?: __HttpHandlerOptions
1810
- ): Promise<ListReceiptRuleSetsCommandOutput>;
1811
- public listReceiptRuleSets(
1812
- args: ListReceiptRuleSetsCommandInput,
1813
- cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void
1814
- ): void;
1815
- public listReceiptRuleSets(
1816
- args: ListReceiptRuleSetsCommandInput,
1817
- options: __HttpHandlerOptions,
1818
- cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void
1819
- ): void;
1820
- public listReceiptRuleSets(
1821
- args: ListReceiptRuleSetsCommandInput,
1822
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListReceiptRuleSetsCommandOutput) => void),
1823
- cb?: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void
1824
- ): Promise<ListReceiptRuleSetsCommandOutput> | void {
1825
- const command = new ListReceiptRuleSetsCommand(args);
1826
- if (typeof optionsOrCb === "function") {
1827
- this.send(command, optionsOrCb);
1828
- } else if (typeof cb === "function") {
1829
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1830
- this.send(command, optionsOrCb || {}, cb);
1831
- } else {
1832
- return this.send(command, optionsOrCb);
1833
- }
1834
- }
1835
-
1836
- /**
1837
- * <p>Lists the email templates present in your Amazon SES account in the current AWS
1838
- * Region.</p>
1839
- * <p>You can execute this operation no more than once per second.</p>
1840
- */
1841
- public listTemplates(
1842
- args: ListTemplatesCommandInput,
1843
- options?: __HttpHandlerOptions
1844
- ): Promise<ListTemplatesCommandOutput>;
1845
- public listTemplates(
1846
- args: ListTemplatesCommandInput,
1847
- cb: (err: any, data?: ListTemplatesCommandOutput) => void
1848
- ): void;
1849
- public listTemplates(
1850
- args: ListTemplatesCommandInput,
1851
- options: __HttpHandlerOptions,
1852
- cb: (err: any, data?: ListTemplatesCommandOutput) => void
1853
- ): void;
1854
- public listTemplates(
1855
- args: ListTemplatesCommandInput,
1856
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListTemplatesCommandOutput) => void),
1857
- cb?: (err: any, data?: ListTemplatesCommandOutput) => void
1858
- ): Promise<ListTemplatesCommandOutput> | void {
1859
- const command = new ListTemplatesCommand(args);
1860
- if (typeof optionsOrCb === "function") {
1861
- this.send(command, optionsOrCb);
1862
- } else if (typeof cb === "function") {
1863
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1864
- this.send(command, optionsOrCb || {}, cb);
1865
- } else {
1866
- return this.send(command, optionsOrCb);
1867
- }
1868
- }
1869
-
1870
- /**
1871
- * <p>Deprecated. Use the <code>ListIdentities</code> operation to list the email addresses
1872
- * and domains associated with your account.</p>
1873
- */
1874
- public listVerifiedEmailAddresses(
1875
- args: ListVerifiedEmailAddressesCommandInput,
1876
- options?: __HttpHandlerOptions
1877
- ): Promise<ListVerifiedEmailAddressesCommandOutput>;
1878
- public listVerifiedEmailAddresses(
1879
- args: ListVerifiedEmailAddressesCommandInput,
1880
- cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void
1881
- ): void;
1882
- public listVerifiedEmailAddresses(
1883
- args: ListVerifiedEmailAddressesCommandInput,
1884
- options: __HttpHandlerOptions,
1885
- cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void
1886
- ): void;
1887
- public listVerifiedEmailAddresses(
1888
- args: ListVerifiedEmailAddressesCommandInput,
1889
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void),
1890
- cb?: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void
1891
- ): Promise<ListVerifiedEmailAddressesCommandOutput> | void {
1892
- const command = new ListVerifiedEmailAddressesCommand(args);
1893
- if (typeof optionsOrCb === "function") {
1894
- this.send(command, optionsOrCb);
1895
- } else if (typeof cb === "function") {
1896
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1897
- this.send(command, optionsOrCb || {}, cb);
1898
- } else {
1899
- return this.send(command, optionsOrCb);
1900
- }
1901
- }
1902
-
1903
- /**
1904
- * <p>Adds or updates the delivery options for a configuration set.</p>
1905
- */
1906
- public putConfigurationSetDeliveryOptions(
1907
- args: PutConfigurationSetDeliveryOptionsCommandInput,
1908
- options?: __HttpHandlerOptions
1909
- ): Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
1910
- public putConfigurationSetDeliveryOptions(
1911
- args: PutConfigurationSetDeliveryOptionsCommandInput,
1912
- cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void
1913
- ): void;
1914
- public putConfigurationSetDeliveryOptions(
1915
- args: PutConfigurationSetDeliveryOptionsCommandInput,
1916
- options: __HttpHandlerOptions,
1917
- cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void
1918
- ): void;
1919
- public putConfigurationSetDeliveryOptions(
1920
- args: PutConfigurationSetDeliveryOptionsCommandInput,
1921
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void),
1922
- cb?: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void
1923
- ): Promise<PutConfigurationSetDeliveryOptionsCommandOutput> | void {
1924
- const command = new PutConfigurationSetDeliveryOptionsCommand(args);
1925
- if (typeof optionsOrCb === "function") {
1926
- this.send(command, optionsOrCb);
1927
- } else if (typeof cb === "function") {
1928
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1929
- this.send(command, optionsOrCb || {}, cb);
1930
- } else {
1931
- return this.send(command, optionsOrCb);
1932
- }
1933
- }
1934
-
1935
- /**
1936
- * <p>Adds or updates a sending authorization policy for the specified identity (an email
1937
- * address or a domain).</p>
1938
- * <note>
1939
- * <p>This API is for the identity owner only. If you have not verified the identity,
1940
- * this API will return an error.</p>
1941
- * </note>
1942
- * <p>Sending authorization is a feature that enables an identity owner to authorize other
1943
- * senders to use its identities. For information about using sending authorization, see
1944
- * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
1945
- * Guide</a>.</p>
1946
- * <p>You can execute this operation no more than once per second.</p>
1947
- */
1948
- public putIdentityPolicy(
1949
- args: PutIdentityPolicyCommandInput,
1950
- options?: __HttpHandlerOptions
1951
- ): Promise<PutIdentityPolicyCommandOutput>;
1952
- public putIdentityPolicy(
1953
- args: PutIdentityPolicyCommandInput,
1954
- cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void
1955
- ): void;
1956
- public putIdentityPolicy(
1957
- args: PutIdentityPolicyCommandInput,
1958
- options: __HttpHandlerOptions,
1959
- cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void
1960
- ): void;
1961
- public putIdentityPolicy(
1962
- args: PutIdentityPolicyCommandInput,
1963
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: PutIdentityPolicyCommandOutput) => void),
1964
- cb?: (err: any, data?: PutIdentityPolicyCommandOutput) => void
1965
- ): Promise<PutIdentityPolicyCommandOutput> | void {
1966
- const command = new PutIdentityPolicyCommand(args);
1967
- if (typeof optionsOrCb === "function") {
1968
- this.send(command, optionsOrCb);
1969
- } else if (typeof cb === "function") {
1970
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1971
- this.send(command, optionsOrCb || {}, cb);
1972
- } else {
1973
- return this.send(command, optionsOrCb);
1974
- }
1975
- }
1976
-
1977
- /**
1978
- * <p>Reorders the receipt rules within a receipt rule set.</p>
1979
- * <note>
1980
- * <p>All of the rules in the rule set must be represented in this request. That is,
1981
- * this API will return an error if the reorder request doesn't explicitly position all
1982
- * of the rules.</p>
1983
- * </note>
1984
- * <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
1985
- * <p>You can execute this operation no more than once per second.</p>
1986
- */
1987
- public reorderReceiptRuleSet(
1988
- args: ReorderReceiptRuleSetCommandInput,
1989
- options?: __HttpHandlerOptions
1990
- ): Promise<ReorderReceiptRuleSetCommandOutput>;
1991
- public reorderReceiptRuleSet(
1992
- args: ReorderReceiptRuleSetCommandInput,
1993
- cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void
1994
- ): void;
1995
- public reorderReceiptRuleSet(
1996
- args: ReorderReceiptRuleSetCommandInput,
1997
- options: __HttpHandlerOptions,
1998
- cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void
1999
- ): void;
2000
- public reorderReceiptRuleSet(
2001
- args: ReorderReceiptRuleSetCommandInput,
2002
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ReorderReceiptRuleSetCommandOutput) => void),
2003
- cb?: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void
2004
- ): Promise<ReorderReceiptRuleSetCommandOutput> | void {
2005
- const command = new ReorderReceiptRuleSetCommand(args);
2006
- if (typeof optionsOrCb === "function") {
2007
- this.send(command, optionsOrCb);
2008
- } else if (typeof cb === "function") {
2009
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2010
- this.send(command, optionsOrCb || {}, cb);
2011
- } else {
2012
- return this.send(command, optionsOrCb);
2013
- }
2014
- }
2015
-
2016
- /**
2017
- * <p>Generates and sends a bounce message to the sender of an email you received through
2018
- * Amazon SES. You can only use this API on an email up to 24 hours after you receive it.</p>
2019
- * <note>
2020
- * <p>You cannot use this API to send generic bounces for mail that was not received by
2021
- * Amazon SES.</p>
2022
- * </note>
2023
- * <p>For information about receiving email through Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html">Amazon SES
2024
- * Developer Guide</a>.</p>
2025
- * <p>You can execute this operation no more than once per second.</p>
2026
- */
2027
- public sendBounce(args: SendBounceCommandInput, options?: __HttpHandlerOptions): Promise<SendBounceCommandOutput>;
2028
- public sendBounce(args: SendBounceCommandInput, cb: (err: any, data?: SendBounceCommandOutput) => void): void;
2029
- public sendBounce(
2030
- args: SendBounceCommandInput,
2031
- options: __HttpHandlerOptions,
2032
- cb: (err: any, data?: SendBounceCommandOutput) => void
2033
- ): void;
2034
- public sendBounce(
2035
- args: SendBounceCommandInput,
2036
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendBounceCommandOutput) => void),
2037
- cb?: (err: any, data?: SendBounceCommandOutput) => void
2038
- ): Promise<SendBounceCommandOutput> | void {
2039
- const command = new SendBounceCommand(args);
2040
- if (typeof optionsOrCb === "function") {
2041
- this.send(command, optionsOrCb);
2042
- } else if (typeof cb === "function") {
2043
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2044
- this.send(command, optionsOrCb || {}, cb);
2045
- } else {
2046
- return this.send(command, optionsOrCb);
2047
- }
2048
- }
2049
-
2050
- /**
2051
- * <p>Composes an email message to multiple destinations. The message body is created using
2052
- * an email template.</p>
2053
- * <p>In order to send email using the <code>SendBulkTemplatedEmail</code> operation, your
2054
- * call to the API must meet the following requirements:</p>
2055
- * <ul>
2056
- * <li>
2057
- * <p>The call must refer to an existing email template. You can create email
2058
- * templates using the <a>CreateTemplate</a> operation.</p>
2059
- * </li>
2060
- * <li>
2061
- * <p>The message must be sent from a verified email address or domain.</p>
2062
- * </li>
2063
- * <li>
2064
- * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
2065
- * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
2066
- * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
2067
- * Email Addresses and Domains</a> in the <i>Amazon SES Developer
2068
- * Guide.</i>
2069
- * </p>
2070
- * </li>
2071
- * <li>
2072
- * <p>The maximum message size is 10 MB.</p>
2073
- * </li>
2074
- * <li>
2075
- * <p>Each <code>Destination</code> parameter must include at least one recipient
2076
- * email address. The recipient address can be a To: address, a CC: address, or a
2077
- * BCC: address. If a recipient email address is invalid (that is, it is not in the
2078
- * format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
2079
- * entire message will be rejected, even if the message contains other recipients
2080
- * that are valid.</p>
2081
- * </li>
2082
- * <li>
2083
- * <p>The message may not include more than 50 recipients, across the To:, CC: and
2084
- * BCC: fields. If you need to send an email message to a larger audience, you can
2085
- * divide your recipient list into groups of 50 or fewer, and then call the
2086
- * <code>SendBulkTemplatedEmail</code> operation several times to send the
2087
- * message to each group.</p>
2088
- * </li>
2089
- * <li>
2090
- * <p>The number of destinations you can contact in a single call to the API may be
2091
- * limited by your account's maximum sending rate.</p>
2092
- * </li>
2093
- * </ul>
2094
- */
2095
- public sendBulkTemplatedEmail(
2096
- args: SendBulkTemplatedEmailCommandInput,
2097
- options?: __HttpHandlerOptions
2098
- ): Promise<SendBulkTemplatedEmailCommandOutput>;
2099
- public sendBulkTemplatedEmail(
2100
- args: SendBulkTemplatedEmailCommandInput,
2101
- cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void
2102
- ): void;
2103
- public sendBulkTemplatedEmail(
2104
- args: SendBulkTemplatedEmailCommandInput,
2105
- options: __HttpHandlerOptions,
2106
- cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void
2107
- ): void;
2108
- public sendBulkTemplatedEmail(
2109
- args: SendBulkTemplatedEmailCommandInput,
2110
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendBulkTemplatedEmailCommandOutput) => void),
2111
- cb?: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void
2112
- ): Promise<SendBulkTemplatedEmailCommandOutput> | void {
2113
- const command = new SendBulkTemplatedEmailCommand(args);
2114
- if (typeof optionsOrCb === "function") {
2115
- this.send(command, optionsOrCb);
2116
- } else if (typeof cb === "function") {
2117
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2118
- this.send(command, optionsOrCb || {}, cb);
2119
- } else {
2120
- return this.send(command, optionsOrCb);
2121
- }
2122
- }
2123
-
2124
- /**
2125
- * <p>Adds an email address to the list of identities for your Amazon SES account in the current
2126
- * AWS Region and attempts to verify it. As a result of executing this operation, a
2127
- * customized verification email is sent to the specified address.</p>
2128
- * <p>To use this operation, you must first create a custom verification email template. For
2129
- * more information about creating and using custom verification email templates, see
2130
- * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom
2131
- * Verification Email Templates</a> in the <i>Amazon SES Developer
2132
- * Guide</i>.</p>
2133
- * <p>You can execute this operation no more than once per second.</p>
2134
- */
2135
- public sendCustomVerificationEmail(
2136
- args: SendCustomVerificationEmailCommandInput,
2137
- options?: __HttpHandlerOptions
2138
- ): Promise<SendCustomVerificationEmailCommandOutput>;
2139
- public sendCustomVerificationEmail(
2140
- args: SendCustomVerificationEmailCommandInput,
2141
- cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void
2142
- ): void;
2143
- public sendCustomVerificationEmail(
2144
- args: SendCustomVerificationEmailCommandInput,
2145
- options: __HttpHandlerOptions,
2146
- cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void
2147
- ): void;
2148
- public sendCustomVerificationEmail(
2149
- args: SendCustomVerificationEmailCommandInput,
2150
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendCustomVerificationEmailCommandOutput) => void),
2151
- cb?: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void
2152
- ): Promise<SendCustomVerificationEmailCommandOutput> | void {
2153
- const command = new SendCustomVerificationEmailCommand(args);
2154
- if (typeof optionsOrCb === "function") {
2155
- this.send(command, optionsOrCb);
2156
- } else if (typeof cb === "function") {
2157
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2158
- this.send(command, optionsOrCb || {}, cb);
2159
- } else {
2160
- return this.send(command, optionsOrCb);
2161
- }
2162
- }
2163
-
2164
- /**
2165
- * <p>Composes an email message and immediately queues it for sending. In order to send
2166
- * email using the <code>SendEmail</code> operation, your message must meet the following
2167
- * requirements:</p>
2168
- *
2169
- * <ul>
2170
- * <li>
2171
- * <p>The message must be sent from a verified email address or domain. If you
2172
- * attempt to send email using a non-verified address or domain, the operation will
2173
- * result in an "Email address not verified" error. </p>
2174
- * </li>
2175
- * <li>
2176
- * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
2177
- * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
2178
- * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
2179
- * Email Addresses and Domains</a> in the <i>Amazon SES Developer
2180
- * Guide.</i>
2181
- * </p>
2182
- * </li>
2183
- * <li>
2184
- * <p>The maximum message size is 10 MB.</p>
2185
- * </li>
2186
- * <li>
2187
- * <p>The message must include at least one recipient email address. The recipient
2188
- * address can be a To: address, a CC: address, or a BCC: address. If a recipient
2189
- * email address is invalid (that is, it is not in the format
2190
- * <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the entire
2191
- * message will be rejected, even if the message contains other recipients that are
2192
- * valid.</p>
2193
- * </li>
2194
- * <li>
2195
- * <p>The message may not include more than 50 recipients, across the To:, CC: and
2196
- * BCC: fields. If you need to send an email message to a larger audience, you can
2197
- * divide your recipient list into groups of 50 or fewer, and then call the
2198
- * <code>SendEmail</code> operation several times to send the message to each
2199
- * group.</p>
2200
- * </li>
2201
- * </ul>
2202
- * <important>
2203
- * <p>For every message that you send, the total number of recipients (including each
2204
- * recipient in the To:, CC: and BCC: fields) is counted against the maximum number of
2205
- * emails you can send in a 24-hour period (your <i>sending quota</i>).
2206
- * For more information about sending quotas in Amazon SES, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your Amazon SES
2207
- * Sending Limits</a> in the <i>Amazon SES Developer Guide.</i>
2208
- * </p>
2209
- * </important>
2210
- */
2211
- public sendEmail(args: SendEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendEmailCommandOutput>;
2212
- public sendEmail(args: SendEmailCommandInput, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
2213
- public sendEmail(
2214
- args: SendEmailCommandInput,
2215
- options: __HttpHandlerOptions,
2216
- cb: (err: any, data?: SendEmailCommandOutput) => void
2217
- ): void;
2218
- public sendEmail(
2219
- args: SendEmailCommandInput,
2220
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendEmailCommandOutput) => void),
2221
- cb?: (err: any, data?: SendEmailCommandOutput) => void
2222
- ): Promise<SendEmailCommandOutput> | void {
2223
- const command = new SendEmailCommand(args);
2224
- if (typeof optionsOrCb === "function") {
2225
- this.send(command, optionsOrCb);
2226
- } else if (typeof cb === "function") {
2227
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2228
- this.send(command, optionsOrCb || {}, cb);
2229
- } else {
2230
- return this.send(command, optionsOrCb);
2231
- }
2232
- }
2233
-
2234
- /**
2235
- * <p>Composes an email message and immediately queues it for sending.</p>
2236
- *
2237
- * <p>This operation is more flexible than the <code>SendEmail</code> API operation. When
2238
- * you use the <code>SendRawEmail</code> operation, you can specify the headers of the
2239
- * message as well as its content. This flexibility is useful, for example, when you want
2240
- * to send a multipart MIME email (such a message that contains both a text and an HTML
2241
- * version). You can also use this operation to send messages that include
2242
- * attachments.</p>
2243
- * <p>The <code>SendRawEmail</code> operation has the following requirements:</p>
2244
- * <ul>
2245
- * <li>
2246
- * <p>You can only send email from <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">verified email addresses or domains</a>. If you try
2247
- * to send email from an address that isn't verified, the operation results in an
2248
- * "Email address not verified" error.</p>
2249
- * </li>
2250
- * <li>
2251
- * <p>If your account is still in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html">Amazon SES sandbox</a>, you can only send email to other
2252
- * verified addresses in your account, or to addresses that are associated with the
2253
- * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mailbox-simulator.html">Amazon SES mailbox simulator</a>.</p>
2254
- * </li>
2255
- * <li>
2256
- * <p>The maximum message size, including attachments, is 10 MB.</p>
2257
- * </li>
2258
- * <li>
2259
- * <p>Each message has to include at least one recipient address. A recipient
2260
- * address includes any address on the To:, CC:, or BCC: lines.</p>
2261
- * </li>
2262
- * <li>
2263
- * <p>If you send a single message to more than one recipient address, and one of
2264
- * the recipient addresses isn't in a valid format (that is, it's not in the format
2265
- * <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), Amazon SES
2266
- * rejects the entire message, even if the other addresses are valid.</p>
2267
- * </li>
2268
- * <li>
2269
- * <p>Each message can include up to 50 recipient addresses across the To:, CC:, or
2270
- * BCC: lines. If you need to send a single message to more than 50 recipients, you
2271
- * have to split the list of recipient addresses into groups of less than 50
2272
- * recipients, and send separate messages to each group.</p>
2273
- * </li>
2274
- * <li>
2275
- * <p>Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message
2276
- * parts. However, if Amazon SES has to modify the contents of your message (for
2277
- * example, if you use open and click tracking), 8-bit content isn't preserved. For
2278
- * this reason, we highly recommend that you encode all content that isn't 7-bit
2279
- * ASCII. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html#send-email-mime-encoding">MIME Encoding</a> in the <i>Amazon SES Developer
2280
- * Guide</i>.</p>
2281
- * </li>
2282
- * </ul>
2283
- *
2284
- *
2285
- *
2286
- * <p>Additionally, keep the following considerations in mind when using the
2287
- * <code>SendRawEmail</code> operation:</p>
2288
- *
2289
- * <ul>
2290
- * <li>
2291
- * <p>Although you can customize the message headers when using the
2292
- * <code>SendRawEmail</code> operation, Amazon SES will automatically apply its own
2293
- * <code>Message-ID</code> and <code>Date</code> headers; if you passed these
2294
- * headers when creating the message, they will be overwritten by the values that
2295
- * Amazon SES provides.</p>
2296
- * </li>
2297
- * <li>
2298
- * <p>If you are using sending authorization to send on behalf of another user,
2299
- * <code>SendRawEmail</code> enables you to specify the cross-account identity
2300
- * for the email's Source, From, and Return-Path parameters in one of two ways: you
2301
- * can pass optional parameters <code>SourceArn</code>, <code>FromArn</code>,
2302
- * and/or <code>ReturnPathArn</code> to the API, or you can include the following
2303
- * X-headers in the header of your raw email:</p>
2304
- * <ul>
2305
- * <li>
2306
- * <p>
2307
- * <code>X-SES-SOURCE-ARN</code>
2308
- * </p>
2309
- * </li>
2310
- * <li>
2311
- * <p>
2312
- * <code>X-SES-FROM-ARN</code>
2313
- * </p>
2314
- * </li>
2315
- * <li>
2316
- * <p>
2317
- * <code>X-SES-RETURN-PATH-ARN</code>
2318
- * </p>
2319
- * </li>
2320
- * </ul>
2321
- * <important>
2322
- * <p>Don't include these X-headers in the DKIM signature. Amazon SES removes these
2323
- * before it sends the email.</p>
2324
- * </important>
2325
- * <p>If you only specify the <code>SourceIdentityArn</code> parameter, Amazon SES sets
2326
- * the From and Return-Path addresses to the same identity that you
2327
- * specified.</p>
2328
- * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Using Sending
2329
- * Authorization with Amazon SES</a> in the <i>Amazon SES Developer
2330
- * Guide.</i>
2331
- * </p>
2332
- * </li>
2333
- * <li>
2334
- * <p>For every message that you send, the total number of recipients (including
2335
- * each recipient in the To:, CC: and BCC: fields) is counted against the maximum
2336
- * number of emails you can send in a 24-hour period (your <i>sending
2337
- * quota</i>). For more information about sending quotas in Amazon SES, see
2338
- * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your
2339
- * Amazon SES Sending Limits</a> in the <i>Amazon SES Developer
2340
- * Guide.</i>
2341
- * </p>
2342
- * </li>
2343
- * </ul>
2344
- */
2345
- public sendRawEmail(
2346
- args: SendRawEmailCommandInput,
2347
- options?: __HttpHandlerOptions
2348
- ): Promise<SendRawEmailCommandOutput>;
2349
- public sendRawEmail(args: SendRawEmailCommandInput, cb: (err: any, data?: SendRawEmailCommandOutput) => void): void;
2350
- public sendRawEmail(
2351
- args: SendRawEmailCommandInput,
2352
- options: __HttpHandlerOptions,
2353
- cb: (err: any, data?: SendRawEmailCommandOutput) => void
2354
- ): void;
2355
- public sendRawEmail(
2356
- args: SendRawEmailCommandInput,
2357
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendRawEmailCommandOutput) => void),
2358
- cb?: (err: any, data?: SendRawEmailCommandOutput) => void
2359
- ): Promise<SendRawEmailCommandOutput> | void {
2360
- const command = new SendRawEmailCommand(args);
2361
- if (typeof optionsOrCb === "function") {
2362
- this.send(command, optionsOrCb);
2363
- } else if (typeof cb === "function") {
2364
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2365
- this.send(command, optionsOrCb || {}, cb);
2366
- } else {
2367
- return this.send(command, optionsOrCb);
2368
- }
2369
- }
2370
-
2371
- /**
2372
- * <p>Composes an email message using an email template and immediately queues it for
2373
- * sending.</p>
2374
- * <p>In order to send email using the <code>SendTemplatedEmail</code> operation, your call
2375
- * to the API must meet the following requirements:</p>
2376
- * <ul>
2377
- * <li>
2378
- * <p>The call must refer to an existing email template. You can create email
2379
- * templates using the <a>CreateTemplate</a> operation.</p>
2380
- * </li>
2381
- * <li>
2382
- * <p>The message must be sent from a verified email address or domain.</p>
2383
- * </li>
2384
- * <li>
2385
- * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
2386
- * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
2387
- * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
2388
- * Email Addresses and Domains</a> in the <i>Amazon SES Developer
2389
- * Guide.</i>
2390
- * </p>
2391
- * </li>
2392
- * <li>
2393
- * <p>The maximum message size is 10 MB.</p>
2394
- * </li>
2395
- * <li>
2396
- * <p>Calls to the <code>SendTemplatedEmail</code> operation may only include one
2397
- * <code>Destination</code> parameter. A destination is a set of recipients who
2398
- * will receive the same version of the email. The <code>Destination</code>
2399
- * parameter can include up to 50 recipients, across the To:, CC: and BCC:
2400
- * fields.</p>
2401
- * </li>
2402
- * <li>
2403
- * <p>The <code>Destination</code> parameter must include at least one recipient
2404
- * email address. The recipient address can be a To: address, a CC: address, or a
2405
- * BCC: address. If a recipient email address is invalid (that is, it is not in the
2406
- * format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
2407
- * entire message will be rejected, even if the message contains other recipients
2408
- * that are valid.</p>
2409
- * </li>
2410
- * </ul>
2411
- * <important>
2412
- * <p>If your call to the <code>SendTemplatedEmail</code> operation includes all of the
2413
- * required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES
2414
- * can't render the email because the template contains errors, it doesn't send the
2415
- * email. Additionally, because it already accepted the message, Amazon SES doesn't return a
2416
- * message stating that it was unable to send the email.</p>
2417
- * <p>For these reasons, we highly recommend that you set up Amazon SES to send you
2418
- * notifications when Rendering Failure events occur. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Sending
2419
- * Personalized Email Using the Amazon SES API</a> in the <i>Amazon Simple Email Service
2420
- * Developer Guide</i>.</p>
2421
- * </important>
2422
- */
2423
- public sendTemplatedEmail(
2424
- args: SendTemplatedEmailCommandInput,
2425
- options?: __HttpHandlerOptions
2426
- ): Promise<SendTemplatedEmailCommandOutput>;
2427
- public sendTemplatedEmail(
2428
- args: SendTemplatedEmailCommandInput,
2429
- cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void
2430
- ): void;
2431
- public sendTemplatedEmail(
2432
- args: SendTemplatedEmailCommandInput,
2433
- options: __HttpHandlerOptions,
2434
- cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void
2435
- ): void;
2436
- public sendTemplatedEmail(
2437
- args: SendTemplatedEmailCommandInput,
2438
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SendTemplatedEmailCommandOutput) => void),
2439
- cb?: (err: any, data?: SendTemplatedEmailCommandOutput) => void
2440
- ): Promise<SendTemplatedEmailCommandOutput> | void {
2441
- const command = new SendTemplatedEmailCommand(args);
2442
- if (typeof optionsOrCb === "function") {
2443
- this.send(command, optionsOrCb);
2444
- } else if (typeof cb === "function") {
2445
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2446
- this.send(command, optionsOrCb || {}, cb);
2447
- } else {
2448
- return this.send(command, optionsOrCb);
2449
- }
2450
- }
2451
-
2452
- /**
2453
- * <p>Sets the specified receipt rule set as the active receipt rule set.</p>
2454
- * <note>
2455
- * <p>To disable your email-receiving through Amazon SES completely, you can call this API
2456
- * with RuleSetName set to null.</p>
2457
- * </note>
2458
- * <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
2459
- * <p>You can execute this operation no more than once per second.</p>
2460
- */
2461
- public setActiveReceiptRuleSet(
2462
- args: SetActiveReceiptRuleSetCommandInput,
2463
- options?: __HttpHandlerOptions
2464
- ): Promise<SetActiveReceiptRuleSetCommandOutput>;
2465
- public setActiveReceiptRuleSet(
2466
- args: SetActiveReceiptRuleSetCommandInput,
2467
- cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void
2468
- ): void;
2469
- public setActiveReceiptRuleSet(
2470
- args: SetActiveReceiptRuleSetCommandInput,
2471
- options: __HttpHandlerOptions,
2472
- cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void
2473
- ): void;
2474
- public setActiveReceiptRuleSet(
2475
- args: SetActiveReceiptRuleSetCommandInput,
2476
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void),
2477
- cb?: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void
2478
- ): Promise<SetActiveReceiptRuleSetCommandOutput> | void {
2479
- const command = new SetActiveReceiptRuleSetCommand(args);
2480
- if (typeof optionsOrCb === "function") {
2481
- this.send(command, optionsOrCb);
2482
- } else if (typeof cb === "function") {
2483
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2484
- this.send(command, optionsOrCb || {}, cb);
2485
- } else {
2486
- return this.send(command, optionsOrCb);
2487
- }
2488
- }
2489
-
2490
- /**
2491
- * <p>Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM
2492
- * signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends
2493
- * from addresses on that domain. If Easy DKIM signing is enabled for an email address,
2494
- * then Amazon SES uses DKIM to sign all email it sends from that address.</p>
2495
- * <note>
2496
- * <p>For email addresses (for example, <code>user@example.com</code>), you can only
2497
- * enable DKIM signing if the corresponding domain (in this case,
2498
- * <code>example.com</code>) has been set up to use Easy DKIM.</p>
2499
- * </note>
2500
- * <p>You can enable DKIM signing for an identity at any time after you start the
2501
- * verification process for the identity, even if the verification process isn't complete. </p>
2502
- * <p>You can execute this operation no more than once per second.</p>
2503
- * <p>For more information about Easy DKIM signing, go to the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Amazon SES Developer Guide</a>.</p>
2504
- */
2505
- public setIdentityDkimEnabled(
2506
- args: SetIdentityDkimEnabledCommandInput,
2507
- options?: __HttpHandlerOptions
2508
- ): Promise<SetIdentityDkimEnabledCommandOutput>;
2509
- public setIdentityDkimEnabled(
2510
- args: SetIdentityDkimEnabledCommandInput,
2511
- cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void
2512
- ): void;
2513
- public setIdentityDkimEnabled(
2514
- args: SetIdentityDkimEnabledCommandInput,
2515
- options: __HttpHandlerOptions,
2516
- cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void
2517
- ): void;
2518
- public setIdentityDkimEnabled(
2519
- args: SetIdentityDkimEnabledCommandInput,
2520
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetIdentityDkimEnabledCommandOutput) => void),
2521
- cb?: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void
2522
- ): Promise<SetIdentityDkimEnabledCommandOutput> | void {
2523
- const command = new SetIdentityDkimEnabledCommand(args);
2524
- if (typeof optionsOrCb === "function") {
2525
- this.send(command, optionsOrCb);
2526
- } else if (typeof cb === "function") {
2527
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2528
- this.send(command, optionsOrCb || {}, cb);
2529
- } else {
2530
- return this.send(command, optionsOrCb);
2531
- }
2532
- }
2533
-
2534
- /**
2535
- * <p>Given an identity (an email address or a domain), enables or disables whether Amazon SES
2536
- * forwards bounce and complaint notifications as email. Feedback forwarding can only be
2537
- * disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and
2538
- * complaints.</p>
2539
- * <note>
2540
- * <p>Feedback forwarding does not apply to delivery notifications. Delivery
2541
- * notifications are only available through Amazon SNS.</p>
2542
- * </note>
2543
- * <p>You can execute this operation no more than once per second.</p>
2544
- * <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
2545
- * Developer Guide</a>.</p>
2546
- */
2547
- public setIdentityFeedbackForwardingEnabled(
2548
- args: SetIdentityFeedbackForwardingEnabledCommandInput,
2549
- options?: __HttpHandlerOptions
2550
- ): Promise<SetIdentityFeedbackForwardingEnabledCommandOutput>;
2551
- public setIdentityFeedbackForwardingEnabled(
2552
- args: SetIdentityFeedbackForwardingEnabledCommandInput,
2553
- cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void
2554
- ): void;
2555
- public setIdentityFeedbackForwardingEnabled(
2556
- args: SetIdentityFeedbackForwardingEnabledCommandInput,
2557
- options: __HttpHandlerOptions,
2558
- cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void
2559
- ): void;
2560
- public setIdentityFeedbackForwardingEnabled(
2561
- args: SetIdentityFeedbackForwardingEnabledCommandInput,
2562
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void),
2563
- cb?: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void
2564
- ): Promise<SetIdentityFeedbackForwardingEnabledCommandOutput> | void {
2565
- const command = new SetIdentityFeedbackForwardingEnabledCommand(args);
2566
- if (typeof optionsOrCb === "function") {
2567
- this.send(command, optionsOrCb);
2568
- } else if (typeof cb === "function") {
2569
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2570
- this.send(command, optionsOrCb || {}, cb);
2571
- } else {
2572
- return this.send(command, optionsOrCb);
2573
- }
2574
- }
2575
-
2576
- /**
2577
- * <p>Given an identity (an email address or a domain), sets whether Amazon SES includes the
2578
- * original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified
2579
- * type.</p>
2580
- * <p>You can execute this operation no more than once per second.</p>
2581
- * <p>For more information about using notifications with Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES
2582
- * Developer Guide</a>.</p>
2583
- */
2584
- public setIdentityHeadersInNotificationsEnabled(
2585
- args: SetIdentityHeadersInNotificationsEnabledCommandInput,
2586
- options?: __HttpHandlerOptions
2587
- ): Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput>;
2588
- public setIdentityHeadersInNotificationsEnabled(
2589
- args: SetIdentityHeadersInNotificationsEnabledCommandInput,
2590
- cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void
2591
- ): void;
2592
- public setIdentityHeadersInNotificationsEnabled(
2593
- args: SetIdentityHeadersInNotificationsEnabledCommandInput,
2594
- options: __HttpHandlerOptions,
2595
- cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void
2596
- ): void;
2597
- public setIdentityHeadersInNotificationsEnabled(
2598
- args: SetIdentityHeadersInNotificationsEnabledCommandInput,
2599
- optionsOrCb?:
2600
- | __HttpHandlerOptions
2601
- | ((err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void),
2602
- cb?: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void
2603
- ): Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput> | void {
2604
- const command = new SetIdentityHeadersInNotificationsEnabledCommand(args);
2605
- if (typeof optionsOrCb === "function") {
2606
- this.send(command, optionsOrCb);
2607
- } else if (typeof cb === "function") {
2608
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2609
- this.send(command, optionsOrCb || {}, cb);
2610
- } else {
2611
- return this.send(command, optionsOrCb);
2612
- }
2613
- }
2614
-
2615
- /**
2616
- * <p>Enables or disables the custom MAIL FROM domain setup for a verified identity (an
2617
- * email address or a domain).</p>
2618
- * <important>
2619
- * <p>To send emails using the specified MAIL FROM domain, you must add an MX record to
2620
- * your MAIL FROM domain's DNS settings. If you want your emails to pass Sender Policy
2621
- * Framework (SPF) checks, you must also add or update an SPF record. For more
2622
- * information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html">Amazon SES Developer
2623
- * Guide</a>.</p>
2624
- * </important>
2625
- * <p>You can execute this operation no more than once per second.</p>
2626
- */
2627
- public setIdentityMailFromDomain(
2628
- args: SetIdentityMailFromDomainCommandInput,
2629
- options?: __HttpHandlerOptions
2630
- ): Promise<SetIdentityMailFromDomainCommandOutput>;
2631
- public setIdentityMailFromDomain(
2632
- args: SetIdentityMailFromDomainCommandInput,
2633
- cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void
2634
- ): void;
2635
- public setIdentityMailFromDomain(
2636
- args: SetIdentityMailFromDomainCommandInput,
2637
- options: __HttpHandlerOptions,
2638
- cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void
2639
- ): void;
2640
- public setIdentityMailFromDomain(
2641
- args: SetIdentityMailFromDomainCommandInput,
2642
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetIdentityMailFromDomainCommandOutput) => void),
2643
- cb?: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void
2644
- ): Promise<SetIdentityMailFromDomainCommandOutput> | void {
2645
- const command = new SetIdentityMailFromDomainCommand(args);
2646
- if (typeof optionsOrCb === "function") {
2647
- this.send(command, optionsOrCb);
2648
- } else if (typeof cb === "function") {
2649
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2650
- this.send(command, optionsOrCb || {}, cb);
2651
- } else {
2652
- return this.send(command, optionsOrCb);
2653
- }
2654
- }
2655
-
2656
- /**
2657
- * <p>Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use
2658
- * this operation, you specify a verified identity, such as an email address or domain.
2659
- * When you send an email that uses the chosen identity in the Source field, Amazon SES sends
2660
- * notifications to the topic you specified. You can send bounce, complaint, or delivery
2661
- * notifications (or any combination of the three) to the Amazon SNS topic that you
2662
- * specify.</p>
2663
- * <p>You can execute this operation no more than once per second.</p>
2664
- * <p>For more information about feedback notification, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES Developer
2665
- * Guide</a>.</p>
2666
- */
2667
- public setIdentityNotificationTopic(
2668
- args: SetIdentityNotificationTopicCommandInput,
2669
- options?: __HttpHandlerOptions
2670
- ): Promise<SetIdentityNotificationTopicCommandOutput>;
2671
- public setIdentityNotificationTopic(
2672
- args: SetIdentityNotificationTopicCommandInput,
2673
- cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void
2674
- ): void;
2675
- public setIdentityNotificationTopic(
2676
- args: SetIdentityNotificationTopicCommandInput,
2677
- options: __HttpHandlerOptions,
2678
- cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void
2679
- ): void;
2680
- public setIdentityNotificationTopic(
2681
- args: SetIdentityNotificationTopicCommandInput,
2682
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetIdentityNotificationTopicCommandOutput) => void),
2683
- cb?: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void
2684
- ): Promise<SetIdentityNotificationTopicCommandOutput> | void {
2685
- const command = new SetIdentityNotificationTopicCommand(args);
2686
- if (typeof optionsOrCb === "function") {
2687
- this.send(command, optionsOrCb);
2688
- } else if (typeof cb === "function") {
2689
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2690
- this.send(command, optionsOrCb || {}, cb);
2691
- } else {
2692
- return this.send(command, optionsOrCb);
2693
- }
2694
- }
2695
-
2696
- /**
2697
- * <p>Sets the position of the specified receipt rule in the receipt rule set.</p>
2698
- * <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
2699
- * Developer Guide</a>.</p>
2700
- * <p>You can execute this operation no more than once per second.</p>
2701
- */
2702
- public setReceiptRulePosition(
2703
- args: SetReceiptRulePositionCommandInput,
2704
- options?: __HttpHandlerOptions
2705
- ): Promise<SetReceiptRulePositionCommandOutput>;
2706
- public setReceiptRulePosition(
2707
- args: SetReceiptRulePositionCommandInput,
2708
- cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void
2709
- ): void;
2710
- public setReceiptRulePosition(
2711
- args: SetReceiptRulePositionCommandInput,
2712
- options: __HttpHandlerOptions,
2713
- cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void
2714
- ): void;
2715
- public setReceiptRulePosition(
2716
- args: SetReceiptRulePositionCommandInput,
2717
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: SetReceiptRulePositionCommandOutput) => void),
2718
- cb?: (err: any, data?: SetReceiptRulePositionCommandOutput) => void
2719
- ): Promise<SetReceiptRulePositionCommandOutput> | void {
2720
- const command = new SetReceiptRulePositionCommand(args);
2721
- if (typeof optionsOrCb === "function") {
2722
- this.send(command, optionsOrCb);
2723
- } else if (typeof cb === "function") {
2724
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2725
- this.send(command, optionsOrCb || {}, cb);
2726
- } else {
2727
- return this.send(command, optionsOrCb);
2728
- }
2729
- }
2730
-
2731
- /**
2732
- * <p>Creates a preview of the MIME content of an email when provided with a template and a
2733
- * set of replacement data.</p>
2734
- * <p>You can execute this operation no more than once per second.</p>
2735
- */
2736
- public testRenderTemplate(
2737
- args: TestRenderTemplateCommandInput,
2738
- options?: __HttpHandlerOptions
2739
- ): Promise<TestRenderTemplateCommandOutput>;
2740
- public testRenderTemplate(
2741
- args: TestRenderTemplateCommandInput,
2742
- cb: (err: any, data?: TestRenderTemplateCommandOutput) => void
2743
- ): void;
2744
- public testRenderTemplate(
2745
- args: TestRenderTemplateCommandInput,
2746
- options: __HttpHandlerOptions,
2747
- cb: (err: any, data?: TestRenderTemplateCommandOutput) => void
2748
- ): void;
2749
- public testRenderTemplate(
2750
- args: TestRenderTemplateCommandInput,
2751
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: TestRenderTemplateCommandOutput) => void),
2752
- cb?: (err: any, data?: TestRenderTemplateCommandOutput) => void
2753
- ): Promise<TestRenderTemplateCommandOutput> | void {
2754
- const command = new TestRenderTemplateCommand(args);
2755
- if (typeof optionsOrCb === "function") {
2756
- this.send(command, optionsOrCb);
2757
- } else if (typeof cb === "function") {
2758
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2759
- this.send(command, optionsOrCb || {}, cb);
2760
- } else {
2761
- return this.send(command, optionsOrCb);
2762
- }
2763
- }
2764
-
2765
- /**
2766
- * <p>Enables or disables email sending across your entire Amazon SES account in the current
2767
- * AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to
2768
- * temporarily pause email sending across your Amazon SES account in a given AWS Region when
2769
- * reputation metrics (such as your bounce or complaint rates) reach certain
2770
- * thresholds.</p>
2771
- * <p>You can execute this operation no more than once per second.</p>
2772
- */
2773
- public updateAccountSendingEnabled(
2774
- args: UpdateAccountSendingEnabledCommandInput,
2775
- options?: __HttpHandlerOptions
2776
- ): Promise<UpdateAccountSendingEnabledCommandOutput>;
2777
- public updateAccountSendingEnabled(
2778
- args: UpdateAccountSendingEnabledCommandInput,
2779
- cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void
2780
- ): void;
2781
- public updateAccountSendingEnabled(
2782
- args: UpdateAccountSendingEnabledCommandInput,
2783
- options: __HttpHandlerOptions,
2784
- cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void
2785
- ): void;
2786
- public updateAccountSendingEnabled(
2787
- args: UpdateAccountSendingEnabledCommandInput,
2788
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void),
2789
- cb?: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void
2790
- ): Promise<UpdateAccountSendingEnabledCommandOutput> | void {
2791
- const command = new UpdateAccountSendingEnabledCommand(args);
2792
- if (typeof optionsOrCb === "function") {
2793
- this.send(command, optionsOrCb);
2794
- } else if (typeof cb === "function") {
2795
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2796
- this.send(command, optionsOrCb || {}, cb);
2797
- } else {
2798
- return this.send(command, optionsOrCb);
2799
- }
2800
- }
2801
-
2802
- /**
2803
- * <p>Updates the event destination of a configuration set. Event destinations are
2804
- * associated with configuration sets, which enable you to publish email sending events to
2805
- * Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets,
2806
- * see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Monitoring Your Amazon SES
2807
- * Sending Activity</a> in the <i>Amazon SES Developer Guide.</i>
2808
- * </p>
2809
- * <note>
2810
- * <p>When you create or update an event destination, you must provide one, and only
2811
- * one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service
2812
- * (Amazon SNS).</p>
2813
- * </note>
2814
- * <p>You can execute this operation no more than once per second.</p>
2815
- */
2816
- public updateConfigurationSetEventDestination(
2817
- args: UpdateConfigurationSetEventDestinationCommandInput,
2818
- options?: __HttpHandlerOptions
2819
- ): Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
2820
- public updateConfigurationSetEventDestination(
2821
- args: UpdateConfigurationSetEventDestinationCommandInput,
2822
- cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void
2823
- ): void;
2824
- public updateConfigurationSetEventDestination(
2825
- args: UpdateConfigurationSetEventDestinationCommandInput,
2826
- options: __HttpHandlerOptions,
2827
- cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void
2828
- ): void;
2829
- public updateConfigurationSetEventDestination(
2830
- args: UpdateConfigurationSetEventDestinationCommandInput,
2831
- optionsOrCb?:
2832
- | __HttpHandlerOptions
2833
- | ((err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void),
2834
- cb?: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void
2835
- ): Promise<UpdateConfigurationSetEventDestinationCommandOutput> | void {
2836
- const command = new UpdateConfigurationSetEventDestinationCommand(args);
2837
- if (typeof optionsOrCb === "function") {
2838
- this.send(command, optionsOrCb);
2839
- } else if (typeof cb === "function") {
2840
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2841
- this.send(command, optionsOrCb || {}, cb);
2842
- } else {
2843
- return this.send(command, optionsOrCb);
2844
- }
2845
- }
2846
-
2847
- /**
2848
- * <p>Enables or disables the publishing of reputation metrics for emails sent using a
2849
- * specific configuration set in a given AWS Region. Reputation metrics include bounce
2850
- * and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can
2851
- * create alarms when bounce or complaint rates exceed certain thresholds.</p>
2852
- * <p>You can execute this operation no more than once per second.</p>
2853
- */
2854
- public updateConfigurationSetReputationMetricsEnabled(
2855
- args: UpdateConfigurationSetReputationMetricsEnabledCommandInput,
2856
- options?: __HttpHandlerOptions
2857
- ): Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput>;
2858
- public updateConfigurationSetReputationMetricsEnabled(
2859
- args: UpdateConfigurationSetReputationMetricsEnabledCommandInput,
2860
- cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void
2861
- ): void;
2862
- public updateConfigurationSetReputationMetricsEnabled(
2863
- args: UpdateConfigurationSetReputationMetricsEnabledCommandInput,
2864
- options: __HttpHandlerOptions,
2865
- cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void
2866
- ): void;
2867
- public updateConfigurationSetReputationMetricsEnabled(
2868
- args: UpdateConfigurationSetReputationMetricsEnabledCommandInput,
2869
- optionsOrCb?:
2870
- | __HttpHandlerOptions
2871
- | ((err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void),
2872
- cb?: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void
2873
- ): Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput> | void {
2874
- const command = new UpdateConfigurationSetReputationMetricsEnabledCommand(args);
2875
- if (typeof optionsOrCb === "function") {
2876
- this.send(command, optionsOrCb);
2877
- } else if (typeof cb === "function") {
2878
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2879
- this.send(command, optionsOrCb || {}, cb);
2880
- } else {
2881
- return this.send(command, optionsOrCb);
2882
- }
2883
- }
2884
-
2885
- /**
2886
- * <p>Enables or disables email sending for messages sent using a specific configuration set
2887
- * in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms
2888
- * to temporarily pause email sending for a configuration set when the reputation metrics
2889
- * for that configuration set (such as your bounce on complaint rate) exceed certain
2890
- * thresholds.</p>
2891
- * <p>You can execute this operation no more than once per second.</p>
2892
- */
2893
- public updateConfigurationSetSendingEnabled(
2894
- args: UpdateConfigurationSetSendingEnabledCommandInput,
2895
- options?: __HttpHandlerOptions
2896
- ): Promise<UpdateConfigurationSetSendingEnabledCommandOutput>;
2897
- public updateConfigurationSetSendingEnabled(
2898
- args: UpdateConfigurationSetSendingEnabledCommandInput,
2899
- cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void
2900
- ): void;
2901
- public updateConfigurationSetSendingEnabled(
2902
- args: UpdateConfigurationSetSendingEnabledCommandInput,
2903
- options: __HttpHandlerOptions,
2904
- cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void
2905
- ): void;
2906
- public updateConfigurationSetSendingEnabled(
2907
- args: UpdateConfigurationSetSendingEnabledCommandInput,
2908
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void),
2909
- cb?: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void
2910
- ): Promise<UpdateConfigurationSetSendingEnabledCommandOutput> | void {
2911
- const command = new UpdateConfigurationSetSendingEnabledCommand(args);
2912
- if (typeof optionsOrCb === "function") {
2913
- this.send(command, optionsOrCb);
2914
- } else if (typeof cb === "function") {
2915
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2916
- this.send(command, optionsOrCb || {}, cb);
2917
- } else {
2918
- return this.send(command, optionsOrCb);
2919
- }
2920
- }
2921
-
2922
- /**
2923
- * <p>Modifies an association between a configuration set and a custom domain for open and
2924
- * click event tracking. </p>
2925
- * <p>By default, images and links used for tracking open and click events are hosted on
2926
- * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
2927
- * events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
2928
- */
2929
- public updateConfigurationSetTrackingOptions(
2930
- args: UpdateConfigurationSetTrackingOptionsCommandInput,
2931
- options?: __HttpHandlerOptions
2932
- ): Promise<UpdateConfigurationSetTrackingOptionsCommandOutput>;
2933
- public updateConfigurationSetTrackingOptions(
2934
- args: UpdateConfigurationSetTrackingOptionsCommandInput,
2935
- cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void
2936
- ): void;
2937
- public updateConfigurationSetTrackingOptions(
2938
- args: UpdateConfigurationSetTrackingOptionsCommandInput,
2939
- options: __HttpHandlerOptions,
2940
- cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void
2941
- ): void;
2942
- public updateConfigurationSetTrackingOptions(
2943
- args: UpdateConfigurationSetTrackingOptionsCommandInput,
2944
- optionsOrCb?:
2945
- | __HttpHandlerOptions
2946
- | ((err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void),
2947
- cb?: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void
2948
- ): Promise<UpdateConfigurationSetTrackingOptionsCommandOutput> | void {
2949
- const command = new UpdateConfigurationSetTrackingOptionsCommand(args);
2950
- if (typeof optionsOrCb === "function") {
2951
- this.send(command, optionsOrCb);
2952
- } else if (typeof cb === "function") {
2953
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2954
- this.send(command, optionsOrCb || {}, cb);
2955
- } else {
2956
- return this.send(command, optionsOrCb);
2957
- }
2958
- }
2959
-
2960
- /**
2961
- * <p>Updates an existing custom verification email template.</p>
2962
- * <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
2963
- * Guide</i>.</p>
2964
- * <p>You can execute this operation no more than once per second.</p>
2965
- */
2966
- public updateCustomVerificationEmailTemplate(
2967
- args: UpdateCustomVerificationEmailTemplateCommandInput,
2968
- options?: __HttpHandlerOptions
2969
- ): Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
2970
- public updateCustomVerificationEmailTemplate(
2971
- args: UpdateCustomVerificationEmailTemplateCommandInput,
2972
- cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void
2973
- ): void;
2974
- public updateCustomVerificationEmailTemplate(
2975
- args: UpdateCustomVerificationEmailTemplateCommandInput,
2976
- options: __HttpHandlerOptions,
2977
- cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void
2978
- ): void;
2979
- public updateCustomVerificationEmailTemplate(
2980
- args: UpdateCustomVerificationEmailTemplateCommandInput,
2981
- optionsOrCb?:
2982
- | __HttpHandlerOptions
2983
- | ((err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void),
2984
- cb?: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void
2985
- ): Promise<UpdateCustomVerificationEmailTemplateCommandOutput> | void {
2986
- const command = new UpdateCustomVerificationEmailTemplateCommand(args);
2987
- if (typeof optionsOrCb === "function") {
2988
- this.send(command, optionsOrCb);
2989
- } else if (typeof cb === "function") {
2990
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2991
- this.send(command, optionsOrCb || {}, cb);
2992
- } else {
2993
- return this.send(command, optionsOrCb);
2994
- }
2995
- }
2996
-
2997
- /**
2998
- * <p>Updates a receipt rule.</p>
2999
- * <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
3000
- * Developer Guide</a>.</p>
3001
- * <p>You can execute this operation no more than once per second.</p>
3002
- */
3003
- public updateReceiptRule(
3004
- args: UpdateReceiptRuleCommandInput,
3005
- options?: __HttpHandlerOptions
3006
- ): Promise<UpdateReceiptRuleCommandOutput>;
3007
- public updateReceiptRule(
3008
- args: UpdateReceiptRuleCommandInput,
3009
- cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void
3010
- ): void;
3011
- public updateReceiptRule(
3012
- args: UpdateReceiptRuleCommandInput,
3013
- options: __HttpHandlerOptions,
3014
- cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void
3015
- ): void;
3016
- public updateReceiptRule(
3017
- args: UpdateReceiptRuleCommandInput,
3018
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateReceiptRuleCommandOutput) => void),
3019
- cb?: (err: any, data?: UpdateReceiptRuleCommandOutput) => void
3020
- ): Promise<UpdateReceiptRuleCommandOutput> | void {
3021
- const command = new UpdateReceiptRuleCommand(args);
3022
- if (typeof optionsOrCb === "function") {
3023
- this.send(command, optionsOrCb);
3024
- } else if (typeof cb === "function") {
3025
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3026
- this.send(command, optionsOrCb || {}, cb);
3027
- } else {
3028
- return this.send(command, optionsOrCb);
3029
- }
3030
- }
3031
-
3032
- /**
3033
- * <p>Updates an email template. Email templates enable you to send personalized email to
3034
- * one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
3035
- * Guide</a>.</p>
3036
- * <p>You can execute this operation no more than once per second.</p>
3037
- */
3038
- public updateTemplate(
3039
- args: UpdateTemplateCommandInput,
3040
- options?: __HttpHandlerOptions
3041
- ): Promise<UpdateTemplateCommandOutput>;
3042
- public updateTemplate(
3043
- args: UpdateTemplateCommandInput,
3044
- cb: (err: any, data?: UpdateTemplateCommandOutput) => void
3045
- ): void;
3046
- public updateTemplate(
3047
- args: UpdateTemplateCommandInput,
3048
- options: __HttpHandlerOptions,
3049
- cb: (err: any, data?: UpdateTemplateCommandOutput) => void
3050
- ): void;
3051
- public updateTemplate(
3052
- args: UpdateTemplateCommandInput,
3053
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateTemplateCommandOutput) => void),
3054
- cb?: (err: any, data?: UpdateTemplateCommandOutput) => void
3055
- ): Promise<UpdateTemplateCommandOutput> | void {
3056
- const command = new UpdateTemplateCommand(args);
3057
- if (typeof optionsOrCb === "function") {
3058
- this.send(command, optionsOrCb);
3059
- } else if (typeof cb === "function") {
3060
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3061
- this.send(command, optionsOrCb || {}, cb);
3062
- } else {
3063
- return this.send(command, optionsOrCb);
3064
- }
3065
- }
3066
-
3067
- /**
3068
- * <p>Returns a set of DKIM tokens for a domain identity.</p>
3069
- * <important>
3070
- * <p>When you execute the <code>VerifyDomainDkim</code> operation, the domain that you
3071
- * specify is added to the list of identities that are associated with your account.
3072
- * This is true even if you haven't already associated the domain with your account by
3073
- * using the <code>VerifyDomainIdentity</code> operation. However, you can't send email
3074
- * from the domain until you either successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html">verify it</a> or you
3075
- * successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">set up DKIM for
3076
- * it</a>.</p>
3077
- * </important>
3078
- * <p>You use the tokens that are generated by this operation to create CNAME records. When
3079
- * Amazon SES detects that you've added these records to the DNS configuration for a domain, you
3080
- * can start sending email from that domain. You can start sending email even if you
3081
- * haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS
3082
- * configuration for your domain. All email that you send from the domain is authenticated
3083
- * using DKIM.</p>
3084
- * <p>To create the CNAME records for DKIM authentication, use the following values:</p>
3085
- * <ul>
3086
- * <li>
3087
- * <p>
3088
- * <b>Name</b>:
3089
- * <i>token</i>._domainkey.<i>example.com</i>
3090
- * </p>
3091
- * </li>
3092
- * <li>
3093
- * <p>
3094
- * <b>Type</b>: CNAME</p>
3095
- * </li>
3096
- * <li>
3097
- * <p>
3098
- * <b>Value</b>:
3099
- * <i>token</i>.dkim.amazonses.com</p>
3100
- * </li>
3101
- * </ul>
3102
- * <p>In the preceding example, replace <i>token</i> with one of the tokens
3103
- * that are generated when you execute this operation. Replace
3104
- * <i>example.com</i> with your domain. Repeat this process for each
3105
- * token that's generated by this operation.</p>
3106
- * <p>You can execute this operation no more than once per second.</p>
3107
- */
3108
- public verifyDomainDkim(
3109
- args: VerifyDomainDkimCommandInput,
3110
- options?: __HttpHandlerOptions
3111
- ): Promise<VerifyDomainDkimCommandOutput>;
3112
- public verifyDomainDkim(
3113
- args: VerifyDomainDkimCommandInput,
3114
- cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void
3115
- ): void;
3116
- public verifyDomainDkim(
3117
- args: VerifyDomainDkimCommandInput,
3118
- options: __HttpHandlerOptions,
3119
- cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void
3120
- ): void;
3121
- public verifyDomainDkim(
3122
- args: VerifyDomainDkimCommandInput,
3123
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: VerifyDomainDkimCommandOutput) => void),
3124
- cb?: (err: any, data?: VerifyDomainDkimCommandOutput) => void
3125
- ): Promise<VerifyDomainDkimCommandOutput> | void {
3126
- const command = new VerifyDomainDkimCommand(args);
3127
- if (typeof optionsOrCb === "function") {
3128
- this.send(command, optionsOrCb);
3129
- } else if (typeof cb === "function") {
3130
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3131
- this.send(command, optionsOrCb || {}, cb);
3132
- } else {
3133
- return this.send(command, optionsOrCb);
3134
- }
3135
- }
3136
-
3137
- /**
3138
- * <p>Adds a domain to the list of identities for your Amazon SES account in the current AWS
3139
- * Region and attempts to verify it. For more information about verifying domains, see
3140
- * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying Email
3141
- * Addresses and Domains</a> in the <i>Amazon SES Developer
3142
- * Guide.</i>
3143
- * </p>
3144
- * <p>You can execute this operation no more than once per second.</p>
3145
- */
3146
- public verifyDomainIdentity(
3147
- args: VerifyDomainIdentityCommandInput,
3148
- options?: __HttpHandlerOptions
3149
- ): Promise<VerifyDomainIdentityCommandOutput>;
3150
- public verifyDomainIdentity(
3151
- args: VerifyDomainIdentityCommandInput,
3152
- cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void
3153
- ): void;
3154
- public verifyDomainIdentity(
3155
- args: VerifyDomainIdentityCommandInput,
3156
- options: __HttpHandlerOptions,
3157
- cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void
3158
- ): void;
3159
- public verifyDomainIdentity(
3160
- args: VerifyDomainIdentityCommandInput,
3161
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: VerifyDomainIdentityCommandOutput) => void),
3162
- cb?: (err: any, data?: VerifyDomainIdentityCommandOutput) => void
3163
- ): Promise<VerifyDomainIdentityCommandOutput> | void {
3164
- const command = new VerifyDomainIdentityCommand(args);
3165
- if (typeof optionsOrCb === "function") {
3166
- this.send(command, optionsOrCb);
3167
- } else if (typeof cb === "function") {
3168
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3169
- this.send(command, optionsOrCb || {}, cb);
3170
- } else {
3171
- return this.send(command, optionsOrCb);
3172
- }
3173
- }
3174
-
3175
- /**
3176
- * <p>Deprecated. Use the <code>VerifyEmailIdentity</code> operation to verify a new email
3177
- * address.</p>
3178
- */
3179
- public verifyEmailAddress(
3180
- args: VerifyEmailAddressCommandInput,
3181
- options?: __HttpHandlerOptions
3182
- ): Promise<VerifyEmailAddressCommandOutput>;
3183
- public verifyEmailAddress(
3184
- args: VerifyEmailAddressCommandInput,
3185
- cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void
3186
- ): void;
3187
- public verifyEmailAddress(
3188
- args: VerifyEmailAddressCommandInput,
3189
- options: __HttpHandlerOptions,
3190
- cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void
3191
- ): void;
3192
- public verifyEmailAddress(
3193
- args: VerifyEmailAddressCommandInput,
3194
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: VerifyEmailAddressCommandOutput) => void),
3195
- cb?: (err: any, data?: VerifyEmailAddressCommandOutput) => void
3196
- ): Promise<VerifyEmailAddressCommandOutput> | void {
3197
- const command = new VerifyEmailAddressCommand(args);
3198
- if (typeof optionsOrCb === "function") {
3199
- this.send(command, optionsOrCb);
3200
- } else if (typeof cb === "function") {
3201
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3202
- this.send(command, optionsOrCb || {}, cb);
3203
- } else {
3204
- return this.send(command, optionsOrCb);
3205
- }
3206
- }
3207
-
3208
- /**
3209
- * <p>Adds an email address to the list of identities for your Amazon SES account in the current
3210
- * AWS region and attempts to verify it. As a result of executing this operation, a
3211
- * verification email is sent to the specified address.</p>
3212
- * <p>You can execute this operation no more than once per second.</p>
3213
- */
3214
- public verifyEmailIdentity(
3215
- args: VerifyEmailIdentityCommandInput,
3216
- options?: __HttpHandlerOptions
3217
- ): Promise<VerifyEmailIdentityCommandOutput>;
3218
- public verifyEmailIdentity(
3219
- args: VerifyEmailIdentityCommandInput,
3220
- cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void
3221
- ): void;
3222
- public verifyEmailIdentity(
3223
- args: VerifyEmailIdentityCommandInput,
3224
- options: __HttpHandlerOptions,
3225
- cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void
3226
- ): void;
3227
- public verifyEmailIdentity(
3228
- args: VerifyEmailIdentityCommandInput,
3229
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: VerifyEmailIdentityCommandOutput) => void),
3230
- cb?: (err: any, data?: VerifyEmailIdentityCommandOutput) => void
3231
- ): Promise<VerifyEmailIdentityCommandOutput> | void {
3232
- const command = new VerifyEmailIdentityCommand(args);
3233
- if (typeof optionsOrCb === "function") {
3234
- this.send(command, optionsOrCb);
3235
- } else if (typeof cb === "function") {
3236
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3237
- this.send(command, optionsOrCb || {}, cb);
3238
- } else {
3239
- return this.send(command, optionsOrCb);
3240
- }
3241
- }
3242
- }