A multi-step FOIA redaction workflow must run separate Lambda tasks with retries per state rather than one mega-function. What should the developer use?
Select an answer to reveal the explanation.
Short Explanation
FOIA redaction is a relay race, not one giant solo sprint. Step Functions lines up each Lambda as a state with its own retries instead of one brittle mega-handler. Browser localStorage is not an orchestration engine.
Full Explanation
AWS Step Functions orchestrates Lambda tasks as discrete states with per-state error handling and retries, which fits multi-step document pipelines better than a single long-running function. Client-side storage and spreadsheet macros do not provide durable workflow state or managed retries on AWS.