Class: Aws::Pinpoint::Types::TemplateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::TemplateConfiguration
- Defined in:
- gems/aws-sdk-pinpoint/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
17266 17267 17268 17269 17270 17271 17272 17273 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 17266 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) SENSITIVE = [] include Aws::Structure end |
#push_template ⇒ Types::Template
The push notification template to use for the message.
17266 17267 17268 17269 17270 17271 17272 17273 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 17266 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) SENSITIVE = [] include Aws::Structure end |
#sms_template ⇒ Types::Template
The SMS template to use for the message.
17266 17267 17268 17269 17270 17271 17272 17273 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 17266 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_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.
17266 17267 17268 17269 17270 17271 17272 17273 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 17266 class TemplateConfiguration < Struct.new( :email_template, :push_template, :sms_template, :voice_template) SENSITIVE = [] include Aws::Structure end |