Class: Aws::SESV2::Types::CreateEmailTemplateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::CreateEmailTemplateRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
Represents a request to create an email template. For more information, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #template_content  ⇒ Types::EmailTemplateContent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
 - 
  
    
      #template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the template.
 
Instance Attribute Details
#template_content ⇒ Types::EmailTemplateContent
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
      1129 1130 1131 1132 1133 1134  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 1129 class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content) SENSITIVE = [] include Aws::Structure end  | 
  
#template_name ⇒ String
The name of the template.
      1129 1130 1131 1132 1133 1134  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 1129 class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content) SENSITIVE = [] include Aws::Structure end  |