pub struct Builder { /* private fields */ }
Expand description
A builder for ListPipelinesInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn ascending(self, input: impl Into<String>) -> Self
pub fn ascending(self, input: impl Into<String>) -> Self
To list pipelines in chronological order by the date and time that they were created, enter true
. To list pipelines in reverse chronological order, enter false
.
sourcepub fn set_ascending(self, input: Option<String>) -> Self
pub fn set_ascending(self, input: Option<String>) -> Self
To list pipelines in chronological order by the date and time that they were created, enter true
. To list pipelines in reverse chronological order, enter false
.
sourcepub fn page_token(self, input: impl Into<String>) -> Self
pub fn page_token(self, input: impl Into<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn set_page_token(self, input: Option<String>) -> Self
pub fn set_page_token(self, input: Option<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn build(self) -> Result<ListPipelinesInput, BuildError>
pub fn build(self) -> Result<ListPipelinesInput, BuildError>
Consumes the builder and constructs a ListPipelinesInput
.