GhaziBenDahmane
GhaziBenDahmane

Reputation: 548

Schedule lambda invocation from another lambda AWS

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

Answers (1)

Adriano Mulinari
Adriano Mulinari

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

Related Questions