AWS provides the capability to trigger a lambda function with incoming events in the SQS queue. Lambda polls the queue for the messages and invokes your function synchronously. Lambda picks these messages in batches and passes these as input to a function.

Related Articles