UNPKG

aws-cdk

Version:

AWS CDK CLI, the command line tool for CDK apps

13 lines (12 loc) 548 B
import type { FlagsOptions } from '../../cli/user-input'; export declare enum FlagsMenuOptions { ALL_TO_RECOMMENDED = "Set all flags to recommended values", UNCONFIGURED_TO_RECOMMENDED = "Set unconfigured flags to recommended values", UNCONFIGURED_TO_DEFAULT = "Set unconfigured flags to their implied configuration (record current behavior)", MODIFY_SPECIFIC_FLAG = "Modify a specific flag", EXIT = "Exit" } export interface FlagOperationsParams extends FlagsOptions { /** User provided --app option */ app?: string; }