Instructions for additional steps that are run at stack level

interface StackSteps {
    changeSet?: Step[];
    post?: Step[];
    pre?: Step[];
    stack: Stack;
}

Properties

changeSet?: Step[]

Steps that execute after stack is prepared but before stack is deployed

- no additional steps
post?: Step[]

Steps that execute after stack is deployed

- no additional steps
pre?: Step[]

Steps that execute before stack is prepared

- no additional steps
stack: Stack

The stack you want the steps to run in