Class: Aws::Pinpoint::Types::TemplateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::TemplateConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the message template to use for the message, for each type of channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_template ⇒ Types::Template
The email template to use for the message.
-
#in_app_template ⇒ Types::Template
The InApp template to use for the message.
-
#push_template ⇒ Types::Template
The push notification template to use for the message.
-
#sms_template ⇒ Types::Template
The SMS template to use for the message.
-
#voice_template ⇒ Types::Template
The voice template to use for the message.
Instance Attribute Details
#email_template ⇒ Types::Template
The email template to use for the message.
11955 11956 11957 11958 11959 11960 11961 11962 11963 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11955 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template, :in_app_template) SENSITIVE = [] include Aws::Structure end |
#in_app_template ⇒ Types::Template
The InApp template to use for the message. The InApp template object is not supported for SendMessages.
11955 11956 11957 11958 11959 11960 11961 11962 11963 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11955 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template, :in_app_template) SENSITIVE = [] include Aws::Structure end |
#push_template ⇒ Types::Template
The push notification template to use for the message.
11955 11956 11957 11958 11959 11960 11961 11962 11963 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11955 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template, :in_app_template) SENSITIVE = [] include Aws::Structure end |
#sms_template ⇒ Types::Template
The SMS template to use for the message.
11955 11956 11957 11958 11959 11960 11961 11962 11963 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11955 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template, :in_app_template) SENSITIVE = [] include Aws::Structure end |
#voice_template ⇒ Types::Template
The voice template to use for the message. This object isn’t supported for campaigns.
11955 11956 11957 11958 11959 11960 11961 11962 11963 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11955 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template, :in_app_template) SENSITIVE = [] include Aws::Structure end |