Class: Aws::SESV2::Types::TestRenderEmailTemplateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::TestRenderEmailTemplateRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
>Represents a request to create a preview of the MIME content of an email when provided with a template and a set of replacement data.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #template_data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of replacement values to apply to the template.
 - 
  
    
      #template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the template.
 
Instance Attribute Details
#template_data ⇒ String
A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.
      6930 6931 6932 6933 6934 6935  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6930 class TestRenderEmailTemplateRequest < Struct.new( :template_name, :template_data) SENSITIVE = [] include Aws::Structure end  | 
  
#template_name ⇒ String
The name of the template.
      6930 6931 6932 6933 6934 6935  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6930 class TestRenderEmailTemplateRequest < Struct.new( :template_name, :template_data) SENSITIVE = [] include Aws::Structure end  |