Class: Aws::PinpointEmail::Types::SendEmailResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::SendEmailResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
A unique message ID that you receive when Amazon Pinpoint accepts an email for sending.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the message that is generated when Amazon Pinpoint accepts the message.
 
Instance Attribute Details
#message_id ⇒ String
A unique identifier for the message that is generated when Amazon Pinpoint accepts the message.
<note markdown=“1”> It is possible for Amazon Pinpoint to accept a message without sending it. This can happen when the message you’re trying to send has an attachment doesn’t pass a virus check, or when you send a templated email that contains invalid personalization content, for example.
</note>
  
      2827 2828 2829 2830 2831  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2827 class SendEmailResponse < Struct.new( :message_id) SENSITIVE = [] include Aws::Structure end  |