What is the purpose of "AWS Step Functions", and how does it relate to orchestrating Lambda functions?
Correct! Well done.
Incorrect.
The correct answer is A) Step Functions is a serverless orchestration service that coordinates AWS services (including Lambda) into workflows defined as state machines, handling error retries, parallel execution, and branching logic without custom orchestration code
Correct Answer
Step Functions is a serverless orchestration service that coordinates AWS services (including Lambda) into workflows defined as state machines, handling error retries, parallel execution, and branching logic without custom orchestration code
Step Functions define workflows visually as state machines, managing the execution order, error handling, retries, and parallel branches of tasks (often Lambda functions), reducing the need for custom glue code to coordinate complex processes.