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

LambdaFunctionFailedEventAttributes

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

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

interface LambdaFunctionFailedEventAttributes {
details?: string | null;
reason?: string | null;
scheduledEventId: number;
startedEventId: number;
}

§Properties

§
details?: string | null
[src]

The details of the failure.

§
reason?: string | null
[src]

The reason provided for the failure.

§
scheduledEventId: number
[src]

The ID of the LambdaFunctionScheduled event that was recorded when this activity 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.