Class: Aws::SES::Types::SendDataPoint

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Represents sending statistics data. Each ‘SendDataPoint` contains statistics for a 15-minute period of sending activity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bouncesInteger

Number of emails that have bounced.

Returns:

  • (Integer)


3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/aws-sdk-ses/types.rb', line 3979

class SendDataPoint < Struct.new(
  :timestamp,
  :delivery_attempts,
  :bounces,
  :complaints,
  :rejects)
  SENSITIVE = []
  include Aws::Structure
end

#complaintsInteger

Number of unwanted emails that were rejected by recipients.

Returns:

  • (Integer)


3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/aws-sdk-ses/types.rb', line 3979

class SendDataPoint < Struct.new(
  :timestamp,
  :delivery_attempts,
  :bounces,
  :complaints,
  :rejects)
  SENSITIVE = []
  include Aws::Structure
end

#delivery_attemptsInteger

Number of emails that have been sent.

Returns:

  • (Integer)


3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/aws-sdk-ses/types.rb', line 3979

class SendDataPoint < Struct.new(
  :timestamp,
  :delivery_attempts,
  :bounces,
  :complaints,
  :rejects)
  SENSITIVE = []
  include Aws::Structure
end

#rejectsInteger

Number of emails rejected by Amazon SES.

Returns:

  • (Integer)


3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/aws-sdk-ses/types.rb', line 3979

class SendDataPoint < Struct.new(
  :timestamp,
  :delivery_attempts,
  :bounces,
  :complaints,
  :rejects)
  SENSITIVE = []
  include Aws::Structure
end

#timestampTime

Time of the data point.

Returns:

  • (Time)


3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/aws-sdk-ses/types.rb', line 3979

class SendDataPoint < Struct.new(
  :timestamp,
  :delivery_attempts,
  :bounces,
  :complaints,
  :rejects)
  SENSITIVE = []
  include Aws::Structure
end