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

SendTaskFailureInput

import type { SendTaskFailureInput } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";
interface SendTaskFailureInput {
cause?: string | null;
error?: string | null;
taskToken: string;
}

§Properties

§
cause?: string | null
[src]

A more detailed explanation of the cause of the failure.

§
error?: string | null
[src]

The error code of the failure.

§
taskToken: string
[src]

The token that represents this task. Task tokens are generated by Step Functions when tasks are assigned to a worker, or in the context object when a workflow enters a task state. See "GetActivityTaskOutput$taskToken".