Interface JupyterStreamOutputEvent

Text emitted on the stdout or stderr stream.

interface JupyterStreamOutputEvent {
    kernelId?: string;
    name: string;
    value: JupyterStreamOutputEventValue;
}

Properties

Properties

kernelId?: string

The kernel that produced this output.

name: string

The name of the stream.

The emitted text, or a presigned S3 link in case the output is too big.