Struct rusoto_ssm::FailureDetails[][src]

pub struct FailureDetails {
    pub details: Option<HashMap<String, Vec<String>>>,
    pub failure_stage: Option<String>,
    pub failure_type: Option<String>,
}

Information about an Automation failure.

Fields

Detailed information about the Automation step failure.

The stage of the Automation execution when the failure occurred. The stages include the following: InputValidation, PreVerification, Invocation, PostVerification.

The type of Automation failure. Failure types include the following: Action, Permission, Throttling, Verification, Internal.

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