List Notebook Executions
| emr_list_notebook_executions | R Documentation |
Provides summaries of all notebook executions¶
Description¶
Provides summaries of all notebook executions. You can filter the list
based on multiple criteria such as status, time range, and editor id.
Returns a maximum of 50 notebook executions and a marker to track the
paging of a longer notebook execution list across multiple
list_notebook_executions calls.
Usage¶
Arguments¶
EditorIdThe unique ID of the editor associated with the notebook execution.
StatusThe status filter for listing notebook executions.
START_PENDINGindicates that the cluster has received the execution request but execution has not begun.STARTINGindicates that the execution is starting on the cluster.RUNNINGindicates that the execution is being processed by the cluster.FINISHINGindicates that execution processing is in the final stages.FINISHEDindicates that the execution has completed without error.FAILINGindicates that the execution is failing and will not finish successfully.FAILEDindicates that the execution failed.STOP_PENDINGindicates that the cluster has received astop_notebook_executionrequest and the stop is pending.STOPPINGindicates that the cluster is in the process of stopping the execution as a result of astop_notebook_executionrequest.STOPPEDindicates that the execution stopped because of astop_notebook_executionrequest.
FromThe beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
ToThe end of time range filter for listing notebook executions. The default is the current timestamp.
MarkerThe pagination token, returned by a previous
list_notebook_executionscall, that indicates the start of the list for thislist_notebook_executionscall.ExecutionEngineIdThe unique ID of the execution engine.
Value¶
A list with the following syntax:
list(
NotebookExecutions = list(
list(
NotebookExecutionId = "string",
EditorId = "string",
NotebookExecutionName = "string",
Status = "START_PENDING"|"STARTING"|"RUNNING"|"FINISHING"|"FINISHED"|"FAILING"|"FAILED"|"STOP_PENDING"|"STOPPING"|"STOPPED",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
NotebookS3Location = list(
Bucket = "string",
Key = "string"
),
ExecutionEngineId = "string"
)
),
Marker = "string"
)