Interface CfnPushTemplate.AndroidPushNotificationTemplateProperty

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

@Stability(Stable) public static interface CfnPushTemplate.AndroidPushNotificationTemplateProperty extends software.amazon.jsii.JsiiSerializable
Specifies channel-specific content and settings for a message template that can be used in push notifications that are sent through the ADM (Amazon Device Messaging), Baidu (Baidu Cloud Push), or GCM (Firebase Cloud Messaging, formerly Google Cloud Messaging) channel.

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.*;
 AndroidPushNotificationTemplateProperty androidPushNotificationTemplateProperty = AndroidPushNotificationTemplateProperty.builder()
         .action("action")
         .body("body")
         .imageIconUrl("imageIconUrl")
         .imageUrl("imageUrl")
         .smallImageIconUrl("smallImageIconUrl")
         .sound("sound")
         .title("title")
         .url("url")
         .build();
 

See Also: