@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
@@ -0,0 +1,1126 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CloneReceiptRuleSetCommandInput, CloneReceiptRuleSetCommandOutput } from "./commands/CloneReceiptRuleSetCommand";
3
+ import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
4
+ import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "./commands/CreateConfigurationSetEventDestinationCommand";
5
+ import { CreateConfigurationSetTrackingOptionsCommandInput, CreateConfigurationSetTrackingOptionsCommandOutput } from "./commands/CreateConfigurationSetTrackingOptionsCommand";
6
+ import { CreateCustomVerificationEmailTemplateCommandInput, CreateCustomVerificationEmailTemplateCommandOutput } from "./commands/CreateCustomVerificationEmailTemplateCommand";
7
+ import { CreateReceiptFilterCommandInput, CreateReceiptFilterCommandOutput } from "./commands/CreateReceiptFilterCommand";
8
+ import { CreateReceiptRuleCommandInput, CreateReceiptRuleCommandOutput } from "./commands/CreateReceiptRuleCommand";
9
+ import { CreateReceiptRuleSetCommandInput, CreateReceiptRuleSetCommandOutput } from "./commands/CreateReceiptRuleSetCommand";
10
+ import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "./commands/CreateTemplateCommand";
11
+ import { DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput } from "./commands/DeleteConfigurationSetCommand";
12
+ import { DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput } from "./commands/DeleteConfigurationSetEventDestinationCommand";
13
+ import { DeleteConfigurationSetTrackingOptionsCommandInput, DeleteConfigurationSetTrackingOptionsCommandOutput } from "./commands/DeleteConfigurationSetTrackingOptionsCommand";
14
+ import { DeleteCustomVerificationEmailTemplateCommandInput, DeleteCustomVerificationEmailTemplateCommandOutput } from "./commands/DeleteCustomVerificationEmailTemplateCommand";
15
+ import { DeleteIdentityCommandInput, DeleteIdentityCommandOutput } from "./commands/DeleteIdentityCommand";
16
+ import { DeleteIdentityPolicyCommandInput, DeleteIdentityPolicyCommandOutput } from "./commands/DeleteIdentityPolicyCommand";
17
+ import { DeleteReceiptFilterCommandInput, DeleteReceiptFilterCommandOutput } from "./commands/DeleteReceiptFilterCommand";
18
+ import { DeleteReceiptRuleCommandInput, DeleteReceiptRuleCommandOutput } from "./commands/DeleteReceiptRuleCommand";
19
+ import { DeleteReceiptRuleSetCommandInput, DeleteReceiptRuleSetCommandOutput } from "./commands/DeleteReceiptRuleSetCommand";
20
+ import { DeleteTemplateCommandInput, DeleteTemplateCommandOutput } from "./commands/DeleteTemplateCommand";
21
+ import { DeleteVerifiedEmailAddressCommandInput, DeleteVerifiedEmailAddressCommandOutput } from "./commands/DeleteVerifiedEmailAddressCommand";
22
+ import { DescribeActiveReceiptRuleSetCommandInput, DescribeActiveReceiptRuleSetCommandOutput } from "./commands/DescribeActiveReceiptRuleSetCommand";
23
+ import { DescribeConfigurationSetCommandInput, DescribeConfigurationSetCommandOutput } from "./commands/DescribeConfigurationSetCommand";
24
+ import { DescribeReceiptRuleCommandInput, DescribeReceiptRuleCommandOutput } from "./commands/DescribeReceiptRuleCommand";
25
+ import { DescribeReceiptRuleSetCommandInput, DescribeReceiptRuleSetCommandOutput } from "./commands/DescribeReceiptRuleSetCommand";
26
+ import { GetAccountSendingEnabledCommandInput, GetAccountSendingEnabledCommandOutput } from "./commands/GetAccountSendingEnabledCommand";
27
+ import { GetCustomVerificationEmailTemplateCommandInput, GetCustomVerificationEmailTemplateCommandOutput } from "./commands/GetCustomVerificationEmailTemplateCommand";
28
+ import { GetIdentityDkimAttributesCommandInput, GetIdentityDkimAttributesCommandOutput } from "./commands/GetIdentityDkimAttributesCommand";
29
+ import { GetIdentityMailFromDomainAttributesCommandInput, GetIdentityMailFromDomainAttributesCommandOutput } from "./commands/GetIdentityMailFromDomainAttributesCommand";
30
+ import { GetIdentityNotificationAttributesCommandInput, GetIdentityNotificationAttributesCommandOutput } from "./commands/GetIdentityNotificationAttributesCommand";
31
+ import { GetIdentityPoliciesCommandInput, GetIdentityPoliciesCommandOutput } from "./commands/GetIdentityPoliciesCommand";
32
+ import { GetIdentityVerificationAttributesCommandInput, GetIdentityVerificationAttributesCommandOutput } from "./commands/GetIdentityVerificationAttributesCommand";
33
+ import { GetSendQuotaCommandInput, GetSendQuotaCommandOutput } from "./commands/GetSendQuotaCommand";
34
+ import { GetSendStatisticsCommandInput, GetSendStatisticsCommandOutput } from "./commands/GetSendStatisticsCommand";
35
+ import { GetTemplateCommandInput, GetTemplateCommandOutput } from "./commands/GetTemplateCommand";
36
+ import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "./commands/ListConfigurationSetsCommand";
37
+ import { ListCustomVerificationEmailTemplatesCommandInput, ListCustomVerificationEmailTemplatesCommandOutput } from "./commands/ListCustomVerificationEmailTemplatesCommand";
38
+ import { ListIdentitiesCommandInput, ListIdentitiesCommandOutput } from "./commands/ListIdentitiesCommand";
39
+ import { ListIdentityPoliciesCommandInput, ListIdentityPoliciesCommandOutput } from "./commands/ListIdentityPoliciesCommand";
40
+ import { ListReceiptFiltersCommandInput, ListReceiptFiltersCommandOutput } from "./commands/ListReceiptFiltersCommand";
41
+ import { ListReceiptRuleSetsCommandInput, ListReceiptRuleSetsCommandOutput } from "./commands/ListReceiptRuleSetsCommand";
42
+ import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "./commands/ListTemplatesCommand";
43
+ import { ListVerifiedEmailAddressesCommandInput, ListVerifiedEmailAddressesCommandOutput } from "./commands/ListVerifiedEmailAddressesCommand";
44
+ import { PutConfigurationSetDeliveryOptionsCommandInput, PutConfigurationSetDeliveryOptionsCommandOutput } from "./commands/PutConfigurationSetDeliveryOptionsCommand";
45
+ import { PutIdentityPolicyCommandInput, PutIdentityPolicyCommandOutput } from "./commands/PutIdentityPolicyCommand";
46
+ import { ReorderReceiptRuleSetCommandInput, ReorderReceiptRuleSetCommandOutput } from "./commands/ReorderReceiptRuleSetCommand";
47
+ import { SendBounceCommandInput, SendBounceCommandOutput } from "./commands/SendBounceCommand";
48
+ import { SendBulkTemplatedEmailCommandInput, SendBulkTemplatedEmailCommandOutput } from "./commands/SendBulkTemplatedEmailCommand";
49
+ import { SendCustomVerificationEmailCommandInput, SendCustomVerificationEmailCommandOutput } from "./commands/SendCustomVerificationEmailCommand";
50
+ import { SendEmailCommandInput, SendEmailCommandOutput } from "./commands/SendEmailCommand";
51
+ import { SendRawEmailCommandInput, SendRawEmailCommandOutput } from "./commands/SendRawEmailCommand";
52
+ import { SendTemplatedEmailCommandInput, SendTemplatedEmailCommandOutput } from "./commands/SendTemplatedEmailCommand";
53
+ import { SetActiveReceiptRuleSetCommandInput, SetActiveReceiptRuleSetCommandOutput } from "./commands/SetActiveReceiptRuleSetCommand";
54
+ import { SetIdentityDkimEnabledCommandInput, SetIdentityDkimEnabledCommandOutput } from "./commands/SetIdentityDkimEnabledCommand";
55
+ import { SetIdentityFeedbackForwardingEnabledCommandInput, SetIdentityFeedbackForwardingEnabledCommandOutput } from "./commands/SetIdentityFeedbackForwardingEnabledCommand";
56
+ import { SetIdentityHeadersInNotificationsEnabledCommandInput, SetIdentityHeadersInNotificationsEnabledCommandOutput } from "./commands/SetIdentityHeadersInNotificationsEnabledCommand";
57
+ import { SetIdentityMailFromDomainCommandInput, SetIdentityMailFromDomainCommandOutput } from "./commands/SetIdentityMailFromDomainCommand";
58
+ import { SetIdentityNotificationTopicCommandInput, SetIdentityNotificationTopicCommandOutput } from "./commands/SetIdentityNotificationTopicCommand";
59
+ import { SetReceiptRulePositionCommandInput, SetReceiptRulePositionCommandOutput } from "./commands/SetReceiptRulePositionCommand";
60
+ import { TestRenderTemplateCommandInput, TestRenderTemplateCommandOutput } from "./commands/TestRenderTemplateCommand";
61
+ import { UpdateAccountSendingEnabledCommandInput, UpdateAccountSendingEnabledCommandOutput } from "./commands/UpdateAccountSendingEnabledCommand";
62
+ import { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput } from "./commands/UpdateConfigurationSetEventDestinationCommand";
63
+ import { UpdateConfigurationSetReputationMetricsEnabledCommandInput, UpdateConfigurationSetReputationMetricsEnabledCommandOutput } from "./commands/UpdateConfigurationSetReputationMetricsEnabledCommand";
64
+ import { UpdateConfigurationSetSendingEnabledCommandInput, UpdateConfigurationSetSendingEnabledCommandOutput } from "./commands/UpdateConfigurationSetSendingEnabledCommand";
65
+ import { UpdateConfigurationSetTrackingOptionsCommandInput, UpdateConfigurationSetTrackingOptionsCommandOutput } from "./commands/UpdateConfigurationSetTrackingOptionsCommand";
66
+ import { UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerificationEmailTemplateCommandOutput } from "./commands/UpdateCustomVerificationEmailTemplateCommand";
67
+ import { UpdateReceiptRuleCommandInput, UpdateReceiptRuleCommandOutput } from "./commands/UpdateReceiptRuleCommand";
68
+ import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
69
+ import { VerifyDomainDkimCommandInput, VerifyDomainDkimCommandOutput } from "./commands/VerifyDomainDkimCommand";
70
+ import { VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput } from "./commands/VerifyDomainIdentityCommand";
71
+ import { VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput } from "./commands/VerifyEmailAddressCommand";
72
+ import { VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput } from "./commands/VerifyEmailIdentityCommand";
73
+ import { SESClient } from "./SESClient";
74
+ /**
75
+ * <fullname>Amazon Simple Email Service</fullname>
76
+ * <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version
77
+ * 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
78
+ * Guide</a>. </p>
79
+ * <note>
80
+ * <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
81
+ * Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
82
+ * Guide</a>.</p>
83
+ * </note>
84
+ */
85
+ export declare class SES extends SESClient {
86
+ /**
87
+ * <p>Creates a receipt rule set by cloning an existing one. All receipt rules and
88
+ * configurations are copied to the new receipt rule set and are completely independent of
89
+ * the source rule set.</p>
90
+ * <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
91
+ * Developer Guide</a>.</p>
92
+ * <p>You can execute this operation no more than once per second.</p>
93
+ */
94
+ cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<CloneReceiptRuleSetCommandOutput>;
95
+ cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void): void;
96
+ cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CloneReceiptRuleSetCommandOutput) => void): void;
97
+ /**
98
+ * <p>Creates a configuration set.</p>
99
+ * <p>Configuration sets enable you to publish email sending events. For information about
100
+ * using configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
101
+ * Guide</a>.</p>
102
+ * <p>You can execute this operation no more than once per second.</p>
103
+ */
104
+ createConfigurationSet(args: CreateConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetCommandOutput>;
105
+ createConfigurationSet(args: CreateConfigurationSetCommandInput, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
106
+ createConfigurationSet(args: CreateConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetCommandOutput) => void): void;
107
+ /**
108
+ * <p>Creates a configuration set event destination.</p>
109
+ * <note>
110
+ * <p>When you create or update an event destination, you must provide one, and only
111
+ * one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).</p>
112
+ * </note>
113
+ * <p>An event destination is the AWS service to which Amazon SES publishes the email sending
114
+ * events associated with a configuration set. For information about using configuration
115
+ * sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
116
+ * Guide</a>.</p>
117
+ * <p>You can execute this operation no more than once per second.</p>
118
+ */
119
+ createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetEventDestinationCommandOutput>;
120
+ createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
121
+ createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetEventDestinationCommandOutput) => void): void;
122
+ /**
123
+ * <p>Creates an association between a configuration set and a custom domain for open and
124
+ * click event tracking. </p>
125
+ * <p>By default, images and links used for tracking open and click events are hosted on
126
+ * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
127
+ * 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>
128
+ */
129
+ createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationSetTrackingOptionsCommandOutput>;
130
+ createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void): void;
131
+ createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationSetTrackingOptionsCommandOutput) => void): void;
132
+ /**
133
+ * <p>Creates a new custom verification email template.</p>
134
+ * <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
135
+ * Guide</i>.</p>
136
+ * <p>You can execute this operation no more than once per second.</p>
137
+ */
138
+ createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
139
+ createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
140
+ createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomVerificationEmailTemplateCommandOutput) => void): void;
141
+ /**
142
+ * <p>Creates a new IP address filter.</p>
143
+ * <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>
144
+ * <p>You can execute this operation no more than once per second.</p>
145
+ */
146
+ createReceiptFilter(args: CreateReceiptFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptFilterCommandOutput>;
147
+ createReceiptFilter(args: CreateReceiptFilterCommandInput, cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void): void;
148
+ createReceiptFilter(args: CreateReceiptFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptFilterCommandOutput) => void): void;
149
+ /**
150
+ * <p>Creates a receipt rule.</p>
151
+ * <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
152
+ * Guide</a>.</p>
153
+ * <p>You can execute this operation no more than once per second.</p>
154
+ */
155
+ createReceiptRule(args: CreateReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptRuleCommandOutput>;
156
+ createReceiptRule(args: CreateReceiptRuleCommandInput, cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void): void;
157
+ createReceiptRule(args: CreateReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptRuleCommandOutput) => void): void;
158
+ /**
159
+ * <p>Creates an empty receipt rule set.</p>
160
+ * <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
161
+ * Developer Guide</a>.</p>
162
+ * <p>You can execute this operation no more than once per second.</p>
163
+ */
164
+ createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateReceiptRuleSetCommandOutput>;
165
+ createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void): void;
166
+ createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReceiptRuleSetCommandOutput) => void): void;
167
+ /**
168
+ * <p>Creates an email template. Email templates enable you to send personalized email to
169
+ * 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
170
+ * Guide</a>.</p>
171
+ * <p>You can execute this operation no more than once per second.</p>
172
+ */
173
+ createTemplate(args: CreateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateTemplateCommandOutput>;
174
+ createTemplate(args: CreateTemplateCommandInput, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
175
+ createTemplate(args: CreateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
176
+ /**
177
+ * <p>Deletes a configuration set. Configuration sets enable you to publish email sending
178
+ * 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>
179
+ * <p>You can execute this operation no more than once per second.</p>
180
+ */
181
+ deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetCommandOutput>;
182
+ deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
183
+ deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetCommandOutput) => void): void;
184
+ /**
185
+ * <p>Deletes a configuration set event destination. Configuration set event destinations
186
+ * are associated with configuration sets, which enable you to publish email sending
187
+ * 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>
188
+ * <p>You can execute this operation no more than once per second.</p>
189
+ */
190
+ deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
191
+ deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
192
+ deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetEventDestinationCommandOutput) => void): void;
193
+ /**
194
+ * <p>Deletes an association between a configuration set and a custom domain for open and
195
+ * click event tracking.</p>
196
+ * <p>By default, images and links used for tracking open and click events are hosted on
197
+ * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
198
+ * 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>
199
+ * <note>
200
+ * <p>Deleting this kind of association will result in emails sent using the specified
201
+ * configuration set to capture open and click events using the standard,
202
+ * Amazon SES-operated domains.</p>
203
+ * </note>
204
+ */
205
+ deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationSetTrackingOptionsCommandOutput>;
206
+ deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void): void;
207
+ deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationSetTrackingOptionsCommandOutput) => void): void;
208
+ /**
209
+ * <p>Deletes an existing custom verification email template. </p>
210
+ * <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
211
+ * Guide</i>.</p>
212
+ * <p>You can execute this operation no more than once per second.</p>
213
+ */
214
+ deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
215
+ deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
216
+ deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomVerificationEmailTemplateCommandOutput) => void): void;
217
+ /**
218
+ * <p>Deletes the specified identity (an email address or a domain) from the list of
219
+ * verified identities.</p>
220
+ * <p>You can execute this operation no more than once per second.</p>
221
+ */
222
+ deleteIdentity(args: DeleteIdentityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityCommandOutput>;
223
+ deleteIdentity(args: DeleteIdentityCommandInput, cb: (err: any, data?: DeleteIdentityCommandOutput) => void): void;
224
+ deleteIdentity(args: DeleteIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityCommandOutput) => void): void;
225
+ /**
226
+ * <p>Deletes the specified sending authorization policy for the given identity (an email
227
+ * address or a domain). This API returns successfully even if a policy with the specified
228
+ * name does not exist.</p>
229
+ * <note>
230
+ * <p>This API is for the identity owner only. If you have not verified the identity,
231
+ * this API will return an error.</p>
232
+ * </note>
233
+ * <p>Sending authorization is a feature that enables an identity owner to authorize other
234
+ * senders to use its identities. For information about using sending authorization, see
235
+ * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
236
+ * Guide</a>.</p>
237
+ * <p>You can execute this operation no more than once per second.</p>
238
+ */
239
+ deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityPolicyCommandOutput>;
240
+ deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void): void;
241
+ deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityPolicyCommandOutput) => void): void;
242
+ /**
243
+ * <p>Deletes the specified IP address filter.</p>
244
+ * <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
245
+ * Developer Guide</a>.</p>
246
+ * <p>You can execute this operation no more than once per second.</p>
247
+ */
248
+ deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptFilterCommandOutput>;
249
+ deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void): void;
250
+ deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptFilterCommandOutput) => void): void;
251
+ /**
252
+ * <p>Deletes the specified receipt rule.</p>
253
+ * <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
254
+ * Developer Guide</a>.</p>
255
+ * <p>You can execute this operation no more than once per second.</p>
256
+ */
257
+ deleteReceiptRule(args: DeleteReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptRuleCommandOutput>;
258
+ deleteReceiptRule(args: DeleteReceiptRuleCommandInput, cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void): void;
259
+ deleteReceiptRule(args: DeleteReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptRuleCommandOutput) => void): void;
260
+ /**
261
+ * <p>Deletes the specified receipt rule set and all of the receipt rules it
262
+ * contains.</p>
263
+ * <note>
264
+ * <p>The currently active rule set cannot be deleted.</p>
265
+ * </note>
266
+ * <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>
267
+ * <p>You can execute this operation no more than once per second.</p>
268
+ */
269
+ deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReceiptRuleSetCommandOutput>;
270
+ deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void): void;
271
+ deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReceiptRuleSetCommandOutput) => void): void;
272
+ /**
273
+ * <p>Deletes an email template.</p>
274
+ * <p>You can execute this operation no more than once per second.</p>
275
+ */
276
+ deleteTemplate(args: DeleteTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTemplateCommandOutput>;
277
+ deleteTemplate(args: DeleteTemplateCommandInput, cb: (err: any, data?: DeleteTemplateCommandOutput) => void): void;
278
+ deleteTemplate(args: DeleteTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTemplateCommandOutput) => void): void;
279
+ /**
280
+ * <p>Deprecated. Use the <code>DeleteIdentity</code> operation to delete email addresses
281
+ * and domains.</p>
282
+ */
283
+ deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVerifiedEmailAddressCommandOutput>;
284
+ deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void): void;
285
+ deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVerifiedEmailAddressCommandOutput) => void): void;
286
+ /**
287
+ * <p>Returns the metadata and receipt rules for the receipt rule set that is currently
288
+ * active.</p>
289
+ * <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
290
+ * Developer Guide</a>.</p>
291
+ * <p>You can execute this operation no more than once per second.</p>
292
+ */
293
+ describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeActiveReceiptRuleSetCommandOutput>;
294
+ describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void): void;
295
+ describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActiveReceiptRuleSetCommandOutput) => void): void;
296
+ /**
297
+ * <p>Returns the details of the specified configuration set. For information about using
298
+ * configuration sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon SES Developer
299
+ * Guide</a>.</p>
300
+ * <p>You can execute this operation no more than once per second.</p>
301
+ */
302
+ describeConfigurationSet(args: DescribeConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationSetCommandOutput>;
303
+ describeConfigurationSet(args: DescribeConfigurationSetCommandInput, cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void): void;
304
+ describeConfigurationSet(args: DescribeConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationSetCommandOutput) => void): void;
305
+ /**
306
+ * <p>Returns the details of the specified receipt rule.</p>
307
+ * <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
308
+ * Guide</a>.</p>
309
+ * <p>You can execute this operation no more than once per second.</p>
310
+ */
311
+ describeReceiptRule(args: DescribeReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReceiptRuleCommandOutput>;
312
+ describeReceiptRule(args: DescribeReceiptRuleCommandInput, cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void): void;
313
+ describeReceiptRule(args: DescribeReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReceiptRuleCommandOutput) => void): void;
314
+ /**
315
+ * <p>Returns the details of the specified receipt rule set.</p>
316
+ * <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>
317
+ * <p>You can execute this operation no more than once per second.</p>
318
+ */
319
+ describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReceiptRuleSetCommandOutput>;
320
+ describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void): void;
321
+ describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReceiptRuleSetCommandOutput) => void): void;
322
+ /**
323
+ * <p>Returns the email sending status of the Amazon SES account for the current region.</p>
324
+ * <p>You can execute this operation no more than once per second.</p>
325
+ */
326
+ getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSendingEnabledCommandOutput>;
327
+ getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void): void;
328
+ getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSendingEnabledCommandOutput) => void): void;
329
+ /**
330
+ * <p>Returns the custom email verification template for the template name you
331
+ * specify.</p>
332
+ * <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
333
+ * Guide</i>.</p>
334
+ * <p>You can execute this operation no more than once per second.</p>
335
+ */
336
+ getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCustomVerificationEmailTemplateCommandOutput>;
337
+ getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
338
+ getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCustomVerificationEmailTemplateCommandOutput) => void): void;
339
+ /**
340
+ * <p>Returns the current status of Easy DKIM signing for an entity. For domain name
341
+ * identities, this operation also returns the DKIM tokens that are required for Easy DKIM
342
+ * signing, and whether Amazon SES has successfully verified that these tokens have been
343
+ * published.</p>
344
+ * <p>This operation takes a list of identities as input and returns the following
345
+ * information for each:</p>
346
+ * <ul>
347
+ * <li>
348
+ * <p>Whether Easy DKIM signing is enabled or disabled.</p>
349
+ * </li>
350
+ * <li>
351
+ * <p>A set of DKIM tokens that represent the identity. If the identity is an email
352
+ * address, the tokens represent the domain of that address.</p>
353
+ * </li>
354
+ * <li>
355
+ * <p>Whether Amazon SES has successfully verified the DKIM tokens published in the
356
+ * domain's DNS. This information is only returned for domain name identities, not
357
+ * for email addresses.</p>
358
+ * </li>
359
+ * </ul>
360
+ * <p>This operation is throttled at one request per second and can only get DKIM attributes
361
+ * for up to 100 identities at a time.</p>
362
+ * <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>
363
+ */
364
+ getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityDkimAttributesCommandOutput>;
365
+ getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void): void;
366
+ getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityDkimAttributesCommandOutput) => void): void;
367
+ /**
368
+ * <p>Returns the custom MAIL FROM attributes for a list of identities (email addresses :
369
+ * domains).</p>
370
+ * <p>This operation is throttled at one request per second and can only get custom MAIL
371
+ * FROM attributes for up to 100 identities at a time.</p>
372
+ */
373
+ getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityMailFromDomainAttributesCommandOutput>;
374
+ getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void): void;
375
+ getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityMailFromDomainAttributesCommandOutput) => void): void;
376
+ /**
377
+ * <p>Given a list of verified identities (email addresses and/or domains), returns a
378
+ * structure describing identity notification attributes.</p>
379
+ * <p>This operation is throttled at one request per second and can only get notification
380
+ * attributes for up to 100 identities at a time.</p>
381
+ * <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
382
+ * Developer Guide</a>.</p>
383
+ */
384
+ getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityNotificationAttributesCommandOutput>;
385
+ getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void): void;
386
+ getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityNotificationAttributesCommandOutput) => void): void;
387
+ /**
388
+ * <p>Returns the requested sending authorization policies for the given identity (an email
389
+ * address or a domain). The policies are returned as a map of policy names to policy
390
+ * contents. You can retrieve a maximum of 20 policies at a time.</p>
391
+ * <note>
392
+ * <p>This API is for the identity owner only. If you have not verified the identity,
393
+ * this API will return an error.</p>
394
+ * </note>
395
+ * <p>Sending authorization is a feature that enables an identity owner to authorize other
396
+ * senders to use its identities. For information about using sending authorization, see
397
+ * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
398
+ * Guide</a>.</p>
399
+ * <p>You can execute this operation no more than once per second.</p>
400
+ */
401
+ getIdentityPolicies(args: GetIdentityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityPoliciesCommandOutput>;
402
+ getIdentityPolicies(args: GetIdentityPoliciesCommandInput, cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void): void;
403
+ getIdentityPolicies(args: GetIdentityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityPoliciesCommandOutput) => void): void;
404
+ /**
405
+ * <p>Given a list of identities (email addresses and/or domains), returns the verification
406
+ * status and (for domain identities) the verification token for each identity.</p>
407
+ * <p>The verification status of an email address is "Pending" until the email address owner
408
+ * clicks the link within the verification email that Amazon SES sent to that address. If the
409
+ * email address owner clicks the link within 24 hours, the verification status of the
410
+ * email address changes to "Success". If the link is not clicked within 24 hours, the
411
+ * verification status changes to "Failed." In that case, if you still want to verify the
412
+ * email address, you must restart the verification process from the beginning.</p>
413
+ * <p>For domain identities, the domain's verification status is "Pending" as Amazon SES searches
414
+ * for the required TXT record in the DNS settings of the domain. When Amazon SES detects the
415
+ * record, the domain's verification status changes to "Success". If Amazon SES is unable to
416
+ * detect the record within 72 hours, the domain's verification status changes to "Failed."
417
+ * In that case, if you still want to verify the domain, you must restart the verification
418
+ * process from the beginning.</p>
419
+ * <p>This operation is throttled at one request per second and can only get verification
420
+ * attributes for up to 100 identities at a time.</p>
421
+ */
422
+ getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityVerificationAttributesCommandOutput>;
423
+ getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void): void;
424
+ getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityVerificationAttributesCommandOutput) => void): void;
425
+ /**
426
+ * <p>Provides the sending limits for the Amazon SES account. </p>
427
+ * <p>You can execute this operation no more than once per second.</p>
428
+ */
429
+ getSendQuota(args: GetSendQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetSendQuotaCommandOutput>;
430
+ getSendQuota(args: GetSendQuotaCommandInput, cb: (err: any, data?: GetSendQuotaCommandOutput) => void): void;
431
+ getSendQuota(args: GetSendQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSendQuotaCommandOutput) => void): void;
432
+ /**
433
+ * <p>Provides sending statistics for the current AWS Region. The result is a list of data
434
+ * points, representing the last two weeks of sending activity. Each data point in the list
435
+ * contains statistics for a 15-minute period of time.</p>
436
+ * <p>You can execute this operation no more than once per second.</p>
437
+ */
438
+ getSendStatistics(args: GetSendStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<GetSendStatisticsCommandOutput>;
439
+ getSendStatistics(args: GetSendStatisticsCommandInput, cb: (err: any, data?: GetSendStatisticsCommandOutput) => void): void;
440
+ getSendStatistics(args: GetSendStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSendStatisticsCommandOutput) => void): void;
441
+ /**
442
+ * <p>Displays the template object (which includes the Subject line, HTML part and text
443
+ * part) for the template you specify.</p>
444
+ * <p>You can execute this operation no more than once per second.</p>
445
+ */
446
+ getTemplate(args: GetTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTemplateCommandOutput>;
447
+ getTemplate(args: GetTemplateCommandInput, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
448
+ getTemplate(args: GetTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
449
+ /**
450
+ * <p>Provides a list of the configuration sets associated with your Amazon SES account in the
451
+ * 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
452
+ * Guide.</i>
453
+ * </p>
454
+ * <p>You can execute this operation no more than once per second. This operation will
455
+ * return up to 1,000 configuration sets each time it is run. If your Amazon SES account has
456
+ * more than 1,000 configuration sets, this operation will also return a NextToken element.
457
+ * You can then execute the <code>ListConfigurationSets</code> operation again, passing the
458
+ * <code>NextToken</code> parameter and the value of the NextToken element to retrieve
459
+ * additional results.</p>
460
+ */
461
+ listConfigurationSets(args: ListConfigurationSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationSetsCommandOutput>;
462
+ listConfigurationSets(args: ListConfigurationSetsCommandInput, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
463
+ listConfigurationSets(args: ListConfigurationSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationSetsCommandOutput) => void): void;
464
+ /**
465
+ * <p>Lists the existing custom verification email templates for your account in the current
466
+ * AWS Region.</p>
467
+ * <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
468
+ * Guide</i>.</p>
469
+ * <p>You can execute this operation no more than once per second.</p>
470
+ */
471
+ listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
472
+ listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
473
+ listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomVerificationEmailTemplatesCommandOutput) => void): void;
474
+ /**
475
+ * <p>Returns a list containing all of the identities (email addresses and domains) for your
476
+ * AWS account in the current AWS Region, regardless of verification status.</p>
477
+ * <p>You can execute this operation no more than once per second.</p>
478
+ */
479
+ listIdentities(args: ListIdentitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentitiesCommandOutput>;
480
+ listIdentities(args: ListIdentitiesCommandInput, cb: (err: any, data?: ListIdentitiesCommandOutput) => void): void;
481
+ listIdentities(args: ListIdentitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentitiesCommandOutput) => void): void;
482
+ /**
483
+ * <p>Returns a list of sending authorization policies that are attached to the given
484
+ * identity (an email address or a domain). This API returns only a list. If you want the
485
+ * actual policy content, you can use <code>GetIdentityPolicies</code>.</p>
486
+ * <note>
487
+ * <p>This API is for the identity owner only. If you have not verified the identity,
488
+ * this API will return an error.</p>
489
+ * </note>
490
+ * <p>Sending authorization is a feature that enables an identity owner to authorize other
491
+ * senders to use its identities. For information about using sending authorization, see
492
+ * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
493
+ * Guide</a>.</p>
494
+ * <p>You can execute this operation no more than once per second.</p>
495
+ */
496
+ listIdentityPolicies(args: ListIdentityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityPoliciesCommandOutput>;
497
+ listIdentityPolicies(args: ListIdentityPoliciesCommandInput, cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void): void;
498
+ listIdentityPolicies(args: ListIdentityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityPoliciesCommandOutput) => void): void;
499
+ /**
500
+ * <p>Lists the IP address filters associated with your AWS account in the current AWS
501
+ * Region.</p>
502
+ * <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
503
+ * Developer Guide</a>.</p>
504
+ * <p>You can execute this operation no more than once per second.</p>
505
+ */
506
+ listReceiptFilters(args: ListReceiptFiltersCommandInput, options?: __HttpHandlerOptions): Promise<ListReceiptFiltersCommandOutput>;
507
+ listReceiptFilters(args: ListReceiptFiltersCommandInput, cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void): void;
508
+ listReceiptFilters(args: ListReceiptFiltersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceiptFiltersCommandOutput) => void): void;
509
+ /**
510
+ * <p>Lists the receipt rule sets that exist under your AWS account in the current AWS
511
+ * Region. If there are additional receipt rule sets to be retrieved, you will receive a
512
+ * <code>NextToken</code> that you can provide to the next call to
513
+ * <code>ListReceiptRuleSets</code> to retrieve the additional entries.</p>
514
+ * <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>
515
+ * <p>You can execute this operation no more than once per second.</p>
516
+ */
517
+ listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListReceiptRuleSetsCommandOutput>;
518
+ listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void): void;
519
+ listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceiptRuleSetsCommandOutput) => void): void;
520
+ /**
521
+ * <p>Lists the email templates present in your Amazon SES account in the current AWS
522
+ * Region.</p>
523
+ * <p>You can execute this operation no more than once per second.</p>
524
+ */
525
+ listTemplates(args: ListTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTemplatesCommandOutput>;
526
+ listTemplates(args: ListTemplatesCommandInput, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
527
+ listTemplates(args: ListTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
528
+ /**
529
+ * <p>Deprecated. Use the <code>ListIdentities</code> operation to list the email addresses
530
+ * and domains associated with your account.</p>
531
+ */
532
+ listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, options?: __HttpHandlerOptions): Promise<ListVerifiedEmailAddressesCommandOutput>;
533
+ listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void): void;
534
+ listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVerifiedEmailAddressesCommandOutput) => void): void;
535
+ /**
536
+ * <p>Adds or updates the delivery options for a configuration set.</p>
537
+ */
538
+ putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options?: __HttpHandlerOptions): Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
539
+ putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
540
+ putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationSetDeliveryOptionsCommandOutput) => void): void;
541
+ /**
542
+ * <p>Adds or updates a sending authorization policy for the specified identity (an email
543
+ * address or a domain).</p>
544
+ * <note>
545
+ * <p>This API is for the identity owner only. If you have not verified the identity,
546
+ * this API will return an error.</p>
547
+ * </note>
548
+ * <p>Sending authorization is a feature that enables an identity owner to authorize other
549
+ * senders to use its identities. For information about using sending authorization, see
550
+ * the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
551
+ * Guide</a>.</p>
552
+ * <p>You can execute this operation no more than once per second.</p>
553
+ */
554
+ putIdentityPolicy(args: PutIdentityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutIdentityPolicyCommandOutput>;
555
+ putIdentityPolicy(args: PutIdentityPolicyCommandInput, cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void): void;
556
+ putIdentityPolicy(args: PutIdentityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIdentityPolicyCommandOutput) => void): void;
557
+ /**
558
+ * <p>Reorders the receipt rules within a receipt rule set.</p>
559
+ * <note>
560
+ * <p>All of the rules in the rule set must be represented in this request. That is,
561
+ * this API will return an error if the reorder request doesn't explicitly position all
562
+ * of the rules.</p>
563
+ * </note>
564
+ * <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>
565
+ * <p>You can execute this operation no more than once per second.</p>
566
+ */
567
+ reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<ReorderReceiptRuleSetCommandOutput>;
568
+ reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void): void;
569
+ reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReorderReceiptRuleSetCommandOutput) => void): void;
570
+ /**
571
+ * <p>Generates and sends a bounce message to the sender of an email you received through
572
+ * Amazon SES. You can only use this API on an email up to 24 hours after you receive it.</p>
573
+ * <note>
574
+ * <p>You cannot use this API to send generic bounces for mail that was not received by
575
+ * Amazon SES.</p>
576
+ * </note>
577
+ * <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
578
+ * Developer Guide</a>.</p>
579
+ * <p>You can execute this operation no more than once per second.</p>
580
+ */
581
+ sendBounce(args: SendBounceCommandInput, options?: __HttpHandlerOptions): Promise<SendBounceCommandOutput>;
582
+ sendBounce(args: SendBounceCommandInput, cb: (err: any, data?: SendBounceCommandOutput) => void): void;
583
+ sendBounce(args: SendBounceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendBounceCommandOutput) => void): void;
584
+ /**
585
+ * <p>Composes an email message to multiple destinations. The message body is created using
586
+ * an email template.</p>
587
+ * <p>In order to send email using the <code>SendBulkTemplatedEmail</code> operation, your
588
+ * call to the API must meet the following requirements:</p>
589
+ * <ul>
590
+ * <li>
591
+ * <p>The call must refer to an existing email template. You can create email
592
+ * templates using the <a>CreateTemplate</a> operation.</p>
593
+ * </li>
594
+ * <li>
595
+ * <p>The message must be sent from a verified email address or domain.</p>
596
+ * </li>
597
+ * <li>
598
+ * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
599
+ * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
600
+ * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
601
+ * Email Addresses and Domains</a> in the <i>Amazon SES Developer
602
+ * Guide.</i>
603
+ * </p>
604
+ * </li>
605
+ * <li>
606
+ * <p>The maximum message size is 10 MB.</p>
607
+ * </li>
608
+ * <li>
609
+ * <p>Each <code>Destination</code> parameter must include at least one recipient
610
+ * email address. The recipient address can be a To: address, a CC: address, or a
611
+ * BCC: address. If a recipient email address is invalid (that is, it is not in the
612
+ * format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
613
+ * entire message will be rejected, even if the message contains other recipients
614
+ * that are valid.</p>
615
+ * </li>
616
+ * <li>
617
+ * <p>The message may not include more than 50 recipients, across the To:, CC: and
618
+ * BCC: fields. If you need to send an email message to a larger audience, you can
619
+ * divide your recipient list into groups of 50 or fewer, and then call the
620
+ * <code>SendBulkTemplatedEmail</code> operation several times to send the
621
+ * message to each group.</p>
622
+ * </li>
623
+ * <li>
624
+ * <p>The number of destinations you can contact in a single call to the API may be
625
+ * limited by your account's maximum sending rate.</p>
626
+ * </li>
627
+ * </ul>
628
+ */
629
+ sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendBulkTemplatedEmailCommandOutput>;
630
+ sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void): void;
631
+ sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendBulkTemplatedEmailCommandOutput) => void): void;
632
+ /**
633
+ * <p>Adds an email address to the list of identities for your Amazon SES account in the current
634
+ * AWS Region and attempts to verify it. As a result of executing this operation, a
635
+ * customized verification email is sent to the specified address.</p>
636
+ * <p>To use this operation, you must first create a custom verification email template. For
637
+ * more information about creating and using custom verification email templates, see
638
+ * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom
639
+ * Verification Email Templates</a> in the <i>Amazon SES Developer
640
+ * Guide</i>.</p>
641
+ * <p>You can execute this operation no more than once per second.</p>
642
+ */
643
+ sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendCustomVerificationEmailCommandOutput>;
644
+ sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
645
+ sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendCustomVerificationEmailCommandOutput) => void): void;
646
+ /**
647
+ * <p>Composes an email message and immediately queues it for sending. In order to send
648
+ * email using the <code>SendEmail</code> operation, your message must meet the following
649
+ * requirements:</p>
650
+ *
651
+ * <ul>
652
+ * <li>
653
+ * <p>The message must be sent from a verified email address or domain. If you
654
+ * attempt to send email using a non-verified address or domain, the operation will
655
+ * result in an "Email address not verified" error. </p>
656
+ * </li>
657
+ * <li>
658
+ * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
659
+ * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
660
+ * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
661
+ * Email Addresses and Domains</a> in the <i>Amazon SES Developer
662
+ * Guide.</i>
663
+ * </p>
664
+ * </li>
665
+ * <li>
666
+ * <p>The maximum message size is 10 MB.</p>
667
+ * </li>
668
+ * <li>
669
+ * <p>The message must include at least one recipient email address. The recipient
670
+ * address can be a To: address, a CC: address, or a BCC: address. If a recipient
671
+ * email address is invalid (that is, it is not in the format
672
+ * <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the entire
673
+ * message will be rejected, even if the message contains other recipients that are
674
+ * valid.</p>
675
+ * </li>
676
+ * <li>
677
+ * <p>The message may not include more than 50 recipients, across the To:, CC: and
678
+ * BCC: fields. If you need to send an email message to a larger audience, you can
679
+ * divide your recipient list into groups of 50 or fewer, and then call the
680
+ * <code>SendEmail</code> operation several times to send the message to each
681
+ * group.</p>
682
+ * </li>
683
+ * </ul>
684
+ * <important>
685
+ * <p>For every message that you send, the total number of recipients (including each
686
+ * recipient in the To:, CC: and BCC: fields) is counted against the maximum number of
687
+ * emails you can send in a 24-hour period (your <i>sending quota</i>).
688
+ * 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
689
+ * Sending Limits</a> in the <i>Amazon SES Developer Guide.</i>
690
+ * </p>
691
+ * </important>
692
+ */
693
+ sendEmail(args: SendEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendEmailCommandOutput>;
694
+ sendEmail(args: SendEmailCommandInput, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
695
+ sendEmail(args: SendEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendEmailCommandOutput) => void): void;
696
+ /**
697
+ * <p>Composes an email message and immediately queues it for sending.</p>
698
+ *
699
+ * <p>This operation is more flexible than the <code>SendEmail</code> API operation. When
700
+ * you use the <code>SendRawEmail</code> operation, you can specify the headers of the
701
+ * message as well as its content. This flexibility is useful, for example, when you want
702
+ * to send a multipart MIME email (such a message that contains both a text and an HTML
703
+ * version). You can also use this operation to send messages that include
704
+ * attachments.</p>
705
+ * <p>The <code>SendRawEmail</code> operation has the following requirements:</p>
706
+ * <ul>
707
+ * <li>
708
+ * <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
709
+ * to send email from an address that isn't verified, the operation results in an
710
+ * "Email address not verified" error.</p>
711
+ * </li>
712
+ * <li>
713
+ * <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
714
+ * verified addresses in your account, or to addresses that are associated with the
715
+ * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mailbox-simulator.html">Amazon SES mailbox simulator</a>.</p>
716
+ * </li>
717
+ * <li>
718
+ * <p>The maximum message size, including attachments, is 10 MB.</p>
719
+ * </li>
720
+ * <li>
721
+ * <p>Each message has to include at least one recipient address. A recipient
722
+ * address includes any address on the To:, CC:, or BCC: lines.</p>
723
+ * </li>
724
+ * <li>
725
+ * <p>If you send a single message to more than one recipient address, and one of
726
+ * the recipient addresses isn't in a valid format (that is, it's not in the format
727
+ * <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), Amazon SES
728
+ * rejects the entire message, even if the other addresses are valid.</p>
729
+ * </li>
730
+ * <li>
731
+ * <p>Each message can include up to 50 recipient addresses across the To:, CC:, or
732
+ * BCC: lines. If you need to send a single message to more than 50 recipients, you
733
+ * have to split the list of recipient addresses into groups of less than 50
734
+ * recipients, and send separate messages to each group.</p>
735
+ * </li>
736
+ * <li>
737
+ * <p>Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message
738
+ * parts. However, if Amazon SES has to modify the contents of your message (for
739
+ * example, if you use open and click tracking), 8-bit content isn't preserved. For
740
+ * this reason, we highly recommend that you encode all content that isn't 7-bit
741
+ * 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
742
+ * Guide</i>.</p>
743
+ * </li>
744
+ * </ul>
745
+ *
746
+ *
747
+ *
748
+ * <p>Additionally, keep the following considerations in mind when using the
749
+ * <code>SendRawEmail</code> operation:</p>
750
+ *
751
+ * <ul>
752
+ * <li>
753
+ * <p>Although you can customize the message headers when using the
754
+ * <code>SendRawEmail</code> operation, Amazon SES will automatically apply its own
755
+ * <code>Message-ID</code> and <code>Date</code> headers; if you passed these
756
+ * headers when creating the message, they will be overwritten by the values that
757
+ * Amazon SES provides.</p>
758
+ * </li>
759
+ * <li>
760
+ * <p>If you are using sending authorization to send on behalf of another user,
761
+ * <code>SendRawEmail</code> enables you to specify the cross-account identity
762
+ * for the email's Source, From, and Return-Path parameters in one of two ways: you
763
+ * can pass optional parameters <code>SourceArn</code>, <code>FromArn</code>,
764
+ * and/or <code>ReturnPathArn</code> to the API, or you can include the following
765
+ * X-headers in the header of your raw email:</p>
766
+ * <ul>
767
+ * <li>
768
+ * <p>
769
+ * <code>X-SES-SOURCE-ARN</code>
770
+ * </p>
771
+ * </li>
772
+ * <li>
773
+ * <p>
774
+ * <code>X-SES-FROM-ARN</code>
775
+ * </p>
776
+ * </li>
777
+ * <li>
778
+ * <p>
779
+ * <code>X-SES-RETURN-PATH-ARN</code>
780
+ * </p>
781
+ * </li>
782
+ * </ul>
783
+ * <important>
784
+ * <p>Don't include these X-headers in the DKIM signature. Amazon SES removes these
785
+ * before it sends the email.</p>
786
+ * </important>
787
+ * <p>If you only specify the <code>SourceIdentityArn</code> parameter, Amazon SES sets
788
+ * the From and Return-Path addresses to the same identity that you
789
+ * specified.</p>
790
+ * <p>For more information about sending authorization, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Using Sending
791
+ * Authorization with Amazon SES</a> in the <i>Amazon SES Developer
792
+ * Guide.</i>
793
+ * </p>
794
+ * </li>
795
+ * <li>
796
+ * <p>For every message that you send, the total number of recipients (including
797
+ * each recipient in the To:, CC: and BCC: fields) is counted against the maximum
798
+ * number of emails you can send in a 24-hour period (your <i>sending
799
+ * quota</i>). For more information about sending quotas in Amazon SES, see
800
+ * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your
801
+ * Amazon SES Sending Limits</a> in the <i>Amazon SES Developer
802
+ * Guide.</i>
803
+ * </p>
804
+ * </li>
805
+ * </ul>
806
+ */
807
+ sendRawEmail(args: SendRawEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendRawEmailCommandOutput>;
808
+ sendRawEmail(args: SendRawEmailCommandInput, cb: (err: any, data?: SendRawEmailCommandOutput) => void): void;
809
+ sendRawEmail(args: SendRawEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendRawEmailCommandOutput) => void): void;
810
+ /**
811
+ * <p>Composes an email message using an email template and immediately queues it for
812
+ * sending.</p>
813
+ * <p>In order to send email using the <code>SendTemplatedEmail</code> operation, your call
814
+ * to the API must meet the following requirements:</p>
815
+ * <ul>
816
+ * <li>
817
+ * <p>The call must refer to an existing email template. You can create email
818
+ * templates using the <a>CreateTemplate</a> operation.</p>
819
+ * </li>
820
+ * <li>
821
+ * <p>The message must be sent from a verified email address or domain.</p>
822
+ * </li>
823
+ * <li>
824
+ * <p>If your account is still in the Amazon SES sandbox, you may only send to verified
825
+ * addresses or domains, or to email addresses associated with the Amazon SES Mailbox
826
+ * Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
827
+ * Email Addresses and Domains</a> in the <i>Amazon SES Developer
828
+ * Guide.</i>
829
+ * </p>
830
+ * </li>
831
+ * <li>
832
+ * <p>The maximum message size is 10 MB.</p>
833
+ * </li>
834
+ * <li>
835
+ * <p>Calls to the <code>SendTemplatedEmail</code> operation may only include one
836
+ * <code>Destination</code> parameter. A destination is a set of recipients who
837
+ * will receive the same version of the email. The <code>Destination</code>
838
+ * parameter can include up to 50 recipients, across the To:, CC: and BCC:
839
+ * fields.</p>
840
+ * </li>
841
+ * <li>
842
+ * <p>The <code>Destination</code> parameter must include at least one recipient
843
+ * email address. The recipient address can be a To: address, a CC: address, or a
844
+ * BCC: address. If a recipient email address is invalid (that is, it is not in the
845
+ * format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
846
+ * entire message will be rejected, even if the message contains other recipients
847
+ * that are valid.</p>
848
+ * </li>
849
+ * </ul>
850
+ * <important>
851
+ * <p>If your call to the <code>SendTemplatedEmail</code> operation includes all of the
852
+ * required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES
853
+ * can't render the email because the template contains errors, it doesn't send the
854
+ * email. Additionally, because it already accepted the message, Amazon SES doesn't return a
855
+ * message stating that it was unable to send the email.</p>
856
+ * <p>For these reasons, we highly recommend that you set up Amazon SES to send you
857
+ * 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
858
+ * Personalized Email Using the Amazon SES API</a> in the <i>Amazon Simple Email Service
859
+ * Developer Guide</i>.</p>
860
+ * </important>
861
+ */
862
+ sendTemplatedEmail(args: SendTemplatedEmailCommandInput, options?: __HttpHandlerOptions): Promise<SendTemplatedEmailCommandOutput>;
863
+ sendTemplatedEmail(args: SendTemplatedEmailCommandInput, cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void): void;
864
+ sendTemplatedEmail(args: SendTemplatedEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendTemplatedEmailCommandOutput) => void): void;
865
+ /**
866
+ * <p>Sets the specified receipt rule set as the active receipt rule set.</p>
867
+ * <note>
868
+ * <p>To disable your email-receiving through Amazon SES completely, you can call this API
869
+ * with RuleSetName set to null.</p>
870
+ * </note>
871
+ * <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>
872
+ * <p>You can execute this operation no more than once per second.</p>
873
+ */
874
+ setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<SetActiveReceiptRuleSetCommandOutput>;
875
+ setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void): void;
876
+ setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetActiveReceiptRuleSetCommandOutput) => void): void;
877
+ /**
878
+ * <p>Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM
879
+ * signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends
880
+ * from addresses on that domain. If Easy DKIM signing is enabled for an email address,
881
+ * then Amazon SES uses DKIM to sign all email it sends from that address.</p>
882
+ * <note>
883
+ * <p>For email addresses (for example, <code>user@example.com</code>), you can only
884
+ * enable DKIM signing if the corresponding domain (in this case,
885
+ * <code>example.com</code>) has been set up to use Easy DKIM.</p>
886
+ * </note>
887
+ * <p>You can enable DKIM signing for an identity at any time after you start the
888
+ * verification process for the identity, even if the verification process isn't complete. </p>
889
+ * <p>You can execute this operation no more than once per second.</p>
890
+ * <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>
891
+ */
892
+ setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityDkimEnabledCommandOutput>;
893
+ setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void): void;
894
+ setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityDkimEnabledCommandOutput) => void): void;
895
+ /**
896
+ * <p>Given an identity (an email address or a domain), enables or disables whether Amazon SES
897
+ * forwards bounce and complaint notifications as email. Feedback forwarding can only be
898
+ * disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and
899
+ * complaints.</p>
900
+ * <note>
901
+ * <p>Feedback forwarding does not apply to delivery notifications. Delivery
902
+ * notifications are only available through Amazon SNS.</p>
903
+ * </note>
904
+ * <p>You can execute this operation no more than once per second.</p>
905
+ * <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
906
+ * Developer Guide</a>.</p>
907
+ */
908
+ setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityFeedbackForwardingEnabledCommandOutput>;
909
+ setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void): void;
910
+ setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityFeedbackForwardingEnabledCommandOutput) => void): void;
911
+ /**
912
+ * <p>Given an identity (an email address or a domain), sets whether Amazon SES includes the
913
+ * original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified
914
+ * type.</p>
915
+ * <p>You can execute this operation no more than once per second.</p>
916
+ * <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
917
+ * Developer Guide</a>.</p>
918
+ */
919
+ setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput>;
920
+ setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void): void;
921
+ setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityHeadersInNotificationsEnabledCommandOutput) => void): void;
922
+ /**
923
+ * <p>Enables or disables the custom MAIL FROM domain setup for a verified identity (an
924
+ * email address or a domain).</p>
925
+ * <important>
926
+ * <p>To send emails using the specified MAIL FROM domain, you must add an MX record to
927
+ * your MAIL FROM domain's DNS settings. If you want your emails to pass Sender Policy
928
+ * Framework (SPF) checks, you must also add or update an SPF record. For more
929
+ * information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html">Amazon SES Developer
930
+ * Guide</a>.</p>
931
+ * </important>
932
+ * <p>You can execute this operation no more than once per second.</p>
933
+ */
934
+ setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityMailFromDomainCommandOutput>;
935
+ setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void): void;
936
+ setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityMailFromDomainCommandOutput) => void): void;
937
+ /**
938
+ * <p>Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use
939
+ * this operation, you specify a verified identity, such as an email address or domain.
940
+ * When you send an email that uses the chosen identity in the Source field, Amazon SES sends
941
+ * notifications to the topic you specified. You can send bounce, complaint, or delivery
942
+ * notifications (or any combination of the three) to the Amazon SNS topic that you
943
+ * specify.</p>
944
+ * <p>You can execute this operation no more than once per second.</p>
945
+ * <p>For more information about feedback notification, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html">Amazon SES Developer
946
+ * Guide</a>.</p>
947
+ */
948
+ setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, options?: __HttpHandlerOptions): Promise<SetIdentityNotificationTopicCommandOutput>;
949
+ setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void): void;
950
+ setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIdentityNotificationTopicCommandOutput) => void): void;
951
+ /**
952
+ * <p>Sets the position of the specified receipt rule in the receipt rule set.</p>
953
+ * <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
954
+ * Developer Guide</a>.</p>
955
+ * <p>You can execute this operation no more than once per second.</p>
956
+ */
957
+ setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, options?: __HttpHandlerOptions): Promise<SetReceiptRulePositionCommandOutput>;
958
+ setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void): void;
959
+ setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetReceiptRulePositionCommandOutput) => void): void;
960
+ /**
961
+ * <p>Creates a preview of the MIME content of an email when provided with a template and a
962
+ * set of replacement data.</p>
963
+ * <p>You can execute this operation no more than once per second.</p>
964
+ */
965
+ testRenderTemplate(args: TestRenderTemplateCommandInput, options?: __HttpHandlerOptions): Promise<TestRenderTemplateCommandOutput>;
966
+ testRenderTemplate(args: TestRenderTemplateCommandInput, cb: (err: any, data?: TestRenderTemplateCommandOutput) => void): void;
967
+ testRenderTemplate(args: TestRenderTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestRenderTemplateCommandOutput) => void): void;
968
+ /**
969
+ * <p>Enables or disables email sending across your entire Amazon SES account in the current
970
+ * AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to
971
+ * temporarily pause email sending across your Amazon SES account in a given AWS Region when
972
+ * reputation metrics (such as your bounce or complaint rates) reach certain
973
+ * thresholds.</p>
974
+ * <p>You can execute this operation no more than once per second.</p>
975
+ */
976
+ updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountSendingEnabledCommandOutput>;
977
+ updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void): void;
978
+ updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSendingEnabledCommandOutput) => void): void;
979
+ /**
980
+ * <p>Updates the event destination of a configuration set. Event destinations are
981
+ * associated with configuration sets, which enable you to publish email sending events to
982
+ * Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets,
983
+ * see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Monitoring Your Amazon SES
984
+ * Sending Activity</a> in the <i>Amazon SES Developer Guide.</i>
985
+ * </p>
986
+ * <note>
987
+ * <p>When you create or update an event destination, you must provide one, and only
988
+ * one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service
989
+ * (Amazon SNS).</p>
990
+ * </note>
991
+ * <p>You can execute this operation no more than once per second.</p>
992
+ */
993
+ updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
994
+ updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
995
+ updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetEventDestinationCommandOutput) => void): void;
996
+ /**
997
+ * <p>Enables or disables the publishing of reputation metrics for emails sent using a
998
+ * specific configuration set in a given AWS Region. Reputation metrics include bounce
999
+ * and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can
1000
+ * create alarms when bounce or complaint rates exceed certain thresholds.</p>
1001
+ * <p>You can execute this operation no more than once per second.</p>
1002
+ */
1003
+ updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput>;
1004
+ updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void): void;
1005
+ updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetReputationMetricsEnabledCommandOutput) => void): void;
1006
+ /**
1007
+ * <p>Enables or disables email sending for messages sent using a specific configuration set
1008
+ * in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms
1009
+ * to temporarily pause email sending for a configuration set when the reputation metrics
1010
+ * for that configuration set (such as your bounce on complaint rate) exceed certain
1011
+ * thresholds.</p>
1012
+ * <p>You can execute this operation no more than once per second.</p>
1013
+ */
1014
+ updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetSendingEnabledCommandOutput>;
1015
+ updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void): void;
1016
+ updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetSendingEnabledCommandOutput) => void): void;
1017
+ /**
1018
+ * <p>Modifies an association between a configuration set and a custom domain for open and
1019
+ * click event tracking. </p>
1020
+ * <p>By default, images and links used for tracking open and click events are hosted on
1021
+ * domains operated by Amazon SES. You can configure a subdomain of your own to handle these
1022
+ * 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>
1023
+ */
1024
+ updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetTrackingOptionsCommandOutput>;
1025
+ updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void): void;
1026
+ updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetTrackingOptionsCommandOutput) => void): void;
1027
+ /**
1028
+ * <p>Updates an existing custom verification email template.</p>
1029
+ * <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
1030
+ * Guide</i>.</p>
1031
+ * <p>You can execute this operation no more than once per second.</p>
1032
+ */
1033
+ updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
1034
+ updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
1035
+ updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomVerificationEmailTemplateCommandOutput) => void): void;
1036
+ /**
1037
+ * <p>Updates a receipt rule.</p>
1038
+ * <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
1039
+ * Developer Guide</a>.</p>
1040
+ * <p>You can execute this operation no more than once per second.</p>
1041
+ */
1042
+ updateReceiptRule(args: UpdateReceiptRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReceiptRuleCommandOutput>;
1043
+ updateReceiptRule(args: UpdateReceiptRuleCommandInput, cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void): void;
1044
+ updateReceiptRule(args: UpdateReceiptRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReceiptRuleCommandOutput) => void): void;
1045
+ /**
1046
+ * <p>Updates an email template. Email templates enable you to send personalized email to
1047
+ * 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
1048
+ * Guide</a>.</p>
1049
+ * <p>You can execute this operation no more than once per second.</p>
1050
+ */
1051
+ updateTemplate(args: UpdateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTemplateCommandOutput>;
1052
+ updateTemplate(args: UpdateTemplateCommandInput, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
1053
+ updateTemplate(args: UpdateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
1054
+ /**
1055
+ * <p>Returns a set of DKIM tokens for a domain identity.</p>
1056
+ * <important>
1057
+ * <p>When you execute the <code>VerifyDomainDkim</code> operation, the domain that you
1058
+ * specify is added to the list of identities that are associated with your account.
1059
+ * This is true even if you haven't already associated the domain with your account by
1060
+ * using the <code>VerifyDomainIdentity</code> operation. However, you can't send email
1061
+ * 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
1062
+ * successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">set up DKIM for
1063
+ * it</a>.</p>
1064
+ * </important>
1065
+ * <p>You use the tokens that are generated by this operation to create CNAME records. When
1066
+ * Amazon SES detects that you've added these records to the DNS configuration for a domain, you
1067
+ * can start sending email from that domain. You can start sending email even if you
1068
+ * haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS
1069
+ * configuration for your domain. All email that you send from the domain is authenticated
1070
+ * using DKIM.</p>
1071
+ * <p>To create the CNAME records for DKIM authentication, use the following values:</p>
1072
+ * <ul>
1073
+ * <li>
1074
+ * <p>
1075
+ * <b>Name</b>:
1076
+ * <i>token</i>._domainkey.<i>example.com</i>
1077
+ * </p>
1078
+ * </li>
1079
+ * <li>
1080
+ * <p>
1081
+ * <b>Type</b>: CNAME</p>
1082
+ * </li>
1083
+ * <li>
1084
+ * <p>
1085
+ * <b>Value</b>:
1086
+ * <i>token</i>.dkim.amazonses.com</p>
1087
+ * </li>
1088
+ * </ul>
1089
+ * <p>In the preceding example, replace <i>token</i> with one of the tokens
1090
+ * that are generated when you execute this operation. Replace
1091
+ * <i>example.com</i> with your domain. Repeat this process for each
1092
+ * token that's generated by this operation.</p>
1093
+ * <p>You can execute this operation no more than once per second.</p>
1094
+ */
1095
+ verifyDomainDkim(args: VerifyDomainDkimCommandInput, options?: __HttpHandlerOptions): Promise<VerifyDomainDkimCommandOutput>;
1096
+ verifyDomainDkim(args: VerifyDomainDkimCommandInput, cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void): void;
1097
+ verifyDomainDkim(args: VerifyDomainDkimCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyDomainDkimCommandOutput) => void): void;
1098
+ /**
1099
+ * <p>Adds a domain to the list of identities for your Amazon SES account in the current AWS
1100
+ * Region and attempts to verify it. For more information about verifying domains, see
1101
+ * <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying Email
1102
+ * Addresses and Domains</a> in the <i>Amazon SES Developer
1103
+ * Guide.</i>
1104
+ * </p>
1105
+ * <p>You can execute this operation no more than once per second.</p>
1106
+ */
1107
+ verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, options?: __HttpHandlerOptions): Promise<VerifyDomainIdentityCommandOutput>;
1108
+ verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void): void;
1109
+ verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyDomainIdentityCommandOutput) => void): void;
1110
+ /**
1111
+ * <p>Deprecated. Use the <code>VerifyEmailIdentity</code> operation to verify a new email
1112
+ * address.</p>
1113
+ */
1114
+ verifyEmailAddress(args: VerifyEmailAddressCommandInput, options?: __HttpHandlerOptions): Promise<VerifyEmailAddressCommandOutput>;
1115
+ verifyEmailAddress(args: VerifyEmailAddressCommandInput, cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void): void;
1116
+ verifyEmailAddress(args: VerifyEmailAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyEmailAddressCommandOutput) => void): void;
1117
+ /**
1118
+ * <p>Adds an email address to the list of identities for your Amazon SES account in the current
1119
+ * AWS region and attempts to verify it. As a result of executing this operation, a
1120
+ * verification email is sent to the specified address.</p>
1121
+ * <p>You can execute this operation no more than once per second.</p>
1122
+ */
1123
+ verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, options?: __HttpHandlerOptions): Promise<VerifyEmailIdentityCommandOutput>;
1124
+ verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void): void;
1125
+ verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyEmailIdentityCommandOutput) => void): void;
1126
+ }