#[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 ==.impl StructuralPartialEq for ListNotebookExecutionsInput
Auto Trait Implementations§
impl Freeze for ListNotebookExecutionsInput
impl RefUnwindSafe for ListNotebookExecutionsInput
impl Send for ListNotebookExecutionsInput
impl Sync for ListNotebookExecutionsInput
impl Unpin for ListNotebookExecutionsInput
impl UnwindSafe for ListNotebookExecutionsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more