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)


4050
4051
4052
4053
4054
4055
4056
4057
4058
# File 'lib/aws-sdk-ses/types.rb', line 4050

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)


4050
4051
4052
4053
4054
4055
4056
4057
4058
# File 'lib/aws-sdk-ses/types.rb', line 4050

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)


4050
4051
4052
4053
4054
4055
4056
4057
4058
# File 'lib/aws-sdk-ses/types.rb', line 4050

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)


4050
4051
4052
4053
4054
4055
4056
4057
4058
# File 'lib/aws-sdk-ses/types.rb', line 4050

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

#timestampTime

Time of the data point.

Returns:

  • (Time)


4050
4051
4052
4053
4054
4055
4056
4057
4058
# File 'lib/aws-sdk-ses/types.rb', line 4050

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