Are you writing Python or Node.js code to do Automation or Pull Reports or Inventory in AWS? 💯 If yes, this post is for you and probably you may end up like this read and learn something new today. 🚨 Spoiler Alert 😅:- Am going to talk about AWS Step Functions. ⭐ Yes, with recent advances rolled out in step functions, we can do lot more than, what we thought it does and what we are doing with it. 🧐 Previously we would have used step functions for cases like :- ✍️Lambda can't run beyond 15 mins, so if we want more wait time for some task, we used to call step functions and wait there and re-trigger lambda to process same event. ✍️To call multiple lambda in sequence or parallel, we would have used it. 🖇️Basically what we do is, always we keep our core logic in lambda and just used step functions for so called "orchestration" to call lambda in different patterns. If you agree with me, then below are some real time use cases, you can try and unleash the real p...