Class: Aws::SES::Types::UpdateTemplateRequest

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 UpdateTemplateRequest data as a hash:

{
  template: { # required
    template_name: "TemplateName", # required
    subject_part: "SubjectPart",
    text_part: "TextPart",
    html_part: "HtmlPart",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#templateTypes::Template

The content of the email, composed of a subject line, an HTML part, and a text-only part.

Returns:



5603
5604
5605
5606
# File 'lib/aws-sdk-ses/types.rb', line 5603

class UpdateTemplateRequest < Struct.new(
  :template)
  include Aws::Structure
end