Class: Aws::SESV2::Types::SendEmailResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::SendEmailResponse
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
A unique message ID that you receive when an email is accepted for sending.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the message that is generated when the message is accepted.
 
Instance Attribute Details
#message_id ⇒ String
A unique identifier for the message that is generated when the message is accepted.
<note markdown=“1”> It’s possible for Amazon SES to accept a message without sending it. For example, this can happen when the message that you’re trying to send has an attachment that contains a virus, or when you send a templated email that contains invalid personalization content.
</note>
  
      6560 6561 6562 6563 6564  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6560 class SendEmailResponse < Struct.new( :message_id) SENSITIVE = [] include Aws::Structure end  |