@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,215 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CloneReceiptRuleSetCommandInput, CloneReceiptRuleSetCommandOutput } from "../commands/CloneReceiptRuleSetCommand";
4
+ import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "../commands/CreateConfigurationSetCommand";
5
+ import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "../commands/CreateConfigurationSetEventDestinationCommand";
6
+ import { CreateConfigurationSetTrackingOptionsCommandInput, CreateConfigurationSetTrackingOptionsCommandOutput } from "../commands/CreateConfigurationSetTrackingOptionsCommand";
7
+ import { CreateCustomVerificationEmailTemplateCommandInput, CreateCustomVerificationEmailTemplateCommandOutput } from "../commands/CreateCustomVerificationEmailTemplateCommand";
8
+ import { CreateReceiptFilterCommandInput, CreateReceiptFilterCommandOutput } from "../commands/CreateReceiptFilterCommand";
9
+ import { CreateReceiptRuleCommandInput, CreateReceiptRuleCommandOutput } from "../commands/CreateReceiptRuleCommand";
10
+ import { CreateReceiptRuleSetCommandInput, CreateReceiptRuleSetCommandOutput } from "../commands/CreateReceiptRuleSetCommand";
11
+ import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
12
+ import { DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput } from "../commands/DeleteConfigurationSetCommand";
13
+ import { DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput } from "../commands/DeleteConfigurationSetEventDestinationCommand";
14
+ import { DeleteConfigurationSetTrackingOptionsCommandInput, DeleteConfigurationSetTrackingOptionsCommandOutput } from "../commands/DeleteConfigurationSetTrackingOptionsCommand";
15
+ import { DeleteCustomVerificationEmailTemplateCommandInput, DeleteCustomVerificationEmailTemplateCommandOutput } from "../commands/DeleteCustomVerificationEmailTemplateCommand";
16
+ import { DeleteIdentityCommandInput, DeleteIdentityCommandOutput } from "../commands/DeleteIdentityCommand";
17
+ import { DeleteIdentityPolicyCommandInput, DeleteIdentityPolicyCommandOutput } from "../commands/DeleteIdentityPolicyCommand";
18
+ import { DeleteReceiptFilterCommandInput, DeleteReceiptFilterCommandOutput } from "../commands/DeleteReceiptFilterCommand";
19
+ import { DeleteReceiptRuleCommandInput, DeleteReceiptRuleCommandOutput } from "../commands/DeleteReceiptRuleCommand";
20
+ import { DeleteReceiptRuleSetCommandInput, DeleteReceiptRuleSetCommandOutput } from "../commands/DeleteReceiptRuleSetCommand";
21
+ import { DeleteTemplateCommandInput, DeleteTemplateCommandOutput } from "../commands/DeleteTemplateCommand";
22
+ import { DeleteVerifiedEmailAddressCommandInput, DeleteVerifiedEmailAddressCommandOutput } from "../commands/DeleteVerifiedEmailAddressCommand";
23
+ import { DescribeActiveReceiptRuleSetCommandInput, DescribeActiveReceiptRuleSetCommandOutput } from "../commands/DescribeActiveReceiptRuleSetCommand";
24
+ import { DescribeConfigurationSetCommandInput, DescribeConfigurationSetCommandOutput } from "../commands/DescribeConfigurationSetCommand";
25
+ import { DescribeReceiptRuleCommandInput, DescribeReceiptRuleCommandOutput } from "../commands/DescribeReceiptRuleCommand";
26
+ import { DescribeReceiptRuleSetCommandInput, DescribeReceiptRuleSetCommandOutput } from "../commands/DescribeReceiptRuleSetCommand";
27
+ import { GetAccountSendingEnabledCommandInput, GetAccountSendingEnabledCommandOutput } from "../commands/GetAccountSendingEnabledCommand";
28
+ import { GetCustomVerificationEmailTemplateCommandInput, GetCustomVerificationEmailTemplateCommandOutput } from "../commands/GetCustomVerificationEmailTemplateCommand";
29
+ import { GetIdentityDkimAttributesCommandInput, GetIdentityDkimAttributesCommandOutput } from "../commands/GetIdentityDkimAttributesCommand";
30
+ import { GetIdentityMailFromDomainAttributesCommandInput, GetIdentityMailFromDomainAttributesCommandOutput } from "../commands/GetIdentityMailFromDomainAttributesCommand";
31
+ import { GetIdentityNotificationAttributesCommandInput, GetIdentityNotificationAttributesCommandOutput } from "../commands/GetIdentityNotificationAttributesCommand";
32
+ import { GetIdentityPoliciesCommandInput, GetIdentityPoliciesCommandOutput } from "../commands/GetIdentityPoliciesCommand";
33
+ import { GetIdentityVerificationAttributesCommandInput, GetIdentityVerificationAttributesCommandOutput } from "../commands/GetIdentityVerificationAttributesCommand";
34
+ import { GetSendQuotaCommandInput, GetSendQuotaCommandOutput } from "../commands/GetSendQuotaCommand";
35
+ import { GetSendStatisticsCommandInput, GetSendStatisticsCommandOutput } from "../commands/GetSendStatisticsCommand";
36
+ import { GetTemplateCommandInput, GetTemplateCommandOutput } from "../commands/GetTemplateCommand";
37
+ import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "../commands/ListConfigurationSetsCommand";
38
+ import { ListCustomVerificationEmailTemplatesCommandInput, ListCustomVerificationEmailTemplatesCommandOutput } from "../commands/ListCustomVerificationEmailTemplatesCommand";
39
+ import { ListIdentitiesCommandInput, ListIdentitiesCommandOutput } from "../commands/ListIdentitiesCommand";
40
+ import { ListIdentityPoliciesCommandInput, ListIdentityPoliciesCommandOutput } from "../commands/ListIdentityPoliciesCommand";
41
+ import { ListReceiptFiltersCommandInput, ListReceiptFiltersCommandOutput } from "../commands/ListReceiptFiltersCommand";
42
+ import { ListReceiptRuleSetsCommandInput, ListReceiptRuleSetsCommandOutput } from "../commands/ListReceiptRuleSetsCommand";
43
+ import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "../commands/ListTemplatesCommand";
44
+ import { ListVerifiedEmailAddressesCommandInput, ListVerifiedEmailAddressesCommandOutput } from "../commands/ListVerifiedEmailAddressesCommand";
45
+ import { PutConfigurationSetDeliveryOptionsCommandInput, PutConfigurationSetDeliveryOptionsCommandOutput } from "../commands/PutConfigurationSetDeliveryOptionsCommand";
46
+ import { PutIdentityPolicyCommandInput, PutIdentityPolicyCommandOutput } from "../commands/PutIdentityPolicyCommand";
47
+ import { ReorderReceiptRuleSetCommandInput, ReorderReceiptRuleSetCommandOutput } from "../commands/ReorderReceiptRuleSetCommand";
48
+ import { SendBounceCommandInput, SendBounceCommandOutput } from "../commands/SendBounceCommand";
49
+ import { SendBulkTemplatedEmailCommandInput, SendBulkTemplatedEmailCommandOutput } from "../commands/SendBulkTemplatedEmailCommand";
50
+ import { SendCustomVerificationEmailCommandInput, SendCustomVerificationEmailCommandOutput } from "../commands/SendCustomVerificationEmailCommand";
51
+ import { SendEmailCommandInput, SendEmailCommandOutput } from "../commands/SendEmailCommand";
52
+ import { SendRawEmailCommandInput, SendRawEmailCommandOutput } from "../commands/SendRawEmailCommand";
53
+ import { SendTemplatedEmailCommandInput, SendTemplatedEmailCommandOutput } from "../commands/SendTemplatedEmailCommand";
54
+ import { SetActiveReceiptRuleSetCommandInput, SetActiveReceiptRuleSetCommandOutput } from "../commands/SetActiveReceiptRuleSetCommand";
55
+ import { SetIdentityDkimEnabledCommandInput, SetIdentityDkimEnabledCommandOutput } from "../commands/SetIdentityDkimEnabledCommand";
56
+ import { SetIdentityFeedbackForwardingEnabledCommandInput, SetIdentityFeedbackForwardingEnabledCommandOutput } from "../commands/SetIdentityFeedbackForwardingEnabledCommand";
57
+ import { SetIdentityHeadersInNotificationsEnabledCommandInput, SetIdentityHeadersInNotificationsEnabledCommandOutput } from "../commands/SetIdentityHeadersInNotificationsEnabledCommand";
58
+ import { SetIdentityMailFromDomainCommandInput, SetIdentityMailFromDomainCommandOutput } from "../commands/SetIdentityMailFromDomainCommand";
59
+ import { SetIdentityNotificationTopicCommandInput, SetIdentityNotificationTopicCommandOutput } from "../commands/SetIdentityNotificationTopicCommand";
60
+ import { SetReceiptRulePositionCommandInput, SetReceiptRulePositionCommandOutput } from "../commands/SetReceiptRulePositionCommand";
61
+ import { TestRenderTemplateCommandInput, TestRenderTemplateCommandOutput } from "../commands/TestRenderTemplateCommand";
62
+ import { UpdateAccountSendingEnabledCommandInput, UpdateAccountSendingEnabledCommandOutput } from "../commands/UpdateAccountSendingEnabledCommand";
63
+ import { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput } from "../commands/UpdateConfigurationSetEventDestinationCommand";
64
+ import { UpdateConfigurationSetReputationMetricsEnabledCommandInput, UpdateConfigurationSetReputationMetricsEnabledCommandOutput } from "../commands/UpdateConfigurationSetReputationMetricsEnabledCommand";
65
+ import { UpdateConfigurationSetSendingEnabledCommandInput, UpdateConfigurationSetSendingEnabledCommandOutput } from "../commands/UpdateConfigurationSetSendingEnabledCommand";
66
+ import { UpdateConfigurationSetTrackingOptionsCommandInput, UpdateConfigurationSetTrackingOptionsCommandOutput } from "../commands/UpdateConfigurationSetTrackingOptionsCommand";
67
+ import { UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerificationEmailTemplateCommandOutput } from "../commands/UpdateCustomVerificationEmailTemplateCommand";
68
+ import { UpdateReceiptRuleCommandInput, UpdateReceiptRuleCommandOutput } from "../commands/UpdateReceiptRuleCommand";
69
+ import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "../commands/UpdateTemplateCommand";
70
+ import { VerifyDomainDkimCommandInput, VerifyDomainDkimCommandOutput } from "../commands/VerifyDomainDkimCommand";
71
+ import { VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput } from "../commands/VerifyDomainIdentityCommand";
72
+ import { VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput } from "../commands/VerifyEmailAddressCommand";
73
+ import { VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput } from "../commands/VerifyEmailIdentityCommand";
74
+ export declare const serializeAws_queryCloneReceiptRuleSetCommand: (input: CloneReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ export declare const serializeAws_queryCreateConfigurationSetCommand: (input: CreateConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
+ export declare const serializeAws_queryCreateConfigurationSetEventDestinationCommand: (input: CreateConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ export declare const serializeAws_queryCreateConfigurationSetTrackingOptionsCommand: (input: CreateConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_queryCreateCustomVerificationEmailTemplateCommand: (input: CreateCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ export declare const serializeAws_queryCreateReceiptFilterCommand: (input: CreateReceiptFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ export declare const serializeAws_queryCreateReceiptRuleCommand: (input: CreateReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ export declare const serializeAws_queryCreateReceiptRuleSetCommand: (input: CreateReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_queryCreateTemplateCommand: (input: CreateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ export declare const serializeAws_queryDeleteConfigurationSetCommand: (input: DeleteConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
+ export declare const serializeAws_queryDeleteConfigurationSetEventDestinationCommand: (input: DeleteConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ export declare const serializeAws_queryDeleteConfigurationSetTrackingOptionsCommand: (input: DeleteConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_queryDeleteCustomVerificationEmailTemplateCommand: (input: DeleteCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
+ export declare const serializeAws_queryDeleteIdentityCommand: (input: DeleteIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
+ export declare const serializeAws_queryDeleteIdentityPolicyCommand: (input: DeleteIdentityPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_queryDeleteReceiptFilterCommand: (input: DeleteReceiptFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_queryDeleteReceiptRuleCommand: (input: DeleteReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
+ export declare const serializeAws_queryDeleteReceiptRuleSetCommand: (input: DeleteReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
+ export declare const serializeAws_queryDeleteTemplateCommand: (input: DeleteTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ export declare const serializeAws_queryDeleteVerifiedEmailAddressCommand: (input: DeleteVerifiedEmailAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_queryDescribeActiveReceiptRuleSetCommand: (input: DescribeActiveReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ export declare const serializeAws_queryDescribeConfigurationSetCommand: (input: DescribeConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
+ export declare const serializeAws_queryDescribeReceiptRuleCommand: (input: DescribeReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ export declare const serializeAws_queryDescribeReceiptRuleSetCommand: (input: DescribeReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_queryGetAccountSendingEnabledCommand: (input: GetAccountSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ export declare const serializeAws_queryGetCustomVerificationEmailTemplateCommand: (input: GetCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
+ export declare const serializeAws_queryGetIdentityDkimAttributesCommand: (input: GetIdentityDkimAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_queryGetIdentityMailFromDomainAttributesCommand: (input: GetIdentityMailFromDomainAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_queryGetIdentityNotificationAttributesCommand: (input: GetIdentityNotificationAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
+ export declare const serializeAws_queryGetIdentityPoliciesCommand: (input: GetIdentityPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
+ export declare const serializeAws_queryGetIdentityVerificationAttributesCommand: (input: GetIdentityVerificationAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ export declare const serializeAws_queryGetSendQuotaCommand: (input: GetSendQuotaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_queryGetSendStatisticsCommand: (input: GetSendStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
+ export declare const serializeAws_queryGetTemplateCommand: (input: GetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ export declare const serializeAws_queryListConfigurationSetsCommand: (input: ListConfigurationSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
+ export declare const serializeAws_queryListCustomVerificationEmailTemplatesCommand: (input: ListCustomVerificationEmailTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_queryListIdentitiesCommand: (input: ListIdentitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
+ export declare const serializeAws_queryListIdentityPoliciesCommand: (input: ListIdentityPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
+ export declare const serializeAws_queryListReceiptFiltersCommand: (input: ListReceiptFiltersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_queryListReceiptRuleSetsCommand: (input: ListReceiptRuleSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_queryListTemplatesCommand: (input: ListTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ export declare const serializeAws_queryListVerifiedEmailAddressesCommand: (input: ListVerifiedEmailAddressesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
+ export declare const serializeAws_queryPutConfigurationSetDeliveryOptionsCommand: (input: PutConfigurationSetDeliveryOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ export declare const serializeAws_queryPutIdentityPolicyCommand: (input: PutIdentityPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_queryReorderReceiptRuleSetCommand: (input: ReorderReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
+ export declare const serializeAws_querySendBounceCommand: (input: SendBounceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
+ export declare const serializeAws_querySendBulkTemplatedEmailCommand: (input: SendBulkTemplatedEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ export declare const serializeAws_querySendCustomVerificationEmailCommand: (input: SendCustomVerificationEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_querySendEmailCommand: (input: SendEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
+ export declare const serializeAws_querySendRawEmailCommand: (input: SendRawEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
124
+ export declare const serializeAws_querySendTemplatedEmailCommand: (input: SendTemplatedEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ export declare const serializeAws_querySetActiveReceiptRuleSetCommand: (input: SetActiveReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_querySetIdentityDkimEnabledCommand: (input: SetIdentityDkimEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ export declare const serializeAws_querySetIdentityFeedbackForwardingEnabledCommand: (input: SetIdentityFeedbackForwardingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
+ export declare const serializeAws_querySetIdentityHeadersInNotificationsEnabledCommand: (input: SetIdentityHeadersInNotificationsEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ export declare const serializeAws_querySetIdentityMailFromDomainCommand: (input: SetIdentityMailFromDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_querySetIdentityNotificationTopicCommand: (input: SetIdentityNotificationTopicCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
131
+ export declare const serializeAws_querySetReceiptRulePositionCommand: (input: SetReceiptRulePositionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
+ export declare const serializeAws_queryTestRenderTemplateCommand: (input: TestRenderTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
+ export declare const serializeAws_queryUpdateAccountSendingEnabledCommand: (input: UpdateAccountSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_queryUpdateConfigurationSetEventDestinationCommand: (input: UpdateConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
+ export declare const serializeAws_queryUpdateConfigurationSetReputationMetricsEnabledCommand: (input: UpdateConfigurationSetReputationMetricsEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
136
+ export declare const serializeAws_queryUpdateConfigurationSetSendingEnabledCommand: (input: UpdateConfigurationSetSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
137
+ export declare const serializeAws_queryUpdateConfigurationSetTrackingOptionsCommand: (input: UpdateConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_queryUpdateCustomVerificationEmailTemplateCommand: (input: UpdateCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
139
+ export declare const serializeAws_queryUpdateReceiptRuleCommand: (input: UpdateReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
140
+ export declare const serializeAws_queryUpdateTemplateCommand: (input: UpdateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
141
+ export declare const serializeAws_queryVerifyDomainDkimCommand: (input: VerifyDomainDkimCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_queryVerifyDomainIdentityCommand: (input: VerifyDomainIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
+ export declare const serializeAws_queryVerifyEmailAddressCommand: (input: VerifyEmailAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
+ export declare const serializeAws_queryVerifyEmailIdentityCommand: (input: VerifyEmailIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ export declare const deserializeAws_queryCloneReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CloneReceiptRuleSetCommandOutput>;
146
+ export declare const deserializeAws_queryCreateConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetCommandOutput>;
147
+ export declare const deserializeAws_queryCreateConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetEventDestinationCommandOutput>;
148
+ export declare const deserializeAws_queryCreateConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetTrackingOptionsCommandOutput>;
149
+ export declare const deserializeAws_queryCreateCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
150
+ export declare const deserializeAws_queryCreateReceiptFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptFilterCommandOutput>;
151
+ export declare const deserializeAws_queryCreateReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptRuleCommandOutput>;
152
+ export declare const deserializeAws_queryCreateReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptRuleSetCommandOutput>;
153
+ export declare const deserializeAws_queryCreateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateCommandOutput>;
154
+ export declare const deserializeAws_queryDeleteConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetCommandOutput>;
155
+ export declare const deserializeAws_queryDeleteConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
156
+ export declare const deserializeAws_queryDeleteConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetTrackingOptionsCommandOutput>;
157
+ export declare const deserializeAws_queryDeleteCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
158
+ export declare const deserializeAws_queryDeleteIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityCommandOutput>;
159
+ export declare const deserializeAws_queryDeleteIdentityPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityPolicyCommandOutput>;
160
+ export declare const deserializeAws_queryDeleteReceiptFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptFilterCommandOutput>;
161
+ export declare const deserializeAws_queryDeleteReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptRuleCommandOutput>;
162
+ export declare const deserializeAws_queryDeleteReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptRuleSetCommandOutput>;
163
+ export declare const deserializeAws_queryDeleteTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTemplateCommandOutput>;
164
+ export declare const deserializeAws_queryDeleteVerifiedEmailAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVerifiedEmailAddressCommandOutput>;
165
+ export declare const deserializeAws_queryDescribeActiveReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeActiveReceiptRuleSetCommandOutput>;
166
+ export declare const deserializeAws_queryDescribeConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationSetCommandOutput>;
167
+ export declare const deserializeAws_queryDescribeReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReceiptRuleCommandOutput>;
168
+ export declare const deserializeAws_queryDescribeReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReceiptRuleSetCommandOutput>;
169
+ export declare const deserializeAws_queryGetAccountSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSendingEnabledCommandOutput>;
170
+ export declare const deserializeAws_queryGetCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCustomVerificationEmailTemplateCommandOutput>;
171
+ export declare const deserializeAws_queryGetIdentityDkimAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityDkimAttributesCommandOutput>;
172
+ export declare const deserializeAws_queryGetIdentityMailFromDomainAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityMailFromDomainAttributesCommandOutput>;
173
+ export declare const deserializeAws_queryGetIdentityNotificationAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityNotificationAttributesCommandOutput>;
174
+ export declare const deserializeAws_queryGetIdentityPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityPoliciesCommandOutput>;
175
+ export declare const deserializeAws_queryGetIdentityVerificationAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityVerificationAttributesCommandOutput>;
176
+ export declare const deserializeAws_queryGetSendQuotaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSendQuotaCommandOutput>;
177
+ export declare const deserializeAws_queryGetSendStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSendStatisticsCommandOutput>;
178
+ export declare const deserializeAws_queryGetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateCommandOutput>;
179
+ export declare const deserializeAws_queryListConfigurationSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationSetsCommandOutput>;
180
+ export declare const deserializeAws_queryListCustomVerificationEmailTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
181
+ export declare const deserializeAws_queryListIdentitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentitiesCommandOutput>;
182
+ export declare const deserializeAws_queryListIdentityPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityPoliciesCommandOutput>;
183
+ export declare const deserializeAws_queryListReceiptFiltersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReceiptFiltersCommandOutput>;
184
+ export declare const deserializeAws_queryListReceiptRuleSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReceiptRuleSetsCommandOutput>;
185
+ export declare const deserializeAws_queryListTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTemplatesCommandOutput>;
186
+ export declare const deserializeAws_queryListVerifiedEmailAddressesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVerifiedEmailAddressesCommandOutput>;
187
+ export declare const deserializeAws_queryPutConfigurationSetDeliveryOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
188
+ export declare const deserializeAws_queryPutIdentityPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutIdentityPolicyCommandOutput>;
189
+ export declare const deserializeAws_queryReorderReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReorderReceiptRuleSetCommandOutput>;
190
+ export declare const deserializeAws_querySendBounceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendBounceCommandOutput>;
191
+ export declare const deserializeAws_querySendBulkTemplatedEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendBulkTemplatedEmailCommandOutput>;
192
+ export declare const deserializeAws_querySendCustomVerificationEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendCustomVerificationEmailCommandOutput>;
193
+ export declare const deserializeAws_querySendEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendEmailCommandOutput>;
194
+ export declare const deserializeAws_querySendRawEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendRawEmailCommandOutput>;
195
+ export declare const deserializeAws_querySendTemplatedEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTemplatedEmailCommandOutput>;
196
+ export declare const deserializeAws_querySetActiveReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetActiveReceiptRuleSetCommandOutput>;
197
+ export declare const deserializeAws_querySetIdentityDkimEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityDkimEnabledCommandOutput>;
198
+ export declare const deserializeAws_querySetIdentityFeedbackForwardingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityFeedbackForwardingEnabledCommandOutput>;
199
+ export declare const deserializeAws_querySetIdentityHeadersInNotificationsEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput>;
200
+ export declare const deserializeAws_querySetIdentityMailFromDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityMailFromDomainCommandOutput>;
201
+ export declare const deserializeAws_querySetIdentityNotificationTopicCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityNotificationTopicCommandOutput>;
202
+ export declare const deserializeAws_querySetReceiptRulePositionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetReceiptRulePositionCommandOutput>;
203
+ export declare const deserializeAws_queryTestRenderTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestRenderTemplateCommandOutput>;
204
+ export declare const deserializeAws_queryUpdateAccountSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountSendingEnabledCommandOutput>;
205
+ export declare const deserializeAws_queryUpdateConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
206
+ export declare const deserializeAws_queryUpdateConfigurationSetReputationMetricsEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput>;
207
+ export declare const deserializeAws_queryUpdateConfigurationSetSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetSendingEnabledCommandOutput>;
208
+ export declare const deserializeAws_queryUpdateConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetTrackingOptionsCommandOutput>;
209
+ export declare const deserializeAws_queryUpdateCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
210
+ export declare const deserializeAws_queryUpdateReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateReceiptRuleCommandOutput>;
211
+ export declare const deserializeAws_queryUpdateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTemplateCommandOutput>;
212
+ export declare const deserializeAws_queryVerifyDomainDkimCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyDomainDkimCommandOutput>;
213
+ export declare const deserializeAws_queryVerifyDomainIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyDomainIdentityCommandOutput>;
214
+ export declare const deserializeAws_queryVerifyEmailAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyEmailAddressCommandOutput>;
215
+ export declare const deserializeAws_queryVerifyEmailIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyEmailIdentityCommandOutput>;
@@ -0,0 +1,37 @@
1
+ import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SESClientConfig } from "./SESClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SESClientConfig) => {
7
+ runtime: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: (body: any) => number | undefined;
11
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
+ region: string | import("@aws-sdk/types").Provider<any>;
15
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
16
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
17
+ sha256: import("@aws-sdk/types").HashConstructor;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ apiVersion: string;
22
+ urlParser: import("@aws-sdk/types").UrlParser;
23
+ disableHostPrefix: boolean;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ serviceId: string;
26
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,37 @@
1
+ import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
2
+ import { SESClientConfig } from "./SESClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SESClientConfig) => {
7
+ runtime: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: (body: any) => number | undefined;
11
+ credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
+ region: string | import("@aws-sdk/types").Provider<string>;
15
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
17
+ sha256: import("@aws-sdk/types").HashConstructor;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ apiVersion: string;
22
+ urlParser: import("@aws-sdk/types").UrlParser;
23
+ disableHostPrefix: boolean;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ serviceId: string;
26
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,36 @@
1
+ import { SESClientConfig } from "./SESClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SESClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: (body: any) => number | undefined;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
+ tls?: boolean | undefined;
28
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
29
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
30
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
31
+ signingEscapePath?: boolean | undefined;
32
+ systemClockOffset?: number | undefined;
33
+ signingRegion?: string | undefined;
34
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
35
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
36
+ };