interface TemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnCampaign.TemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnCampaign_TemplateConfigurationProperty |
Java | software.amazon.awscdk.services.pinpoint.CfnCampaign.TemplateConfigurationProperty |
Python | aws_cdk.aws_pinpoint.CfnCampaign.TemplateConfigurationProperty |
TypeScript | aws-cdk-lib » aws_pinpoint » CfnCampaign » TemplateConfigurationProperty |
Specifies the message template to use for the message, for each type of channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as pinpoint } from 'aws-cdk-lib';
const templateConfigurationProperty: pinpoint.CfnCampaign.TemplateConfigurationProperty = {
emailTemplate: {
name: 'name',
version: 'version',
},
pushTemplate: {
name: 'name',
version: 'version',
},
smsTemplate: {
name: 'name',
version: 'version',
},
voiceTemplate: {
name: 'name',
version: 'version',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| email | IResolvable | Template | The email template to use for the message. |
| push | IResolvable | Template | The push notification template to use for the message. |
| sms | IResolvable | Template | The SMS template to use for the message. |
| voice | IResolvable | Template | The voice template to use for the message. |
emailTemplate?
Type:
IResolvable | Template
(optional)
The email template to use for the message.
pushTemplate?
Type:
IResolvable | Template
(optional)
The push notification template to use for the message.
smsTemplate?
Type:
IResolvable | Template
(optional)
The SMS template to use for the message.
voiceTemplate?
Type:
IResolvable | Template
(optional)
The voice template to use for the message.
This object isn't supported for campaigns.

.NET
Go
Java
Python
TypeScript