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.
6959 6960 6961 6962 6963 6964 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6959 class TestRenderEmailTemplateRequest < Struct.new( :template_name, :template_data) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
The name of the template.
6959 6960 6961 6962 6963 6964 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6959 class TestRenderEmailTemplateRequest < Struct.new( :template_name, :template_data) SENSITIVE = [] include Aws::Structure end |