Interface CfnCampaignPropsMixin.MessageProperty

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

@Stability(Stable) public static interface CfnCampaignPropsMixin.MessageProperty extends software.amazon.jsii.JsiiSerializable
Specifies the content and settings for a push notification 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.*;
 MessageProperty messageProperty = 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();
 

See Also: