Class: Aws::Finspace::Types::ErrorInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::ErrorInfo
- Includes:
- Structure
- Defined in:
- 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
-
#error_message ⇒ String
Specifies the error message that appears if a flow fails.
-
#error_type ⇒ String
Specifies the type of error.
Instance Attribute Details
#error_message ⇒ String
Specifies the error message that appears if a flow fails.
1862 1863 1864 1865 1866 1867 |
# File 'lib/aws-sdk-finspace/types.rb', line 1862 class ErrorInfo < Struct.new( :error_message, :error_type) SENSITIVE = [] include Aws::Structure end |
#error_type ⇒ String
Specifies the type of error.
1862 1863 1864 1865 1866 1867 |
# File 'lib/aws-sdk-finspace/types.rb', line 1862 class ErrorInfo < Struct.new( :error_message, :error_type) SENSITIVE = [] include Aws::Structure end |