Values.NotebookExecutionSummarySourceDetails for a notebook execution. The details include information such as the unique ID and status of the notebook execution.
type nonrec t = {notebookExecutionId : XmlStringMaxLen256.t option;The unique identifier of the notebook execution.
*)editorId : XmlStringMaxLen256.t option;The unique identifier of the editor associated with the notebook execution.
*)notebookExecutionName : XmlStringMaxLen256.t option;The name of the notebook execution.
*)status : NotebookExecutionStatus.t option;The status of the notebook execution. START_PENDING indicates that the cluster has received the execution request but execution has not begun. STARTING indicates that the execution is starting on the cluster. RUNNING indicates that the execution is being processed by the cluster. FINISHING indicates that execution processing is in the final stages. FINISHED indicates that the execution has completed without error. FAILING indicates that the execution is failing and will not finish successfully. FAILED indicates that the execution failed. STOP_PENDING indicates that the cluster has received a StopNotebookExecution request and the stop is pending. STOPPING indicates that the cluster is in the process of stopping the execution as a result of a StopNotebookExecution request. STOPPED indicates that the execution stopped because of a StopNotebookExecution request.
*)startTime : Date.t option;The timestamp when notebook execution started.
*)endTime : Date.t option;The timestamp when notebook execution started.
*)notebookS3Location : NotebookS3LocationForOutput.t option;The Amazon S3 location that stores the notebook execution input.
*)executionEngineId : XmlString.t option;The unique ID of the execution engine for the notebook execution.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of XmlStringMaxLen256.t
| `Structure of (string * [> `String of XmlStringMaxLen256.t ]) list
| `Timestamp of Date.t ])
list ]