Class: Aws::SESV2::Types::GetMessageInsightsResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::GetMessageInsightsResponse
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
Information about a message.
Constant Summary collapse
- SENSITIVE =
 [:from_email_address, :subject]
Instance Attribute Summary collapse
- 
  
    
      #email_tags  ⇒ Array<Types::MessageTag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of tags, in the form of name/value pairs, that were applied to the email you sent, along with Amazon SES [Auto-Tags].
 - 
  
    
      #from_email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The from address used to send the message.
 - 
  
    
      #insights  ⇒ Array<Types::EmailInsights> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A set of insights associated with the message.
 - 
  
    
      #message_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the message.
 - 
  
    
      #subject  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subject line of the message.
 
Instance Attribute Details
#email_tags ⇒ Array<Types::MessageTag>
A list of tags, in the form of name/value pairs, that were applied to the email you sent, along with Amazon SES [Auto-Tags].
[1]: docs.aws.amazon.com/ses/latest/dg/monitor-using-event-publishing.html
      3701 3702 3703 3704 3705 3706 3707 3708 3709  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 3701 class GetMessageInsightsResponse < Struct.new( :message_id, :from_email_address, :subject, :email_tags, :insights) SENSITIVE = [:from_email_address, :subject] include Aws::Structure end  | 
  
#from_email_address ⇒ String
The from address used to send the message.
      3701 3702 3703 3704 3705 3706 3707 3708 3709  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 3701 class GetMessageInsightsResponse < Struct.new( :message_id, :from_email_address, :subject, :email_tags, :insights) SENSITIVE = [:from_email_address, :subject] include Aws::Structure end  | 
  
#insights ⇒ Array<Types::EmailInsights>
A set of insights associated with the message.
      3701 3702 3703 3704 3705 3706 3707 3708 3709  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 3701 class GetMessageInsightsResponse < Struct.new( :message_id, :from_email_address, :subject, :email_tags, :insights) SENSITIVE = [:from_email_address, :subject] include Aws::Structure end  | 
  
#message_id ⇒ String
A unique identifier for the message.
      3701 3702 3703 3704 3705 3706 3707 3708 3709  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 3701 class GetMessageInsightsResponse < Struct.new( :message_id, :from_email_address, :subject, :email_tags, :insights) SENSITIVE = [:from_email_address, :subject] include Aws::Structure end  | 
  
#subject ⇒ String
The subject line of the message.
      3701 3702 3703 3704 3705 3706 3707 3708 3709  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 3701 class GetMessageInsightsResponse < Struct.new( :message_id, :from_email_address, :subject, :email_tags, :insights) SENSITIVE = [:from_email_address, :subject] include Aws::Structure end  |