Struct rusoto_codepipeline::ListPipelineExecutionsOutput[][src]

pub struct ListPipelineExecutionsOutput {
    pub next_token: Option<String>,
    pub pipeline_execution_summaries: Option<Vec<PipelineExecutionSummary>>,
}

Represents the output of a ListPipelineExecutions action.

Fields

A token that can be used in the next ListPipelineExecutions call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.

A list of executions in the history of a pipeline.

Trait Implementations

impl Default for ListPipelineExecutionsOutput
[src]

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

impl Debug for ListPipelineExecutionsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPipelineExecutionsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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