pub struct ListBuildBatchesInput {
pub filter: Option<BuildBatchFilter>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub sort_order: Option<String>,
}Fields§
§filter: Option<BuildBatchFilter>A BuildBatchFilter object that specifies the filters for the search.
max_results: Option<i64>The maximum number of results to return.
next_token: Option<String>The nextToken value returned from a previous call to ListBuildBatches. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
sort_order: Option<String>Specifies the sort order of the returned items. Valid values include:
-
ASCENDING: List the batch build identifiers in ascending order by identifier. -
DESCENDING: List the batch build identifiers in descending order by identifier.
Trait Implementations§
Source§impl Clone for ListBuildBatchesInput
impl Clone for ListBuildBatchesInput
Source§fn clone(&self) -> ListBuildBatchesInput
fn clone(&self) -> ListBuildBatchesInput
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 ListBuildBatchesInput
impl Debug for ListBuildBatchesInput
Source§impl Default for ListBuildBatchesInput
impl Default for ListBuildBatchesInput
Source§fn default() -> ListBuildBatchesInput
fn default() -> ListBuildBatchesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBuildBatchesInput
impl PartialEq for ListBuildBatchesInput
Source§impl Serialize for ListBuildBatchesInput
impl Serialize for ListBuildBatchesInput
impl StructuralPartialEq for ListBuildBatchesInput
Auto Trait Implementations§
impl Freeze for ListBuildBatchesInput
impl RefUnwindSafe for ListBuildBatchesInput
impl Send for ListBuildBatchesInput
impl Sync for ListBuildBatchesInput
impl Unpin for ListBuildBatchesInput
impl UnwindSafe for ListBuildBatchesInput
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