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

ListModelCardsRequest

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

§Properties

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

Only list model cards that were created after the time specified.

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

Only list model cards that were created before the time specified.

§
MaxResults?: number | null
[src]

The maximum number of model cards to list.

§
ModelCardStatus?: ModelCardStatus | null
[src]

Only list model cards with the specified approval status.

§
NameContains?: string | null
[src]

Only list model cards with names that contain the specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: ModelCardSortBy | null
[src]

Sort model cards by either name or creation time. Sorts by creation time by default.

§
SortOrder?: ModelCardSortOrder | null
[src]

Sort model cards by ascending or descending order.