logo
pub struct NotebookExecution {
Show 13 fields pub arn: Option<String>, pub editor_id: Option<String>, pub end_time: Option<f64>, pub execution_engine: Option<ExecutionEngineConfig>, pub last_state_change_reason: Option<String>, pub notebook_execution_id: Option<String>, pub notebook_execution_name: Option<String>, pub notebook_instance_security_group_id: Option<String>, pub notebook_params: Option<String>, pub output_notebook_uri: Option<String>, pub start_time: Option<f64>, pub status: Option<String>, pub tags: Option<Vec<Tag>>,
}
Expand description

A notebook execution. An execution is a specific instance that an EMR Notebook is run using the StartNotebookExecution action.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the notebook execution.

editor_id: Option<String>

The unique identifier of the EMR Notebook that is used for the notebook execution.

end_time: Option<f64>

The timestamp when notebook execution ended.

execution_engine: Option<ExecutionEngineConfig>

The execution engine, such as an EMR cluster, used to run the EMR notebook and perform the notebook execution.

last_state_change_reason: Option<String>

The reason for the latest status change of the notebook execution.

notebook_execution_id: Option<String>

The unique identifier of a notebook execution.

notebook_execution_name: Option<String>

A name for the notebook execution.

notebook_instance_security_group_id: Option<String>

The unique identifier of the EC2 security group associated with the EMR Notebook instance. For more information see Specifying EC2 Security Groups for EMR Notebooks in the EMR Management Guide.

notebook_params: Option<String>

Input parameters in JSON format passed to the EMR Notebook at runtime for execution.

output_notebook_uri: Option<String>

The location of the notebook execution's output file in Amazon S3.

start_time: Option<f64>

The timestamp when notebook execution started.

status: Option<String>

The status of the notebook execution.

  • STARTPENDING indicates that the cluster has received the execution request but execution has not begun.

  • STARTING indicates that the execution is starting on the cluster.

  • RUNNING indicates that the execution is being processed by the cluster.

  • FINISHING indicates that execution processing is in the final stages.

  • FINISHED indicates that the execution has completed without error.

  • FAILING indicates that the execution is failing and will not finish successfully.

  • FAILED indicates that the execution failed.

  • STOPPENDING indicates that the cluster has received a StopNotebookExecution request and the stop is pending.

  • STOPPING indicates that the cluster is in the process of stopping the execution as a result of a StopNotebookExecution request.

  • STOPPED indicates that the execution stopped because of a StopNotebookExecution request.

tags: Option<Vec<Tag>>

A list of tags associated with a notebook execution. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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