pub struct Builder { /* private fields */ }
Expand description
A builder for ListPipelinesOutput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn pipelines(self, input: Pipeline) -> Self
pub fn pipelines(self, input: Pipeline) -> Self
Appends an item to pipelines
.
To override the contents of this collection use set_pipelines
.
An array of Pipeline
objects.
sourcepub fn set_pipelines(self, input: Option<Vec<Pipeline>>) -> Self
pub fn set_pipelines(self, input: Option<Vec<Pipeline>>) -> Self
An array of Pipeline
objects.
sourcepub fn next_page_token(self, input: impl Into<String>) -> Self
pub fn next_page_token(self, input: impl Into<String>) -> Self
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
.
sourcepub fn set_next_page_token(self, input: Option<String>) -> Self
pub fn set_next_page_token(self, input: Option<String>) -> Self
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
.
sourcepub fn build(self) -> ListPipelinesOutput
pub fn build(self) -> ListPipelinesOutput
Consumes the builder and constructs a ListPipelinesOutput
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more