zap-cdk
    Preparing search index...

    Interface IActiveScan

    IActiveScan Represents an active scan configuration.

    interface IActiveScan {
        alwaysRun?: boolean;
        enabled?: boolean;
        parameters: IActiveScanParameters;
        policyDefinition?: IPolicyDefinition;
        type: "activeScan";
    }
    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.

    The parameters for the active scan.

    policyDefinition?: IPolicyDefinition

    The policy definition - only used if the 'policy' is not set.

    type: "activeScan"

    The active scanner type.