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

LambdaFunctionCompletedEventAttributes

import type { LambdaFunctionCompletedEventAttributes } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";

Provides the details of the LambdaFunctionCompleted event. It isn't set for other event types.

interface LambdaFunctionCompletedEventAttributes {
result?: string | null;
scheduledEventId: number;
startedEventId: number;
}

§Properties

§
result?: string | null
[src]

The results of the Lambda task.

§
scheduledEventId: number
[src]

The ID of the LambdaFunctionScheduled event that was recorded when this Lambda task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

§
startedEventId: number
[src]

The ID of the LambdaFunctionStarted event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.