Interface CfnCampaign.CampaignEmailMessageProperty

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

@Stability(Stable) public static interface CfnCampaign.CampaignEmailMessageProperty extends software.amazon.jsii.JsiiSerializable
Specifies the content and "From" address for an email message that's sent to recipients of a campaign.

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();
 

See Also: