Exam Room · Advanced Solutions Architect

Flash Card: Systems Manager Automation

January 30, 2027 · 2 min read

Advanced Cloud Architecture · part of The Exam Room

Flash card

AWS Systems Manager Automation: documented, parameterised runbooks that execute operational tasks against AWS resources.

  1. Automation documents are multi-step runbooks with parameters, branching, and approval steps, executed by the service rather than by an operator.
  2. AWS publishes a large library of AWS- prefixed runbooks for common tasks, so a lot of remediation needs configuration rather than authoring.
  3. Can be triggered on a schedule, from an EventBridge rule, or as the remediation action attached to an AWS Config rule.
  4. Runs under an IAM role you specify, and every execution is recorded, so an operational change has an audit trail by construction.
  5. Rate control and error thresholds let a runbook roll across a fleet in batches and stop when failures exceed a limit.

Pick it when

Pick it over a Lambda function when the task is operating AWS resources and the sequence is known: you get approvals, rate control and an execution history without writing them. Pick it over Run Command when the work is a multi-step orchestration rather than a single command on instances.

It's the wrong answer when

It is the wrong answer for application logic, for anything needing sub-second reaction, and for work not shaped like operating infrastructure. A scenario about transforming an event payload is Lambda; a scenario about one shell command across a fleet is Run Command.

These posts are LLM-aided. Backbone, original writing, and structure by Craig. Research and editing by Craig + LLM. Proof-reading by Craig.