Class: Aws::States::Types::LambdaFunctionStartFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LambdaFunctionStartFailedEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a lambda function that failed to start 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.
2379 2380 2381 2382 2383 2384 |
# File 'lib/aws-sdk-states/types.rb', line 2379 class LambdaFunctionStartFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
2379 2380 2381 2382 2383 2384 |
# File 'lib/aws-sdk-states/types.rb', line 2379 class LambdaFunctionStartFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |