AWSPinpointTargetingPushNotificationTemplateRequest

Objective-C

@interface AWSPinpointTargetingPushNotificationTemplateRequest

Swift

class AWSPinpointTargetingPushNotificationTemplateRequest

Specifies the content and settings for a message template that can be used in messages that are sent through a push notification channel.

  • ADM

    The message template to use for the ADM (Amazon Device Messaging) channel. This message template overrides the default template for push notification channels (DefaultPushNotificationTemplate).

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingAndroidPushNotificationTemplate *_Nullable ADM;
  • The message template to use for the APNs (Apple Push Notification service) channel. This message template overrides the default template for push notification channels (DefaultPushNotificationTemplate).

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingAPNSPushNotificationTemplate *_Nullable APNS;
  • The message template to use for the Baidu (Baidu Cloud Push) channel. This message template overrides the default template for push notification channels (DefaultPushNotificationTemplate).

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingAndroidPushNotificationTemplate *_Nullable baidu;
  • The default message template to use for push notification channels.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingDefaultPushNotificationTemplate *_Nullable defaultValue;

    Swift

    var defaultValue: AWSPinpointTargetingDefaultPushNotificationTemplate? { get set }
  • A JSON object that specifies the default values to use for message variables in the message template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the default value for that variable. When you create a message that’s based on the template, you can override these defaults with message-specific and address-specific variables and values.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable defaultSubstitutions;

    Swift

    var defaultSubstitutions: String? { get set }
  • GCM

    The message template to use for the GCM channel, which is used to send notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service. This message template overrides the default template for push notification channels (DefaultPushNotificationTemplate).

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingAndroidPushNotificationTemplate *_Nullable GCM;
  • The unique identifier for the recommender model to use for the message template. Amazon Pinpoint uses this value to determine how to retrieve and process data from a recommender model when it sends messages that use the template, if the template contains message variables for recommendation data.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommenderId;

    Swift

    var recommenderId: String? { get set }
  • A custom description of the message template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateDescription;

    Swift

    var templateDescription: String? { get set }
  • As of 22-05-2023 tags has been deprecated for update operations. After this date any value in tags is not processed and an error code is not returned. To manage tags we recommend using either Tags in the API Reference for Amazon Pinpoint, resourcegroupstaggingapi commands in the AWS Command Line Interface Documentation or resourcegroupstaggingapi in the AWS SDK.

    (Deprecated) A string-to-string map of key-value pairs that defines the tags to associate with the message template. Each tag consists of a required tag key and an associated tag value.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }