Show / Hide Table of Contents

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 CfnCampaign.ITemplateConfigurationProperty
Syntax (vb)
Public Interface CfnCampaign.ITemplateConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-templateconfiguration.html

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.

object? EmailTemplate { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-templateconfiguration.html#cfn-pinpoint-campaign-templateconfiguration-emailtemplate

Type union: either IResolvable or CfnCampaign.ITemplateProperty

PushTemplate

The push notification template to use for the message.

object? PushTemplate { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-templateconfiguration.html#cfn-pinpoint-campaign-templateconfiguration-pushtemplate

Type union: either IResolvable or CfnCampaign.ITemplateProperty

SmsTemplate

The SMS template to use for the message.

object? SmsTemplate { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-templateconfiguration.html#cfn-pinpoint-campaign-templateconfiguration-smstemplate

Type union: either IResolvable or CfnCampaign.ITemplateProperty

VoiceTemplate

The voice template to use for the message.

object? VoiceTemplate { get; }
Property Value

object

Remarks

This object isn't supported for campaigns.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-templateconfiguration.html#cfn-pinpoint-campaign-templateconfiguration-voicetemplate

Type union: either IResolvable or CfnCampaign.ITemplateProperty

Back to top Generated by DocFX