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

LambdaFunctionSucceededEventDetails

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

Contains details about a lambda function that successfully terminated during an execution.

interface LambdaFunctionSucceededEventDetails {
output?: string | null;
outputDetails?: HistoryEventExecutionDataDetails | null;
}

§Properties

§
output?: string | null
[src]

The JSON data output by the lambda function. 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.