If for some reason aws lambda goes down, how does it behave once it is back up?
Let me explain what I am trying to achieve. I have a stream enabled dynamodb table and a lambda which keeps listening on dynamodb changes. If for some reason lambda goes down and at the same time some changes happen to the data in dynamo db, does that mean those changes are lost and lambda will not know about it? Or once the lambda is up, will it somehow know about the updates?
Thank you.