Struct rusoto_emr::FailureDetails[][src]

pub struct FailureDetails {
    pub log_file: Option<String>,
    pub message: Option<String>,
    pub reason: Option<String>,
}

The details of the step failure. The service attempts to detect the root cause for many common failures.

Fields

The path to the log file where the step failure root cause was originally recorded.

The descriptive message including the error the EMR service has identified as the cause of step failure. This is text from an error log that describes the root cause of the failure.

The reason for the step failure. In the case where the service cannot successfully determine the root cause of the failure, it returns "Unknown Error" as a reason.

Trait Implementations

impl Default for FailureDetails
[src]

Returns the "default value" for a type. Read more

impl Debug for FailureDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for FailureDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FailureDetails
[src]

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

This method tests for !=.

Auto Trait Implementations