@Stability(value=Stable)
public static interface CfnCampaign.CampaignEmailMessageProperty
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.*;
CampaignEmailMessageProperty campaignEmailMessageProperty = CampaignEmailMessageProperty.builder()
.body("body")
.fromAddress("fromAddress")
.htmlBody("htmlBody")
.title("title")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCampaign.CampaignEmailMessageProperty.Builder
A builder for
CfnCampaign.CampaignEmailMessageProperty |
static class |
CfnCampaign.CampaignEmailMessageProperty.Jsii$Proxy
An implementation for
CfnCampaign.CampaignEmailMessageProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCampaign.CampaignEmailMessageProperty.Builder |
builder() |
default String |
getBody()
The body of the email for recipients whose email clients don't render HTML content.
|
default String |
getFromAddress()
The verified email address to send the email from.
|
default String |
getHtmlBody()
The body of the email, in HTML format, for recipients whose email clients render HTML content.
|
default String |
getTitle()
The subject line, or title, of the email.
|
@Stability(value=Stable) @Nullable default String getBody()
@Stability(value=Stable) @Nullable default String getFromAddress()
The default address is the FromAddress specified for the email channel for the application.
@Stability(value=Stable) @Nullable default String getHtmlBody()
@Stability(value=Stable) @Nullable default String getTitle()
@Stability(value=Stable) static CfnCampaign.CampaignEmailMessageProperty.Builder builder()
Copyright © 2022. All rights reserved.