[][src]Struct rusoto_sagemaker::ListFlowDefinitionsRequest

pub struct ListFlowDefinitionsRequest {
    pub creation_time_after: Option<f64>,
    pub creation_time_before: Option<f64>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub sort_order: Option<String>,
}

Fields

creation_time_after: Option<f64>

A filter that returns only flow definitions with a creation time greater than or equal to the specified timestamp.

creation_time_before: Option<f64>

A filter that returns only flow definitions that were created before the specified timestamp.

max_results: Option<i64>

The total number of items to return. If the total number of available items is more than the value specified in MaxResults, then a NextToken will be provided in the output that you can use to resume pagination.

next_token: Option<String>

A token to resume pagination.

sort_order: Option<String>

An optional value that specifies whether you want the results sorted in Ascending or Descending order.

Trait Implementations

impl Clone for ListFlowDefinitionsRequest[src]

impl Debug for ListFlowDefinitionsRequest[src]

impl Default for ListFlowDefinitionsRequest[src]

impl PartialEq<ListFlowDefinitionsRequest> for ListFlowDefinitionsRequest[src]

impl Serialize for ListFlowDefinitionsRequest[src]

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