-
When using
How do those exceptions differ? And what does "resource type" mean in this context? I tested by sending many requests in parallel, and received a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @lonix1, Thank you for reaching us with your query.
The Service quotas in Amazon SES lists and describes the quotas that apply to Amazon SES resources and operations. Exceeding these specific resource types and limits would cause the Let me know if this helps. Regards, |
Beta Was this translation helpful? Give feedback.
Hi @lonix1,
Thank you for reaching us with your query.
TooManyRequestsException
is raised when you have exceeded the rate limit for the specific operation you're calling, in this case its theSendEmailAsync
.LimitExceededException
is raised when you exceed a limit or quota for a specific resource type within the SES service. Theresource type
could refer to various entities, such as Recipient limits, Email sending quotas, etc.The Service quotas in Amazon SES lists and describes the quotas that apply to Amazon SES resources and operations. Exceeding these specific resource types and limits would cause the
LimitExceededException
in SES.Let me know if this helps.
Regards,
Chaitanya