Class: Aws::QConnect::Types::EmailMessageTemplateContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::EmailMessageTemplateContent
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
The content of the message template that applies to the email channel subtype.
Constant Summary collapse
- SENSITIVE =
[:subject]
Instance Attribute Summary collapse
-
#body ⇒ Types::EmailMessageTemplateContentBody
The body to use in email messages.
-
#headers ⇒ Array<Types::EmailHeader>
The email headers to include in email messages.
-
#subject ⇒ String
The subject line, or title, to use in email messages.
Instance Attribute Details
#body ⇒ Types::EmailMessageTemplateContentBody
The body to use in email messages.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3908 class EmailMessageTemplateContent < Struct.new( :body, :headers, :subject) SENSITIVE = [:subject] include Aws::Structure end |
#headers ⇒ Array<Types::EmailHeader>
The email headers to include in email messages.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3908 class EmailMessageTemplateContent < Struct.new( :body, :headers, :subject) SENSITIVE = [:subject] include Aws::Structure end |
#subject ⇒ String
The subject line, or title, to use in email messages.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3908 class EmailMessageTemplateContent < Struct.new( :body, :headers, :subject) SENSITIVE = [:subject] include Aws::Structure end |