[][src]Struct rusoto_sagemaker::ListTrainingJobsRequest

pub struct ListTrainingJobsRequest {
    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>,
    pub status_equals: Option<String>,
}

Fields

A filter that returns only training jobs created after the specified time (timestamp).

A filter that returns only training jobs created before the specified time (timestamp).

A filter that returns only training jobs modified after the specified time (timestamp).

A filter that returns only training jobs modified before the specified time (timestamp).

The maximum number of training jobs to return in the response.

A string in the training job name. This filter returns only training jobs whose name contains the specified string.

If the result of the previous ListTrainingJobs request was truncated, the response includes a NextToken. To retrieve the next set of training jobs, use the token in the next request.

The field to sort results by. The default is CreationTime.

The sort order for results. The default is Ascending.

A filter that retrieves only training jobs with a specific status.

Trait Implementations

impl Clone for ListTrainingJobsRequest
[src]

Performs copy-assignment from source. Read more

impl Default for ListTrainingJobsRequest
[src]

impl PartialEq<ListTrainingJobsRequest> for ListTrainingJobsRequest
[src]

impl Debug for ListTrainingJobsRequest
[src]

impl Serialize for ListTrainingJobsRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T