Interface CfnCampaign.ITemplateConfigurationProperty
Specifies the message template to use for the message, for each type of channel.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITemplateConfigurationProperty
Syntax (vb)
Public Interface ITemplateConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var templateConfigurationProperty = new TemplateConfigurationProperty {
EmailTemplate = new TemplateProperty {
Name = "name",
Version = "version"
},
PushTemplate = new TemplateProperty {
Name = "name",
Version = "version"
},
SmsTemplate = new TemplateProperty {
Name = "name",
Version = "version"
},
VoiceTemplate = new TemplateProperty {
Name = "name",
Version = "version"
}
};
Synopsis
Properties
EmailTemplate | The email template to use for the message. |
PushTemplate | The push notification template to use for the message. |
SmsTemplate | The SMS template to use for the message. |
VoiceTemplate | The voice template to use for the message. |
Properties
EmailTemplate
The email template to use for the message.
virtual object EmailTemplate { get; }
Property Value
System.Object
Remarks
PushTemplate
The push notification template to use for the message.
virtual object PushTemplate { get; }
Property Value
System.Object
Remarks
SmsTemplate
The SMS template to use for the message.
virtual object SmsTemplate { get; }
Property Value
System.Object
Remarks
VoiceTemplate
The voice template to use for the message.
virtual object VoiceTemplate { get; }
Property Value
System.Object
Remarks
This object isn't supported for campaigns.