Class: Aws::SES::Types::TestRenderTemplateRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass TestRenderTemplateRequest data as a hash:

{
  template_name: "TemplateName", # required
  template_data: "TemplateData", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#template_dataString

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.

Returns:

  • (String)


5210
5211
5212
5213
5214
# File 'lib/aws-sdk-ses/types.rb', line 5210

class TestRenderTemplateRequest < Struct.new(
  :template_name,
  :template_data)
  include Aws::Structure
end

#template_nameString

The name of the template that you want to render.

Returns:

  • (String)


5210
5211
5212
5213
5214
# File 'lib/aws-sdk-ses/types.rb', line 5210

class TestRenderTemplateRequest < Struct.new(
  :template_name,
  :template_data)
  include Aws::Structure
end