Class: Aws::States::Types::LambdaFunctionTimedOutEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LambdaFunctionTimedOutEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a Lambda function timeout that occurred during an execution.
Constant Summary collapse
- SENSITIVE =
[:error, :cause]
Instance Attribute Summary collapse
-
#cause ⇒ String
A more detailed explanation of the cause of the timeout.
-
#error ⇒ String
The error code of the failure.
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the timeout.
2421 2422 2423 2424 2425 2426 |
# File 'lib/aws-sdk-states/types.rb', line 2421 class LambdaFunctionTimedOutEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
2421 2422 2423 2424 2425 2426 |
# File 'lib/aws-sdk-states/types.rb', line 2421 class LambdaFunctionTimedOutEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |