zap-cdk
    Preparing search index...

    Interface IExitStatusParameters

    IExitStatusParameters Represents the parameters for configuring exit status in the scanning process.

    interface IExitStatusParameters {
        errorExitValue?: number;
        errorLevel?: "Low" | "Medium" | "High" | "Informational";
        okExitValue?: number;
        warnExitValue?: number;
        warnLevel?: "Low" | "Medium" | "High" | "Informational";
    }
    Index

    Properties

    errorExitValue?: number

    Exit value if there are errors, default: 1.

    errorLevel?: "Low" | "Medium" | "High" | "Informational"

    The error level, default: not set.

    okExitValue?: number

    Exit value if all is ok, default: 0.

    warnExitValue?: number

    Exit value if there are warnings, default: 2.

    warnLevel?: "Low" | "Medium" | "High" | "Informational"

    The warning level, default: not set.