Interface Hook

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

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

Properties

Properties

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

Perform the hook action.

Type declaration