Class: Aws::SES::Types::SendDataPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::SendDataPoint
- 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
-
#bounces ⇒ Integer
Number of emails that have bounced.
-
#complaints ⇒ Integer
Number of unwanted emails that were rejected by recipients.
-
#delivery_attempts ⇒ Integer
Number of emails that have been sent.
-
#rejects ⇒ Integer
Number of emails rejected by Amazon SES.
-
#timestamp ⇒ Time
Time of the data point.
Instance Attribute Details
#bounces ⇒ Integer
Number of emails that have bounced.
4003 4004 4005 4006 4007 4008 4009 4010 4011 |
# File 'lib/aws-sdk-ses/types.rb', line 4003 class SendDataPoint < Struct.new( :timestamp, :delivery_attempts, :bounces, :complaints, :rejects) SENSITIVE = [] include Aws::Structure end |
#complaints ⇒ Integer
Number of unwanted emails that were rejected by recipients.
4003 4004 4005 4006 4007 4008 4009 4010 4011 |
# File 'lib/aws-sdk-ses/types.rb', line 4003 class SendDataPoint < Struct.new( :timestamp, :delivery_attempts, :bounces, :complaints, :rejects) SENSITIVE = [] include Aws::Structure end |
#delivery_attempts ⇒ Integer
Number of emails that have been sent.
4003 4004 4005 4006 4007 4008 4009 4010 4011 |
# File 'lib/aws-sdk-ses/types.rb', line 4003 class SendDataPoint < Struct.new( :timestamp, :delivery_attempts, :bounces, :complaints, :rejects) SENSITIVE = [] include Aws::Structure end |
#rejects ⇒ Integer
Number of emails rejected by Amazon SES.
4003 4004 4005 4006 4007 4008 4009 4010 4011 |
# File 'lib/aws-sdk-ses/types.rb', line 4003 class SendDataPoint < Struct.new( :timestamp, :delivery_attempts, :bounces, :complaints, :rejects) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
Time of the data point.
4003 4004 4005 4006 4007 4008 4009 4010 4011 |
# File 'lib/aws-sdk-ses/types.rb', line 4003 class SendDataPoint < Struct.new( :timestamp, :delivery_attempts, :bounces, :complaints, :rejects) SENSITIVE = [] include Aws::Structure end |