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

ListProjectsInput

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

§Properties

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

A filter that returns the projects that were created after a specified time.

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

A filter that returns the projects that were created before a specified time.

§
MaxResults?: number | null
[src]

The maximum number of projects to return in the response.

§
NameContains?: string | null
[src]

A filter that returns the projects whose name contains a specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: ProjectSortBy | null
[src]

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

§
SortOrder?: ProjectSortOrder | null
[src]

The sort order for results. The default is Ascending.