Class: Aws::Appflow::Types::ExecutionResult
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Appflow::Types::ExecutionResult
 
- Includes:
- Structure
- Defined in:
- 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. 
- 
  
    
      #max_page_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. 
- 
  
    
      #num_parallel_processes  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of processes that Amazon AppFlow ran at the same time when it retrieved your data. 
- 
  
    
      #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.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end | 
#bytes_written ⇒ Integer
The total number of bytes written as a result of the flow run.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end | 
#error_info ⇒ Types::ErrorInfo
Provides any error message information related to the flow run.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end | 
#max_page_size ⇒ Integer
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end | 
#num_parallel_processes ⇒ Integer
The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end | 
#records_processed ⇒ Integer
The number of records processed in the flow run.
| 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 | # File 'lib/aws-sdk-appflow/types.rb', line 2516 class ExecutionResult < Struct.new( :error_info, :bytes_processed, :bytes_written, :records_processed, :num_parallel_processes, :max_page_size) SENSITIVE = [] include Aws::Structure end |