Category: Deployment

When working on an application domain, it is beneficial to use the micro services software design pattern. Loosely coupled with other services — enables a team to work independently the majority of time on their service(s) without being impacted by changes to other services and without affecting other services Independently deployable — enables a team to deploy their service without having to coordinate with other teams

Because of the complexity of the flow of some micro services, you need some way to manage the workflow of execution of multiple Lambda functions.

You could consider using Step Functions to coordinate the execution of the other Lambda functions.

Related Articles