@Stability(value=Stable)
public static interface CfnCampaign.TemplateConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getEmailTemplate()
The email template to use for the message.
|
default Object |
getPushTemplate()
The push notification template to use for the message.
|
default Object |
getSmsTemplate()
The SMS template to use for the message.
|
default Object |
getVoiceTemplate()
The voice template to use for the message.
|
@Stability(value=Stable) @Nullable default Object getEmailTemplate()
@Stability(value=Stable) @Nullable default Object getPushTemplate()
@Stability(value=Stable) @Nullable default Object getSmsTemplate()
@Stability(value=Stable) @Nullable default Object getVoiceTemplate()
This object isn't supported for campaigns.
@Stability(value=Stable) static CfnCampaign.TemplateConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.