Class: Aws::States::Types::EvaluationFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::EvaluationFailedEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about an evaluation failure that occurred while processing a state, for example, when a JSONata expression throws an error. This event will only be present in state machines that have QueryLanguage set to JSONata, or individual states set to JSONata.
Constant Summary collapse
- SENSITIVE =
[:error, :cause, :location]
Instance Attribute Summary collapse
-
#cause ⇒ String
A more detailed explanation of the cause of the failure.
-
#error ⇒ String
The error code of the failure.
-
#location ⇒ String
The location of the field in the state in which the evaluation error occurred.
-
#state ⇒ String
The name of the state in which the evaluation error occurred.
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
1390 1391 1392 1393 1394 1395 1396 1397 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1390 class EvaluationFailedEventDetails < Struct.new( :error, :cause, :location, :state) SENSITIVE = [:error, :cause, :location] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
1390 1391 1392 1393 1394 1395 1396 1397 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1390 class EvaluationFailedEventDetails < Struct.new( :error, :cause, :location, :state) SENSITIVE = [:error, :cause, :location] include Aws::Structure end |
#location ⇒ String
The location of the field in the state in which the evaluation error occurred.
1390 1391 1392 1393 1394 1395 1396 1397 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1390 class EvaluationFailedEventDetails < Struct.new( :error, :cause, :location, :state) SENSITIVE = [:error, :cause, :location] include Aws::Structure end |
#state ⇒ String
The name of the state in which the evaluation error occurred.
1390 1391 1392 1393 1394 1395 1396 1397 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1390 class EvaluationFailedEventDetails < Struct.new( :error, :cause, :location, :state) SENSITIVE = [:error, :cause, :location] include Aws::Structure end |