Class: Aws::Appflow::Types::ErrorInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ErrorInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Provides details in the event of a failed flow, including the failure count and the related error messages.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_message ⇒ String
Specifies the error message that appears if a flow fails.
-
#put_failures_count ⇒ Integer
Specifies the failure count for the attempted flow.
Instance Attribute Details
#execution_message ⇒ String
Specifies the error message that appears if a flow fails.
2369 2370 2371 2372 2373 2374 |
# File 'lib/aws-sdk-appflow/types.rb', line 2369 class ErrorInfo < Struct.new( :put_failures_count, :execution_message) SENSITIVE = [] include Aws::Structure end |
#put_failures_count ⇒ Integer
Specifies the failure count for the attempted flow.
2369 2370 2371 2372 2373 2374 |
# File 'lib/aws-sdk-appflow/types.rb', line 2369 class ErrorInfo < Struct.new( :put_failures_count, :execution_message) SENSITIVE = [] include Aws::Structure end |