public static interface CfnCampaign.TemplateConfigurationProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.pinpoint.*; 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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.TemplateConfigurationProperty.Builder
A builder for
CfnCampaign.TemplateConfigurationProperty |
static class |
CfnCampaign.TemplateConfigurationProperty.Jsii$Proxy
An implementation for
CfnCampaign.TemplateConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.TemplateConfigurationProperty.Builder |
builder() |
default java.lang.Object |
getEmailTemplate()
The email template to use for the message.
|
default java.lang.Object |
getPushTemplate()
The push notification template to use for the message.
|
default java.lang.Object |
getSmsTemplate()
The SMS template to use for the message.
|
default java.lang.Object |
getVoiceTemplate()
The voice template to use for the message.
|
default java.lang.Object getEmailTemplate()
default java.lang.Object getPushTemplate()
default java.lang.Object getSmsTemplate()
default java.lang.Object getVoiceTemplate()
This object isn't supported for campaigns.
static CfnCampaign.TemplateConfigurationProperty.Builder builder()