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)


3292
3293
3294
3295
3296
3297
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3292

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

#inputTypes::EventInput

The input payload provided for the durable execution.

Returns:



3292
3293
3294
3295
3296
3297
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3292

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