Function Skip

  • Decorator to skip this stack from the CDK app.

    If this is used on a class, it will remove all instances of this stack from the given CDK app.

    Example

    @Skip
    class StackToSkip extends Stack {
    constructor(scope: any, id: string) {
    super(scope, id);
    }
    }

    Parameters

    • stack: (new (...args: any[]) => Stack)

      the stack constructor

        • new (...args: any[]): Stack
        • Parameters

          • Rest ...args: any[]

          Returns Stack

    Returns any

Generated using TypeDoc