Class: Aws::SESV2::Types::ExportStatistics

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

Statistics about the execution of an export job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exported_records_countInteger

The number of records that were exported to the final export file.

This value might not be available for all export source types

Returns:

  • (Integer)


2565
2566
2567
2568
2569
2570
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2565

class ExportStatistics < Struct.new(
  :processed_records_count,
  :exported_records_count)
  SENSITIVE = []
  include Aws::Structure
end

#processed_records_countInteger

The number of records that were processed to generate the final export file.

Returns:

  • (Integer)


2565
2566
2567
2568
2569
2570
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2565

class ExportStatistics < Struct.new(
  :processed_records_count,
  :exported_records_count)
  SENSITIVE = []
  include Aws::Structure
end