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

SetTaskStatusInput

import type { SetTaskStatusInput } from "https://aws-api.deno.dev/v0.4/services/datapipeline.ts?docs=full";

Contains the parameters for SetTaskStatus.

interface SetTaskStatusInput {
errorId?: string | null;
errorMessage?: string | null;
errorStackTrace?: string | null;
taskId: string;
taskStatus: TaskStatus;
}

§Properties

§
errorId?: string | null
[src]

If an error occurred during the task, this value specifies the error code. This value is set on the physical attempt object. It is used to display error information to the user. It should not start with string "Service_" which is reserved by the system.

§
errorMessage?: string | null
[src]

If an error occurred during the task, this value specifies a text description of the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.

§
errorStackTrace?: string | null
[src]

If an error occurred during the task, this value specifies the stack trace associated with the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.

§
taskId: string
[src]

The ID of the task assigned to the task runner. This value is provided in the response for "PollForTask".

§
taskStatus: TaskStatus
[src]

If FINISHED, the task successfully completed. If FAILED, the task ended unsuccessfully. Preconditions use false.