Class: Aws::SESV2::Types::ExportStatistics
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::ExportStatistics
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
Statistics about the execution of an export job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #exported_records_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of records that were exported to the final export file.
 - 
  
    
      #processed_records_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of records that were processed to generate the final export file.
 
Instance Attribute Details
#exported_records_count ⇒ Integer
The number of records that were exported to the final export file.
This value might not be available for all export source types
      2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2596 class ExportStatistics < Struct.new( :processed_records_count, :exported_records_count) SENSITIVE = [] include Aws::Structure end  | 
  
#processed_records_count ⇒ Integer
The number of records that were processed to generate the final export file.
      2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2596 class ExportStatistics < Struct.new( :processed_records_count, :exported_records_count) SENSITIVE = [] include Aws::Structure end  |