Struct aws_sdk_emr::model::StepStatus [−][src]
#[non_exhaustive]pub struct StepStatus {
pub state: Option<StepState>,
pub state_change_reason: Option<StepStateChangeReason>,
pub failure_details: Option<FailureDetails>,
pub timeline: Option<StepTimeline>,
}Expand description
The execution status details of the cluster step.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.state: Option<StepState>The execution state of the cluster step.
state_change_reason: Option<StepStateChangeReason>The reason for the step execution status change.
failure_details: Option<FailureDetails>The details for the step failure including reason, message, and log file path where the root cause was identified.
timeline: Option<StepTimeline>The timeline of the cluster step status over time.
Implementations
Creates a new builder-style object to manufacture StepStatus
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 StepStatus
impl Send for StepStatus
impl Sync for StepStatus
impl Unpin for StepStatus
impl UnwindSafe for StepStatus
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