pub struct StepSummary {
pub action_on_failure: Option<String>,
pub config: Option<HadoopStepConfig>,
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<StepStatus>,
}
Expand description
The summary of the cluster step.
Fields§
§action_on_failure: Option<String>
The action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE. TERMINATE_JOB_FLOW is available for backward compatibility. We recommend using TERMINATE_CLUSTER instead.
config: Option<HadoopStepConfig>
The Hadoop job configuration of the cluster step.
id: Option<String>
The identifier of the cluster step.
name: Option<String>
The name of the cluster step.
status: Option<StepStatus>
The current execution status details of the cluster step.
Trait Implementations§
Source§impl Clone for StepSummary
impl Clone for StepSummary
Source§fn clone(&self) -> StepSummary
fn clone(&self) -> StepSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StepSummary
impl Debug for StepSummary
Source§impl Default for StepSummary
impl Default for StepSummary
Source§fn default() -> StepSummary
fn default() -> StepSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StepSummary
impl<'de> Deserialize<'de> for StepSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StepSummary
impl PartialEq for StepSummary
impl StructuralPartialEq for StepSummary
Auto Trait Implementations§
impl Freeze for StepSummary
impl RefUnwindSafe for StepSummary
impl Send for StepSummary
impl Sync for StepSummary
impl Unpin for StepSummary
impl UnwindSafe for StepSummary
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
Mutably borrows from an owned value. Read more