Class: Aws::States::Types::LambdaFunctionFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LambdaFunctionFailedEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about a Lambda function that failed during an execution.
Constant Summary collapse
- SENSITIVE =
[:error, :cause]
Instance Attribute Summary collapse
-
#cause ⇒ String
A more detailed explanation of the cause of the failure.
-
#error ⇒ String
The error code of the failure.
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
2396 2397 2398 2399 2400 2401 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2396 class LambdaFunctionFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
2396 2397 2398 2399 2400 2401 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2396 class LambdaFunctionFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |