Class: Aws::States::Types::ExecutionAbortedEventDetails

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Contains details about an abort of an 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)


1221
1222
1223
1224
1225
1226
# File 'lib/aws-sdk-states/types.rb', line 1221

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

#errorString

The error code of the failure.

Returns:

  • (String)


1221
1222
1223
1224
1225
1226
# File 'lib/aws-sdk-states/types.rb', line 1221

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