Class: Aws::Lambda::Types::ExecutionStartedDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ExecutionStartedDetails
- 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
-
#execution_timeout ⇒ Integer
The maximum amount of time that the durable execution is allowed to run, in seconds.
-
#input ⇒ Types::EventInput
The input payload provided for the durable execution.
Instance Attribute Details
#execution_timeout ⇒ Integer
The maximum amount of time that the durable execution is allowed to run, in seconds.
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 |
#input ⇒ Types::EventInput
The input payload provided for the durable execution.
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 |