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

LambdaFunctionScheduledEventAttributes

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

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

interface LambdaFunctionScheduledEventAttributes {
control?: string | null;
decisionTaskCompletedEventId: number;
id: string;
input?: string | null;
name: string;
startToCloseTimeout?: string | null;
}

§Properties

§
control?: string | null
[src]

Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.

§
decisionTaskCompletedEventId: number
[src]

The ID of the LambdaFunctionCompleted event corresponding to the decision that resulted in scheduling this activity task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

§
id: string
[src]

The unique ID of the Lambda task.

§
input?: string | null
[src]

The input provided to the Lambda task.

§
name: string
[src]

The name of the Lambda function.

§
startToCloseTimeout?: string | null
[src]

The maximum amount of time a worker can take to process the Lambda task.