Class: Aws::SESV2::Types::CreateEmailTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::CreateEmailTemplateRequest
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Represents a request to create an email template. For more information, see the Amazon SES Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) to associate with the email template.
-
#template_content ⇒ Types::EmailTemplateContent
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
-
#template_name ⇒ String
The name of the template.
Instance Attribute Details
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) to associate with the email template.
1222 1223 1224 1225 1226 1227 1228 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1222 class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content, :tags) SENSITIVE = [] include Aws::Structure end |
#template_content ⇒ Types::EmailTemplateContent
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
1222 1223 1224 1225 1226 1227 1228 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1222 class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content, :tags) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
The name of the template.
1222 1223 1224 1225 1226 1227 1228 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1222 class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content, :tags) SENSITIVE = [] include Aws::Structure end |