Class: Aws::Finspace::Types::ErrorInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb

Overview

Provides details in the event of a failed flow, including the error type and the related error message.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_messageString

Specifies the error message that appears if a flow fails.

Returns:

  • (String)


1855
1856
1857
1858
1859
1860
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 1855

class ErrorInfo < Struct.new(
  :error_message,
  :error_type)
  SENSITIVE = []
  include Aws::Structure
end

#error_typeString

Specifies the type of error.

Returns:

  • (String)


1855
1856
1857
1858
1859
1860
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 1855

class ErrorInfo < Struct.new(
  :error_message,
  :error_type)
  SENSITIVE = []
  include Aws::Structure
end