[][src]Struct rusoto_sagemaker::ListDeviceFleetsRequest

pub struct ListDeviceFleetsRequest {
    pub creation_time_after: Option<f64>,
    pub creation_time_before: Option<f64>,
    pub last_modified_time_after: Option<f64>,
    pub last_modified_time_before: Option<f64>,
    pub max_results: Option<i64>,
    pub name_contains: Option<String>,
    pub next_token: Option<String>,
    pub sort_by: Option<String>,
    pub sort_order: Option<String>,
}

Fields

creation_time_after: Option<f64>

Filter fleets where packaging job was created after specified time.

creation_time_before: Option<f64>

Filter fleets where the edge packaging job was created before specified time.

last_modified_time_after: Option<f64>

Select fleets where the job was updated after X

last_modified_time_before: Option<f64>

Select fleets where the job was updated before X

max_results: Option<i64>

The maximum number of results to select.

name_contains: Option<String>

Filter for fleets containing this name in their fleet device name.

next_token: Option<String>

The response from the last list when returning a list large enough to need tokening.

sort_by: Option<String>

The column to sort by.

sort_order: Option<String>

What direction to sort in.

Trait Implementations

impl Clone for ListDeviceFleetsRequest[src]

impl Debug for ListDeviceFleetsRequest[src]

impl Default for ListDeviceFleetsRequest[src]

impl PartialEq<ListDeviceFleetsRequest> for ListDeviceFleetsRequest[src]

impl Serialize for ListDeviceFleetsRequest[src]

impl StructuralPartialEq for ListDeviceFleetsRequest[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.