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

ListAlgorithmsInput

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

§Properties

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

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

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

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

§
MaxResults?: number | null
[src]

The maximum number of algorithms to return in the response.

§
NameContains?: string | null
[src]

A string in the algorithm name. This filter returns only algorithms whose name contains the specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: AlgorithmSortBy | null
[src]

The parameter by which to sort the results. The default is CreationTime.

§
SortOrder?: SortOrder | null
[src]

The sort order for the results. The default is Ascending.