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

TaskRun

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

The sampling parameters that are associated with the machine learning transform.

interface TaskRun {
CompletedOn?: Date | number | null;
ErrorString?: string | null;
ExecutionTime?: number | null;
LastModifiedOn?: Date | number | null;
LogGroupName?: string | null;
Properties?: TaskRunProperties | null;
StartedOn?: Date | number | null;
Status?: TaskStatusType | null;
TaskRunId?: string | null;
TransformId?: string | null;
}

§Properties

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

The last point in time that the requested task run was completed.

§
ErrorString?: string | null
[src]

The list of error strings associated with this task run.

§
ExecutionTime?: number | null
[src]

The amount of time (in seconds) that the task run consumed resources.

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

The last point in time that the requested task run was updated.

§
LogGroupName?: string | null
[src]

The names of the log group for secure logging, associated with this task run.

§
Properties?: TaskRunProperties | null
[src]

Specifies configuration properties associated with this task run.

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

The date and time that this task run started.

§
Status?: TaskStatusType | null
[src]

The current status of the requested task run.

§
TaskRunId?: string | null
[src]

The unique identifier for this task run.

§
TransformId?: string | null
[src]

The unique identifier for the transform.