Struct rusoto_codepipeline::ListPipelinesOutput[][src]

pub struct ListPipelinesOutput {
    pub next_token: Option<String>,
    pub pipelines: Option<Vec<PipelineSummary>>,
}

Represents the output of a ListPipelines action.

Fields

If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.

The list of pipelines.

Trait Implementations

impl Default for ListPipelinesOutput
[src]

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

impl Debug for ListPipelinesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPipelinesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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