pub struct ListBuildBatchesForProjectInput {
pub filter: Option<BuildBatchFilter>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub project_name: 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 ListBuildBatchesForProject
. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
project_name: Option<String>
The name of the project.
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 ListBuildBatchesForProjectInput
impl Clone for ListBuildBatchesForProjectInput
Source§fn clone(&self) -> ListBuildBatchesForProjectInput
fn clone(&self) -> ListBuildBatchesForProjectInput
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 Default for ListBuildBatchesForProjectInput
impl Default for ListBuildBatchesForProjectInput
Source§fn default() -> ListBuildBatchesForProjectInput
fn default() -> ListBuildBatchesForProjectInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBuildBatchesForProjectInput
impl PartialEq for ListBuildBatchesForProjectInput
Source§fn eq(&self, other: &ListBuildBatchesForProjectInput) -> bool
fn eq(&self, other: &ListBuildBatchesForProjectInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListBuildBatchesForProjectInput
Auto Trait Implementations§
impl Freeze for ListBuildBatchesForProjectInput
impl RefUnwindSafe for ListBuildBatchesForProjectInput
impl Send for ListBuildBatchesForProjectInput
impl Sync for ListBuildBatchesForProjectInput
impl Unpin for ListBuildBatchesForProjectInput
impl UnwindSafe for ListBuildBatchesForProjectInput
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