#[non_exhaustive]pub struct ListPipelinesOutput {
pub pipelines: Option<Vec<Pipeline>>,
pub next_page_token: Option<String>,
}
Expand description
A list of the pipelines associated with the current AWS account.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipelines: Option<Vec<Pipeline>>
An array of Pipeline
objects.
next_page_token: Option<String>
A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
Implementations
A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
Creates a new builder-style object to manufacture ListPipelinesOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListPipelinesOutput
impl Send for ListPipelinesOutput
impl Sync for ListPipelinesOutput
impl Unpin for ListPipelinesOutput
impl UnwindSafe for ListPipelinesOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more