[][src]Struct rusoto_sagemaker_a2i_runtime::ListHumanLoopsRequest

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

Fields

creation_time_after: Option<f64>

(Optional) The timestamp of the date when you want the human loops to begin in ISO 8601 format. For example, 2020-02-24.

creation_time_before: Option<f64>

(Optional) The timestamp of the date before which you want the human loops to begin in ISO 8601 format. For example, 2020-02-24.

flow_definition_arn: String

The Amazon Resource Name (ARN) of a flow definition.

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 is returned in the output. You can use this token to display the next page of results.

next_token: Option<String>

A token to display the next page of results.

sort_order: Option<String>

Optional. The order for displaying results. Valid values: Ascending and Descending.

Trait Implementations

impl Clone for ListHumanLoopsRequest[src]

impl Debug for ListHumanLoopsRequest[src]

impl Default for ListHumanLoopsRequest[src]

impl PartialEq<ListHumanLoopsRequest> for ListHumanLoopsRequest[src]

impl Serialize for ListHumanLoopsRequest[src]

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