Struct aws_sdk_emr::input::ListNotebookExecutionsInput [−][src]
#[non_exhaustive]pub struct ListNotebookExecutionsInput {
pub editor_id: Option<String>,
pub status: Option<NotebookExecutionStatus>,
pub from: Option<Instant>,
pub to: Option<Instant>,
pub marker: 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<Instant>The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
to: Option<Instant>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.
Implementations
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNotebookExecutions, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNotebookExecutions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListNotebookExecutions>
Creates a new builder-style object to manufacture ListNotebookExecutionsInput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ListNotebookExecutionsInput
impl Send for ListNotebookExecutionsInput
impl Sync for ListNotebookExecutionsInput
impl Unpin for ListNotebookExecutionsInput
impl UnwindSafe for ListNotebookExecutionsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more