Reputation: 548
I have 2 AWS lambda function A and B , both written in Python.
Every time i have A executed , i want B to be executed 3 minutes later.
Is it possible to achieve that? If yes how?
Upvotes: 2
Views: 892
Reputation: 51
You can use AWS step functions to achieve that, scheduling a serverless workflow. Step functions allows you to wait for a step to be executed.
Upvotes: 0