zap-cdk
    Preparing search index...

    Interface IEnvironment

    IEnvironment Represents the environment configuration for the scanning process.

    interface IEnvironment {
        contexts: IContext[];
        parameters: {
            continueOnFailure?: boolean;
            failOnError?: boolean;
            failOnWarning?: boolean;
            progressToStdout?: boolean;
        };
        proxy?: {
            hostname?: string;
            password?: string;
            port?: number;
            realm?: string;
            username?: string;
        };
        vars?: { [key: string]: string };
    }
    Index

    Properties

    contexts: IContext[]

    List of contexts for the scanning environment.

    parameters: {
        continueOnFailure?: boolean;
        failOnError?: boolean;
        failOnWarning?: boolean;
        progressToStdout?: boolean;
    }

    Parameters for the environment configuration.

    proxy?: {
        hostname?: string;
        password?: string;
        port?: number;
        realm?: string;
        username?: string;
    }

    Proxy configuration for the environment.

    vars?: { [key: string]: string }

    Custom variables for the environment.