Interface CfnCampaign.MessageConfigurationProperty

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

@Stability(Stable) public static interface CfnCampaign.MessageConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the message configuration settings for 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.*;
 Object customConfig;
 MessageConfigurationProperty messageConfigurationProperty = MessageConfigurationProperty.builder()
         .admMessage(MessageProperty.builder()
                 .action("action")
                 .body("body")
                 .imageIconUrl("imageIconUrl")
                 .imageSmallIconUrl("imageSmallIconUrl")
                 .imageUrl("imageUrl")
                 .jsonBody("jsonBody")
                 .mediaUrl("mediaUrl")
                 .rawContent("rawContent")
                 .silentPush(false)
                 .timeToLive(123)
                 .title("title")
                 .url("url")
                 .build())
         .apnsMessage(MessageProperty.builder()
                 .action("action")
                 .body("body")
                 .imageIconUrl("imageIconUrl")
                 .imageSmallIconUrl("imageSmallIconUrl")
                 .imageUrl("imageUrl")
                 .jsonBody("jsonBody")
                 .mediaUrl("mediaUrl")
                 .rawContent("rawContent")
                 .silentPush(false)
                 .timeToLive(123)
                 .title("title")
                 .url("url")
                 .build())
         .baiduMessage(MessageProperty.builder()
                 .action("action")
                 .body("body")
                 .imageIconUrl("imageIconUrl")
                 .imageSmallIconUrl("imageSmallIconUrl")
                 .imageUrl("imageUrl")
                 .jsonBody("jsonBody")
                 .mediaUrl("mediaUrl")
                 .rawContent("rawContent")
                 .silentPush(false)
                 .timeToLive(123)
                 .title("title")
                 .url("url")
                 .build())
         .customMessage(CampaignCustomMessageProperty.builder()
                 .data("data")
                 .build())
         .defaultMessage(MessageProperty.builder()
                 .action("action")
                 .body("body")
                 .imageIconUrl("imageIconUrl")
                 .imageSmallIconUrl("imageSmallIconUrl")
                 .imageUrl("imageUrl")
                 .jsonBody("jsonBody")
                 .mediaUrl("mediaUrl")
                 .rawContent("rawContent")
                 .silentPush(false)
                 .timeToLive(123)
                 .title("title")
                 .url("url")
                 .build())
         .emailMessage(CampaignEmailMessageProperty.builder()
                 .body("body")
                 .fromAddress("fromAddress")
                 .htmlBody("htmlBody")
                 .title("title")
                 .build())
         .gcmMessage(MessageProperty.builder()
                 .action("action")
                 .body("body")
                 .imageIconUrl("imageIconUrl")
                 .imageSmallIconUrl("imageSmallIconUrl")
                 .imageUrl("imageUrl")
                 .jsonBody("jsonBody")
                 .mediaUrl("mediaUrl")
                 .rawContent("rawContent")
                 .silentPush(false)
                 .timeToLive(123)
                 .title("title")
                 .url("url")
                 .build())
         .inAppMessage(CampaignInAppMessageProperty.builder()
                 .content(List.of(InAppMessageContentProperty.builder()
                         .backgroundColor("backgroundColor")
                         .bodyConfig(InAppMessageBodyConfigProperty.builder()
                                 .alignment("alignment")
                                 .body("body")
                                 .textColor("textColor")
                                 .build())
                         .headerConfig(InAppMessageHeaderConfigProperty.builder()
                                 .alignment("alignment")
                                 .header("header")
                                 .textColor("textColor")
                                 .build())
                         .imageUrl("imageUrl")
                         .primaryBtn(InAppMessageButtonProperty.builder()
                                 .android(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .defaultConfig(DefaultButtonConfigurationProperty.builder()
                                         .backgroundColor("backgroundColor")
                                         .borderRadius(123)
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .text("text")
                                         .textColor("textColor")
                                         .build())
                                 .ios(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .web(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .build())
                         .secondaryBtn(InAppMessageButtonProperty.builder()
                                 .android(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .defaultConfig(DefaultButtonConfigurationProperty.builder()
                                         .backgroundColor("backgroundColor")
                                         .borderRadius(123)
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .text("text")
                                         .textColor("textColor")
                                         .build())
                                 .ios(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .web(OverrideButtonConfigurationProperty.builder()
                                         .buttonAction("buttonAction")
                                         .link("link")
                                         .build())
                                 .build())
                         .build()))
                 .customConfig(customConfig)
                 .layout("layout")
                 .build())
         .smsMessage(CampaignSmsMessageProperty.builder()
                 .body("body")
                 .entityId("entityId")
                 .messageType("messageType")
                 .originationNumber("originationNumber")
                 .senderId("senderId")
                 .templateId("templateId")
                 .build())
         .build();
 

See Also: