Struct rusoto_emr::ListStepsOutput[][src]

pub struct ListStepsOutput {
    pub marker: Option<String>,
    pub steps: Option<Vec<StepSummary>>,
}

This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.

Fields

The pagination token that indicates the next set of results to retrieve.

The filtered list of steps for the cluster.

Trait Implementations

impl Default for ListStepsOutput
[src]

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

impl Debug for ListStepsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListStepsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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