Struct rusoto_emr::CancelStepsInfo[][src]

pub struct CancelStepsInfo {
    pub reason: Option<String>,
    pub status: Option<String>,
    pub step_id: Option<String>,
}

Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0.

Fields

The reason for the failure if the CancelSteps request fails.

The status of a CancelSteps Request. The value may be SUBMITTED or FAILED.

The encrypted StepId of a step.

Trait Implementations

impl Default for CancelStepsInfo
[src]

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

impl Debug for CancelStepsInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for CancelStepsInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CancelStepsInfo
[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