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

ListModelCardExportJobsRequest

import type { ListModelCardExportJobsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListModelCardExportJobsRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
MaxResults?: number | null;
ModelCardExportJobNameContains?: string | null;
ModelCardName: string;
ModelCardVersion?: number | null;
NextToken?: string | null;
SortBy?: ModelCardExportJobSortBy | null;
SortOrder?: ModelCardExportJobSortOrder | null;
StatusEquals?: ModelCardExportJobStatus | null;
}

§Properties

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

Only list model card export jobs that were created after the time specified.

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

Only list model card export jobs that were created before the time specified.

§
MaxResults?: number | null
[src]

The maximum number of model card export jobs to list.

§
ModelCardExportJobNameContains?: string | null
[src]

Only list model card export jobs with names that contain the specified string.

§
ModelCardName: string
[src]

List export jobs for the model card with the specified name.

§
ModelCardVersion?: number | null
[src]

List export jobs for the model card with the specified version.

§
NextToken?: string | null
[src]

If the response to a previous ListModelCardExportJobs request was truncated, the response includes a NextToken. To retrieve the next set of model card export jobs, use the token in the next request.

§

Sort model card export jobs by either name or creation time. Sorts by creation time by default.

§

Sort model card export jobs by ascending or descending order.

§
StatusEquals?: ModelCardExportJobStatus | null
[src]

Only list model card export jobs with the specified status.