Class: Aws::States::Types::LambdaFunctionScheduledEventDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-states/lib/aws-sdk-states/types.rb

Overview

Contains details about a Lambda function scheduled during an execution.

Constant Summary collapse

SENSITIVE =
[:input]

Instance Attribute Summary collapse

Instance Attribute Details

#inputString

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

Returns:

  • (String)


2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164

class LambdaFunctionScheduledEventDetails < Struct.new(
  :resource,
  :input,
  :input_details,
  :timeout_in_seconds,
  :task_credentials)
  SENSITIVE = [:input]
  include Aws::Structure
end

#input_detailsTypes::HistoryEventExecutionDataDetails

Contains details about input for an execution history event.



2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164

class LambdaFunctionScheduledEventDetails < Struct.new(
  :resource,
  :input,
  :input_details,
  :timeout_in_seconds,
  :task_credentials)
  SENSITIVE = [:input]
  include Aws::Structure
end

#resourceString

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

Returns:

  • (String)


2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164

class LambdaFunctionScheduledEventDetails < Struct.new(
  :resource,
  :input,
  :input_details,
  :timeout_in_seconds,
  :task_credentials)
  SENSITIVE = [:input]
  include Aws::Structure
end

#task_credentialsTypes::TaskCredentials

The credentials that Step Functions uses for the task.



2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164

class LambdaFunctionScheduledEventDetails < Struct.new(
  :resource,
  :input,
  :input_details,
  :timeout_in_seconds,
  :task_credentials)
  SENSITIVE = [:input]
  include Aws::Structure
end

#timeout_in_secondsInteger

The maximum allowed duration of the Lambda function.

Returns:

  • (Integer)


2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164

class LambdaFunctionScheduledEventDetails < Struct.new(
  :resource,
  :input,
  :input_details,
  :timeout_in_seconds,
  :task_credentials)
  SENSITIVE = [:input]
  include Aws::Structure
end