Class: Aws::SES::Types::Message
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SES::Types::Message
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-ses/types.rb
 
Overview
Represents the message to be sent, composed of a subject and a body.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #body  ⇒ Types::Body 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The message body.
 - 
  
    
      #subject  ⇒ Types::Content 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subject of the message: A short summary of the content, which appears in the recipient’s inbox.
 
Instance Attribute Details
#body ⇒ Types::Body
The message body.
      2839 2840 2841 2842 2843 2844  | 
    
      # File 'lib/aws-sdk-ses/types.rb', line 2839 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end  | 
  
#subject ⇒ Types::Content
The subject of the message: A short summary of the content, which appears in the recipient’s inbox.
      2839 2840 2841 2842 2843 2844  | 
    
      # File 'lib/aws-sdk-ses/types.rb', line 2839 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end  |