#[non_exhaustive]pub struct ListNotebookExecutionsInput {
pub editor_id: Option<String>,
pub status: Option<NotebookExecutionStatus>,
pub from: Option<DateTime>,
pub to: Option<DateTime>,
pub marker: Option<String>,
pub execution_engine_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.editor_id: Option<String>The unique ID of the editor associated with the notebook execution.
status: Option<NotebookExecutionStatus>The 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 aStopNotebookExecutionrequest and the stop is pending. -
STOPPINGindicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecutionrequest. -
STOPPEDindicates that the execution stopped because of aStopNotebookExecutionrequest.
from: Option<DateTime>The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
to: Option<DateTime>The end of time range filter for listing notebook executions. The default is the current timestamp.
marker: Option<String>The pagination token, returned by a previous ListNotebookExecutions call, that indicates the start of the list for this ListNotebookExecutions call.
execution_engine_id: Option<String>The unique ID of the execution engine.
Implementations§
source§impl ListNotebookExecutionsInput
impl ListNotebookExecutionsInput
sourcepub fn editor_id(&self) -> Option<&str>
pub fn editor_id(&self) -> Option<&str>
The unique ID of the editor associated with the notebook execution.
sourcepub fn status(&self) -> Option<&NotebookExecutionStatus>
pub fn status(&self) -> Option<&NotebookExecutionStatus>
The 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 aStopNotebookExecutionrequest and the stop is pending. -
STOPPINGindicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecutionrequest. -
STOPPEDindicates that the execution stopped because of aStopNotebookExecutionrequest.
sourcepub fn from(&self) -> Option<&DateTime>
pub fn from(&self) -> Option<&DateTime>
The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
sourcepub fn to(&self) -> Option<&DateTime>
pub fn to(&self) -> Option<&DateTime>
The end of time range filter for listing notebook executions. The default is the current timestamp.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
The pagination token, returned by a previous ListNotebookExecutions call, that indicates the start of the list for this ListNotebookExecutions call.
sourcepub fn execution_engine_id(&self) -> Option<&str>
pub fn execution_engine_id(&self) -> Option<&str>
The unique ID of the execution engine.
source§impl ListNotebookExecutionsInput
impl ListNotebookExecutionsInput
sourcepub fn builder() -> ListNotebookExecutionsInputBuilder
pub fn builder() -> ListNotebookExecutionsInputBuilder
Creates a new builder-style object to manufacture ListNotebookExecutionsInput.
Trait Implementations§
source§impl Clone for ListNotebookExecutionsInput
impl Clone for ListNotebookExecutionsInput
source§fn clone(&self) -> ListNotebookExecutionsInput
fn clone(&self) -> ListNotebookExecutionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListNotebookExecutionsInput
impl Debug for ListNotebookExecutionsInput
source§impl PartialEq for ListNotebookExecutionsInput
impl PartialEq for ListNotebookExecutionsInput
source§fn eq(&self, other: &ListNotebookExecutionsInput) -> bool
fn eq(&self, other: &ListNotebookExecutionsInput) -> bool
self and other values to be equal, and is used
by ==.