-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
The Lambda function now receives a SNS event containing the SES event. Use the following code to get the SES event: ```ts export async function handler(event: AWSLambda.SNSEvent): Promise<void> { const ses = JSON.parse(event.Records[0].Sns.Message) as AWSLambda.SESMessage; } ``` This removes a intermediary Lambda function that had an EventBridge destination, simplifying the architecture. BREAKING CHANGE: The Lambda function of an `EmailReceiver` now receives a SNS event.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.