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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/aws-sdk-states/types.rb', line 1523

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

#input_detailsTypes::HistoryEventExecutionDataDetails

Contains details about input for an execution history event.



1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/aws-sdk-states/types.rb', line 1523

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

#resourceString

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

Returns:

  • (String)


1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/aws-sdk-states/types.rb', line 1523

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

#timeout_in_secondsInteger

The maximum allowed duration of the lambda function.

Returns:

  • (Integer)


1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/aws-sdk-states/types.rb', line 1523

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