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

TaskSucceededEventDetails

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

Contains details about the successful completion of a task state.

interface TaskSucceededEventDetails {
output?: string | null;
outputDetails?: HistoryEventExecutionDataDetails | null;
resource: string;
resourceType: string;
}

§Properties

§
output?: string | null
[src]

The full JSON response from a resource when a task has succeeded. This response becomes the output of the related task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§

Contains details about the output of an execution history event.

§
resource: string
[src]

The service name of the resource in a task state.

§
resourceType: string
[src]

The action of the resource called by a task state.