Class: Aws::Appflow::Types::ExecutionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ExecutionResult
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Specifies the end result of the flow run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes_processed ⇒ Integer
The total number of bytes processed by the flow run.
-
#bytes_written ⇒ Integer
The total number of bytes written as a result of the flow run.
-
#error_info ⇒ Types::ErrorInfo
Provides any error message information related to the flow run.
-
#records_processed ⇒ Integer
The number of records processed in the flow run.
Instance Attribute Details
#bytes_processed ⇒ Integer
The total number of bytes processed by the flow run.
2352 2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2352 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed) SENSITIVE = [] include Aws::Structure end |
#bytes_written ⇒ Integer
The total number of bytes written as a result of the flow run.
2352 2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2352 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed) SENSITIVE = [] include Aws::Structure end |
#error_info ⇒ Types::ErrorInfo
Provides any error message information related to the flow run.
2352 2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2352 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed) SENSITIVE = [] include Aws::Structure end |
#records_processed ⇒ Integer
The number of records processed in the flow run.
2352 2353 2354 2355 2356 2357 2358 2359 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2352 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed) SENSITIVE = [] include Aws::Structure end |