Struct aws_sdk_emr::model::NotebookExecutionSummary [−][src]
#[non_exhaustive]pub struct NotebookExecutionSummary {
pub notebook_execution_id: Option<String>,
pub editor_id: Option<String>,
pub notebook_execution_name: Option<String>,
pub status: Option<NotebookExecutionStatus>,
pub start_time: Option<Instant>,
pub end_time: Option<Instant>,
}Expand description
Details for a notebook execution. The details include information such as the unique ID and status of the notebook execution.
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.notebook_execution_id: Option<String>The unique identifier of the notebook execution.
editor_id: Option<String>The unique identifier of the editor associated with the notebook execution.
notebook_execution_name: Option<String>The name of the notebook execution.
status: Option<NotebookExecutionStatus>The status of the notebook execution.
-
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.
start_time: Option<Instant>The timestamp when notebook execution started.
end_time: Option<Instant>The timestamp when notebook execution started.
Implementations
Creates a new builder-style object to manufacture NotebookExecutionSummary
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 NotebookExecutionSummary
impl Send for NotebookExecutionSummary
impl Sync for NotebookExecutionSummary
impl Unpin for NotebookExecutionSummary
impl UnwindSafe for NotebookExecutionSummary
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