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

RespondActivityTaskCompletedInput

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

§Properties

§
result?: string | null
[src]

The result of the activity task. It is a free form string that is implementation specific.

§
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.