aws-cdk
Version:
AWS CDK Toolkit CLI, the command line tool for CDK apps
21 lines (20 loc) • 558 B
TypeScript
/**
* Supported display modes for stack deployment activity
*/
export declare enum StackActivityProgress {
/**
* Displays a progress bar with only the events for the resource currently being deployed
*/
BAR = "bar",
/**
* Displays complete history with all CloudFormation stack events
*/
EVENTS = "events",
/**
* Displays nothing, except for errors
*
* Recommended for AI agents and other consumers that don't benefit
* from continuous progress updates.
*/
ERRORS_ONLY = "errors-only"
}