Interface ListEditorDocumentJupyterCellOutputsRequest

interface ListEditorDocumentJupyterCellOutputsRequest {
    cellId: string;
    documentId: string;
    nextToken?: string;
    pageSize?: number;
}

Hierarchy (View Summary)

Properties

cellId: string

The id of the cell to get the outputs for.

documentId: string

The id of the notebook document.

nextToken?: string

Token to get the next page of outputs.

pageSize?: number

The amount of outputs to return per page, at least

  1. Defaults to as many as will fit.