pub struct ListBuildsInput {
pub next_token: Option<String>,
pub sort_order: Option<String>,
}
Fields§
§next_token: Option<String>
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.
sort_order: Option<String>
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.
Trait Implementations§
Source§impl Clone for ListBuildsInput
impl Clone for ListBuildsInput
Source§fn clone(&self) -> ListBuildsInput
fn clone(&self) -> ListBuildsInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListBuildsInput
impl Debug for ListBuildsInput
Source§impl Default for ListBuildsInput
impl Default for ListBuildsInput
Source§fn default() -> ListBuildsInput
fn default() -> ListBuildsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBuildsInput
impl PartialEq for ListBuildsInput
Source§impl Serialize for ListBuildsInput
impl Serialize for ListBuildsInput
impl StructuralPartialEq for ListBuildsInput
Auto Trait Implementations§
impl Freeze for ListBuildsInput
impl RefUnwindSafe for ListBuildsInput
impl Send for ListBuildsInput
impl Sync for ListBuildsInput
impl Unpin for ListBuildsInput
impl UnwindSafe for ListBuildsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more