zap-cdk
    Preparing search index...

    Interface IActiveScanPolicy

    IActiveScanPolicy Represents an active scan policy configuration.

    interface IActiveScanPolicy {
        alwaysRun?: boolean;
        enabled?: boolean;
        parameters: IActiveScanPolicyParameters;
        type: "activeScan-policy";
    }
    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 policy configuration.

    type: "activeScan-policy"

    Defines a new active scan policy.