Class: Aws::States::Types::MapRunFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunFailedEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a Map Run failure event that occurred during a state machine 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 Map Run failure.
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
2987 2988 2989 2990 2991 2992 |
# File 'lib/aws-sdk-states/types.rb', line 2987 class MapRunFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the Map Run failure.
2987 2988 2989 2990 2991 2992 |
# File 'lib/aws-sdk-states/types.rb', line 2987 class MapRunFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |