Interface Hook

Life-cycle hook used to perform actions at different stages of stack deploy and undeploy commands.

interface Hook {
    execute: ((input) => Promise<HookOutput>);
}

Properties

Properties

execute: ((input) => Promise<HookOutput>)

Perform the hook action.

Type declaration

Returns

Action output

Generated using TypeDoc