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

ScheduleLambdaFunctionDecisionAttributes

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

Decision attributes specified in scheduleLambdaFunctionDecisionAttributes within the list of decisions decisions passed to "RespondDecisionTaskCompleted".

interface ScheduleLambdaFunctionDecisionAttributes {
control?: string | null;
id: string;
input?: string | null;
name: string;
startToCloseTimeout?: string | null;
}

§Properties

§
control?: string | null
[src]

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

§
id: string
[src]

A string that identifies the Lambda function execution in the event history.

§
input?: string | null
[src]

The optional input data to be supplied to the Lambda function.

§
name: string
[src]

The name, or ARN, of the Lambda function to schedule.

§
startToCloseTimeout?: string | null
[src]

The timeout value, in seconds, after which the Lambda function is considered to be failed once it has started. This can be any integer from 1-300 (1s-5m). If no value is supplied, than a default value of 300s is assumed.