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
2604 2605 2606 2607 2608 2609 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2604 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.
2604 2605 2606 2607 2608 2609 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2604 class ExportStatistics < Struct.new( :processed_records_count, :exported_records_count) SENSITIVE = [] include Aws::Structure end |