Class: Aws::States::Types::MapRunFailedEventDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#causeString

A more detailed explanation of the cause of the failure.

Returns:

  • (String)


2795
2796
2797
2798
2799
2800
# File 'lib/aws-sdk-states/types.rb', line 2795

class MapRunFailedEventDetails < Struct.new(
  :error,
  :cause)
  SENSITIVE = [:error, :cause]
  include Aws::Structure
end

#errorString

The error code of the Map Run failure.

Returns:

  • (String)


2795
2796
2797
2798
2799
2800
# File 'lib/aws-sdk-states/types.rb', line 2795

class MapRunFailedEventDetails < Struct.new(
  :error,
  :cause)
  SENSITIVE = [:error, :cause]
  include Aws::Structure
end