I have an AWS lambda function that takes a large array of email addresses and sends them to SES for sending. The function is called through an SNS subscription. It works well when the size of the message array is small, however, when the size of the message array is large enough, the lambda function is not activated. Missing registration.
I confirmed that the payload is below the required size of the SNS message, and I subscribed to the SNS topic by email ... this works. I am receiving the expected message payload by email.
Any idea why this is failing? Suggestions on how to get around this?
source
share