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

TaskRunFilterCriteria

import type { TaskRunFilterCriteria } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

The criteria that are used to filter the task runs for the machine learning transform.

interface TaskRunFilterCriteria {
StartedAfter?: Date | number | null;
StartedBefore?: Date | number | null;
Status?: TaskStatusType | null;
TaskRunType?: TaskType | null;
}

§Properties

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

Filter on task runs started after this date.

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

Filter on task runs started before this date.

§
Status?: TaskStatusType | null
[src]

The current status of the task run.

§
TaskRunType?: TaskType | null
[src]

The type of task run.