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.
      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  | 
  
#complaints ⇒ Integer
Number of unwanted emails that were rejected by recipients.
      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_attempts ⇒ Integer
Number of emails that have been sent.
      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  | 
  
#rejects ⇒ Integer
Number of emails rejected by Amazon SES.
      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  | 
  
#timestamp ⇒ Time
Time of the data point.
      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  |