zap-cdk
    Preparing search index...

    Interface IReport

    Interface representing a report configuration. IReport

    interface IReport {
        confidences?: ConfidenceLevel[];
        displayReport?: boolean;
        reportDescription?: string;
        reportDir?: string;
        reportFile?: string;
        reportTitle?: string;
        risks?: RiskLevel[];
        sections?: string[];
        sites?: string[];
        template?: ReportTemplate;
        theme?: ReportTheme;
    }
    Index

    Properties

    confidences?: ConfidenceLevel[]

    The confidences to include in this report, default all.

    displayReport?: boolean

    Display the report when generated, default: false.

    reportDescription?: string

    The report description.

    reportDir?: string

    The directory into which the report will be written.

    reportFile?: string

    The report file name pattern, default: {{yyyy-MM-dd}}-ZAP-Report-[[site]].

    reportTitle?: string

    The report title.

    risks?: RiskLevel[]

    The risks to include in this report, default all.

    sections?: string[]

    The template sections to include in this report - see the relevant template, default all.

    sites?: string[]

    The sites to include in this report, default all.

    template?: ReportTemplate

    The template ID, restricted to specific values.

    theme?: ReportTheme

    The template theme, restricted to specific values.