[][src]Struct rusoto_codebuild::ListBuildBatchesInput

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

impl Clone for ListBuildBatchesInput[src]

impl Debug for ListBuildBatchesInput[src]

impl Default for ListBuildBatchesInput[src]

impl PartialEq<ListBuildBatchesInput> for ListBuildBatchesInput[src]

impl Serialize for ListBuildBatchesInput[src]

impl StructuralPartialEq for ListBuildBatchesInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.