Reputation: 25
Is there some API to check if the lambda was invoked?
My lambda is being invoked by a ddb event. I want to write a test case that can check if the lambda was triggered for a new ddb event.
Is there some API to check if the lambda was triggered?
Upvotes: 0
Views: 814
Reputation: 239000
No. There is no special API to check if a lambda was invoked or not. Instead you can:
Upvotes: 1