#[non_exhaustive]pub struct ListPipelinesInputBuilder { /* private fields */ }
Expand description
A builder for ListPipelinesInput
.
Implementations§
source§impl ListPipelinesInputBuilder
impl ListPipelinesInputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.
sourcepub fn build(self) -> Result<ListPipelinesInput, BuildError>
pub fn build(self) -> Result<ListPipelinesInput, BuildError>
Consumes the builder and constructs a ListPipelinesInput
.
source§impl ListPipelinesInputBuilder
impl ListPipelinesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListPipelinesOutput, SdkError<ListPipelinesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListPipelinesOutput, SdkError<ListPipelinesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListPipelinesInputBuilder
impl Clone for ListPipelinesInputBuilder
source§fn clone(&self) -> ListPipelinesInputBuilder
fn clone(&self) -> ListPipelinesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListPipelinesInputBuilder
impl Debug for ListPipelinesInputBuilder
source§impl Default for ListPipelinesInputBuilder
impl Default for ListPipelinesInputBuilder
source§fn default() -> ListPipelinesInputBuilder
fn default() -> ListPipelinesInputBuilder
source§impl PartialEq for ListPipelinesInputBuilder
impl PartialEq for ListPipelinesInputBuilder
source§fn eq(&self, other: &ListPipelinesInputBuilder) -> bool
fn eq(&self, other: &ListPipelinesInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.