Class: Aws::States::Types::MapRunFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunFailedEventDetails
- Defined in:
- gems/aws-sdk-states/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.
3080 3081 3082 3083 3084 3085 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3080 class MapRunFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the Map Run failure.
3080 3081 3082 3083 3084 3085 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3080 class MapRunFailedEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |