Interface CfnCampaignPropsMixin.CampaignEmailMessageProperty

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

@Stability(Stable) public static interface CfnCampaignPropsMixin.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.cfnpropertymixins.services.pinpoint.*;
 CampaignEmailMessageProperty campaignEmailMessageProperty = CampaignEmailMessageProperty.builder()
         .body("body")
         .fromAddress("fromAddress")
         .htmlBody("htmlBody")
         .title("title")
         .build();
 

See Also: