Interface CfnPushTemplate.APNSPushNotificationTemplateProperty

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

@Stability(Stable) public static interface CfnPushTemplate.APNSPushNotificationTemplateProperty 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 APNs (Apple Push Notification service) 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.*;
 APNSPushNotificationTemplateProperty aPNSPushNotificationTemplateProperty = APNSPushNotificationTemplateProperty.builder()
         .action("action")
         .body("body")
         .mediaUrl("mediaUrl")
         .sound("sound")
         .title("title")
         .url("url")
         .build();
 

See Also: