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