Interface CfnPushTemplate.DefaultPushNotificationTemplateProperty

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

@Stability(Stable) public static interface CfnPushTemplate.DefaultPushNotificationTemplateProperty extends software.amazon.jsii.JsiiSerializable
Specifies the default settings and content for a message template that can be used in messages that are sent through a push notification 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.*;
 DefaultPushNotificationTemplateProperty defaultPushNotificationTemplateProperty = DefaultPushNotificationTemplateProperty.builder()
         .action("action")
         .body("body")
         .sound("sound")
         .title("title")
         .url("url")
         .build();
 

See Also: