Class: Aws::Pinpoint::Types::TemplateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::TemplateConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass TemplateConfiguration data as a hash:
{
email_template: {
name: "__string",
version: "__string",
},
push_template: {
name: "__string",
version: "__string",
},
sms_template: {
name: "__string",
version: "__string",
},
voice_template: {
name: "__string",
version: "__string",
},
}
Specifies the message template to use for the message, for each type of channel.
Instance Attribute Summary collapse
-
#email_template ⇒ Types::Template
The email 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.
14775 14776 14777 14778 14779 14780 14781 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14775 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) include Aws::Structure end |
#push_template ⇒ Types::Template
The push notification template to use for the message.
14775 14776 14777 14778 14779 14780 14781 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14775 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) include Aws::Structure end |
#sms_template ⇒ Types::Template
The SMS template to use for the message.
14775 14776 14777 14778 14779 14780 14781 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14775 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) include Aws::Structure end |
#voice_template ⇒ Types::Template
The voice template to use for the message. This object isn’t supported for campaigns.
14775 14776 14777 14778 14779 14780 14781 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14775 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) include Aws::Structure end |