zap-cdk
    Preparing search index...

    Interface IActiveScanConfig

    IActiveScanConfig Represents the configuration for an active scan.

    interface IActiveScanConfig {
        alwaysRun?: boolean;
        enabled?: boolean;
        excludePaths?: string[];
        parameters: IActiveScanConfigParameters;
        type: "activeScan-config";
    }
    Index

    Properties

    alwaysRun?: boolean

    If set and the job is enabled, then it will run even if the plan exits early, default: false.

    enabled?: boolean

    If set to false, the job will not be run, default: true.

    excludePaths?: string[]

    An optional list of regexes to exclude.

    The parameters for the active scan configuration.

    type: "activeScan-config"

    Configures the settings of the active scanner.