zap-cdk
    Preparing search index...

    Interface IPolicyDefinition

    IPolicyDefinition Represents the policy definition for an active scan.

    interface IPolicyDefinition {
        alertTags?: {
            exclude: string[];
            include: string[];
            strength?: string;
            threshold?: string;
        };
        defaultStrength?: string;
        defaultThreshold?: string;
        rules?: {
            id: number;
            name?: string;
            strength?: string;
            threshold?: string;
        }[];
    }
    Index

    Properties

    alertTags?: {
        exclude: string[];
        include: string[];
        strength?: string;
        threshold?: string;
    }

    Configuration for alert tags.

    defaultStrength?: string

    The default Attack Strength for all rules, one of Low, Medium, High, Insane, default: Medium.

    defaultThreshold?: string

    The default Alert Threshold for all rules, one of Off, Low, Medium, High, default: Medium.

    rules?: { id: number; name?: string; strength?: string; threshold?: string }[]

    A list of rules for the active scan.