What is the difference between synchronous and asynchronous Lambda invocation?
spaceto flip
Synchronous: caller waits for the response (API Gateway, SDK invoke). Lambda retries: none, caller handles errors. Asynchronous: caller gets 202 immediately, Lambda retries up to 2 times on failure. Failed events go to a DLQ or on-failure destination. Event sources like S3 and SNS use async.