I am configuring Amazon SES to send emails, through a lambda function. I am trying to understand the pricing model for doing this. As per the AWS docs, the pricing is as follows:
Sending email from an application hosted in Amazon EC2
$0 for the first 62,000 emails you send each month, and $0.10 for every 1,000 emails you send after that.
Sending email from an email client or other software package
$0.10 for every 1,000 emails you send.
Where do lambda functions fit into this pricing scenario? While I do understand AWS would host lambda functions on some variant of a virtual instance, will the pricing model of an EC2 instance apply while invoking SES through lambdas as well?
Thanks in advance!