You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SWF::Types::ScheduleLambdaFunctionDecisionAttributes

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ScheduleLambdaFunctionDecisionAttributes as input to an Aws::Client method, you can use a vanilla Hash:

{
  id: "FunctionId", # required
  name: "FunctionName", # required
  control: "Data",
  input: "FunctionInput",
  start_to_close_timeout: "DurationInSecondsOptional",
}

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

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#controlString

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

Returns:

  • (String)

    The data attached to the event that the decider can use in subsequent workflow tasks.

#idString

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

Returns:

  • (String)

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

#inputString

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

Returns:

  • (String)

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

#nameString

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

Returns:

  • (String)

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

#start_to_close_timeoutString

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.

Returns:

  • (String)

    The timeout value, in seconds, after which the Lambda function is considered to be failed once it has started.