#[non_exhaustive]pub struct ListNotebookExecutionsInput { /* private fields */ }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.
source§impl ListNotebookExecutionsInput
impl ListNotebookExecutionsInput
sourcepub fn builder() -> ListNotebookExecutionsInputBuilder
pub fn builder() -> ListNotebookExecutionsInputBuilder
Creates a new builder-style object to manufacture ListNotebookExecutionsInput.
source§impl ListNotebookExecutionsInput
impl ListNotebookExecutionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNotebookExecutions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListNotebookExecutions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListNotebookExecutions>
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<ListNotebookExecutionsInput> for ListNotebookExecutionsInput
impl PartialEq<ListNotebookExecutionsInput> 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 ==.