interface TemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnCampaignPropsMixin.TemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnCampaignPropsMixin_TemplateConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnCampaignPropsMixin.TemplateConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnCampaignPropsMixin.TemplateConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnCampaignPropsMixin » 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 { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const templateConfigurationProperty: pinpoint_mixins.CfnCampaignPropsMixin.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