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

LambdaFunctionScheduledEventDetails

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

Contains details about a lambda function scheduled during an execution.

interface LambdaFunctionScheduledEventDetails {
input?: string | null;
inputDetails?: HistoryEventExecutionDataDetails | null;
resource: string;
timeoutInSeconds?: number | null;
}

§Properties

§
input?: string | null
[src]

The JSON data input to the lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§

Contains details about input for an execution history event.

§
resource: string
[src]

The Amazon Resource Name (ARN) of the scheduled lambda function.

§
timeoutInSeconds?: number | null
[src]

The maximum allowed duration of the lambda function.