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

PollForTaskOutput

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

Contains the output of PollForTask.

interface PollForTaskOutput {
taskObject?: TaskObject | null;
}

§Properties

§
taskObject?: TaskObject | null
[src]

The information needed to complete the task that is being assigned to the task runner. One of the fields returned in this object is taskId, which contains an identifier for the task being assigned. The calling task runner uses taskId in subsequent calls to "ReportTaskProgress" and "SetTaskStatus".