Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListTrainingJobsRequest

import type { ListTrainingJobsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListTrainingJobsRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
LastModifiedTimeAfter?: Date | number | null;
LastModifiedTimeBefore?: Date | number | null;
MaxResults?: number | null;
NameContains?: string | null;
NextToken?: string | null;
SortBy?: SortBy | null;
SortOrder?: SortOrder | null;
StatusEquals?: TrainingJobStatus | null;
WarmPoolStatusEquals?: WarmPoolResourceStatus | null;
}

§Properties

§
CreationTimeAfter?: Date | number | null
[src]

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

§
CreationTimeBefore?: Date | number | null
[src]

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

§
LastModifiedTimeAfter?: Date | number | null
[src]

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

§
LastModifiedTimeBefore?: Date | number | null
[src]

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

§
MaxResults?: number | null
[src]

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

§
NameContains?: string | null
[src]

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

§
NextToken?: string | null
[src]

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.

§
SortBy?: SortBy | null
[src]

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

§
SortOrder?: SortOrder | null
[src]

The sort order for results. The default is Ascending.

§
StatusEquals?: TrainingJobStatus | null
[src]

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

§
WarmPoolStatusEquals?: WarmPoolResourceStatus | null
[src]

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