Interface CfnCampaignPropsMixin.TemplateConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaignPropsMixin.TemplateConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnCampaignPropsMixin

@Stability(Stable) public static interface CfnCampaignPropsMixin.TemplateConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.*;
 TemplateConfigurationProperty templateConfigurationProperty = TemplateConfigurationProperty.builder()
         .emailTemplate(TemplateProperty.builder()
                 .name("name")
                 .version("version")
                 .build())
         .pushTemplate(TemplateProperty.builder()
                 .name("name")
                 .version("version")
                 .build())
         .smsTemplate(TemplateProperty.builder()
                 .name("name")
                 .version("version")
                 .build())
         .voiceTemplate(TemplateProperty.builder()
                 .name("name")
                 .version("version")
                 .build())
         .build();
 

See Also: