Package version:

The properties of a run argument.

interface Argument {
    isSecret?: boolean;
    name: string;
    value: string;
}

Properties

Properties

isSecret?: boolean

Flag to indicate whether the argument represents a secret and want to be removed from build logs.

name: string

The name of the argument.

value: string

The value of the argument.