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

RespondActivityTaskFailedInput

import type { RespondActivityTaskFailedInput } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";
interface RespondActivityTaskFailedInput {
details?: string | null;
reason?: string | null;
taskToken: string;
}

§Properties

§
details?: string | null
[src]

Detailed information about the failure.

§
reason?: string | null
[src]

Description of the error that may assist in diagnostics.

§
taskToken: string
[src]

The taskToken of the "ActivityTask".

! IMPORTANT: ! taskToken is generated by the service and should be treated as an opaque value. ! If the task is passed to another process, its taskToken must also be passed. ! This enables it to provide its progress and respond with results.