Struct aws_sdk_datapipeline::input::list_pipelines_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for ListPipelinesInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call ListPipelines
with the marker value from the previous call to retrieve the next set of results.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call ListPipelines
with the marker value from the previous call to retrieve the next set of results.
sourcepub fn build(self) -> Result<ListPipelinesInput, BuildError>
pub fn build(self) -> Result<ListPipelinesInput, BuildError>
Consumes the builder and constructs a ListPipelinesInput
.
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