#[non_exhaustive]pub struct ListBuildsInputBuilder { /* private fields */ }
Expand description
A builder for ListBuildsInput
.
Implementations§
source§impl ListBuildsInputBuilder
impl ListBuildsInputBuilder
sourcepub fn sort_order(self, input: SortOrderType) -> Self
pub fn sort_order(self, input: SortOrderType) -> Self
The order to list build IDs. Valid values include:
-
ASCENDING
: List the build IDs in ascending order by build ID. -
DESCENDING
: List the build IDs in descending order by build ID.
sourcepub fn set_sort_order(self, input: Option<SortOrderType>) -> Self
pub fn set_sort_order(self, input: Option<SortOrderType>) -> Self
The order to list build IDs. Valid values include:
-
ASCENDING
: List the build IDs in ascending order by build ID. -
DESCENDING
: List the build IDs in descending order by build ID.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn build(self) -> Result<ListBuildsInput, BuildError>
pub fn build(self) -> Result<ListBuildsInput, BuildError>
Consumes the builder and constructs a ListBuildsInput
.
Trait Implementations§
source§impl Clone for ListBuildsInputBuilder
impl Clone for ListBuildsInputBuilder
source§fn clone(&self) -> ListBuildsInputBuilder
fn clone(&self) -> ListBuildsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListBuildsInputBuilder
impl Debug for ListBuildsInputBuilder
source§impl Default for ListBuildsInputBuilder
impl Default for ListBuildsInputBuilder
source§fn default() -> ListBuildsInputBuilder
fn default() -> ListBuildsInputBuilder
source§impl PartialEq<ListBuildsInputBuilder> for ListBuildsInputBuilder
impl PartialEq<ListBuildsInputBuilder> for ListBuildsInputBuilder
source§fn eq(&self, other: &ListBuildsInputBuilder) -> bool
fn eq(&self, other: &ListBuildsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.