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

ListModelsInput

import type { ListModelsInput } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListModelsInput {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
MaxResults?: number | null;
NameContains?: string | null;
NextToken?: string | null;
SortBy?: ModelSortKey | null;
SortOrder?: OrderKey | null;
}

§Properties

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

A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).

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

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

§
MaxResults?: number | null
[src]

The maximum number of models to return in the response.

§
NameContains?: string | null
[src]

A string in the model name. This filter returns only models whose name contains the specified string.

§
NextToken?: string | null
[src]

If the response to a previous ListModels request was truncated, the response includes a NextToken. To retrieve the next set of models, use the token in the next request.

§
SortBy?: ModelSortKey | null
[src]

Sorts the list of results. The default is CreationTime.

§
SortOrder?: OrderKey | null
[src]

The sort order for results. The default is Descending.