Class: Aws::SESV2::Types::Template
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::Template
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An object that defines the email template to use for an email message, and the values to use for any message variables in that template. An *email template* is a type of message template that contains content that you want to define, save, and reuse in email messages that you send.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #headers  ⇒ Array<Types::MessageHeader> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of message headers that will be added to the email message.
 - 
  
    
      #template_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the template.
 - 
  
    
      #template_data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An object that defines the values to use for message variables in the template.
 - 
  
    
      #template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the template.
 
Instance Attribute Details
#headers ⇒ Array<Types::MessageHeader>
The list of message headers that will be added to the email message.
      6905 6906 6907 6908 6909 6910 6911 6912  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6905 class Template < Struct.new( :template_name, :template_arn, :template_data, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#template_arn ⇒ String
The Amazon Resource Name (ARN) of the template.
      6905 6906 6907 6908 6909 6910 6911 6912  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6905 class Template < Struct.new( :template_name, :template_arn, :template_data, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#template_data ⇒ String
An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.
      6905 6906 6907 6908 6909 6910 6911 6912  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6905 class Template < Struct.new( :template_name, :template_arn, :template_data, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#template_name ⇒ String
The name of the template. You will refer to this name when you send email using the ‘SendTemplatedEmail` or `SendBulkTemplatedEmail` operations.
      6905 6906 6907 6908 6909 6910 6911 6912  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6905 class Template < Struct.new( :template_name, :template_arn, :template_data, :headers) SENSITIVE = [] include Aws::Structure end  |