Class: Aws::SESV2::Types::EmailInsights
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::EmailInsights
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An email’s insights contain metadata and delivery information about a specific email.
Constant Summary collapse
- SENSITIVE =
 [:destination]
Instance Attribute Summary collapse
- 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The recipient of the email.
 - 
  
    
      #events  ⇒ Array<Types::InsightsEvent> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of events associated with the sent email.
 - 
  
    
      #isp  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The recipient’s ISP (e.g., ‘Gmail`, `Yahoo`, etc.).
 
Instance Attribute Details
#destination ⇒ String
The recipient of the email.
      2139 2140 2141 2142 2143 2144 2145  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2139 class EmailInsights < Struct.new( :destination, :isp, :events) SENSITIVE = [:destination] include Aws::Structure end  | 
  
#events ⇒ Array<Types::InsightsEvent>
A list of events associated with the sent email.
      2139 2140 2141 2142 2143 2144 2145  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2139 class EmailInsights < Struct.new( :destination, :isp, :events) SENSITIVE = [:destination] include Aws::Structure end  | 
  
#isp ⇒ String
The recipient’s ISP (e.g., ‘Gmail`, `Yahoo`, etc.).
      2139 2140 2141 2142 2143 2144 2145  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2139 class EmailInsights < Struct.new( :destination, :isp, :events) SENSITIVE = [:destination] include Aws::Structure end  |