AWS Lambda Event Filtering

Duleendra Shashimal
Towards AWS
Published in
3 min readJun 7, 2022

--

Event Filtering

AWS Lambda provides a feature to filter events that come from Amazon SQS, Amazon Kinesis, and Amazon DynamoDB. With this feature, Lambda only sends the filtered events to the handler function.

Advantages of event filtering

In some use cases, we may not need to process all the events that come from the event sources…

--

--