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

TaskObject

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

Contains information about a pipeline task that is assigned to a task runner.

interface TaskObject {
attemptId?: string | null;
objects?: {
[key: string]: PipelineObject | null | undefined;
}
| null;
pipelineId?: string | null;
taskId?: string | null;
}

§Properties

§
attemptId?: string | null
[src]

The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.

§
objects?: {
[key: string]: PipelineObject | null | undefined;
}
| null
[src]

Connection information for the location where the task runner will publish the output of the task.

§
pipelineId?: string | null
[src]

The ID of the pipeline that provided the task.

§
taskId?: string | null
[src]

An internal identifier for the task. This ID is passed to the "SetTaskStatus" and "ReportTaskProgress" actions.