Class: Aws::Lambda::Types::ExecutionStartedDetails

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

Overview

Details about a durable execution that started.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#execution_timeoutInteger

The maximum amount of time that the durable execution is allowed to run, in seconds.

Returns:

  • (Integer)


3349
3350
3351
3352
3353
3354
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3349

class ExecutionStartedDetails < Struct.new(
  :input,
  :execution_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#inputTypes::EventInput

The input payload provided for the durable execution.

Returns:



3349
3350
3351
3352
3353
3354
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3349

class ExecutionStartedDetails < Struct.new(
  :input,
  :execution_timeout)
  SENSITIVE = []
  include Aws::Structure
end