Class: Aws::Pinpoint::Types::DirectMessageConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass DirectMessageConfiguration data as a hash:

{
  apns_message: {
    action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
    badge: 1,
    body: "__string",
    category: "__string",
    data: {
      "__string" => "__string",
    },
    media_url: "__string",
    raw_content: "__string",
    silent_push: false,
    sound: "__string",
    substitutions: {
      "__string" => ["__string"],
    },
    thread_id: "__string",
    title: "__string",
    url: "__string",
  },
  default_message: {
    body: "__string",
    substitutions: {
      "__string" => ["__string"],
    },
  },
  default_push_notification_message: {
    action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
    body: "__string",
    data: {
      "__string" => "__string",
    },
    silent_push: false,
    substitutions: {
      "__string" => ["__string"],
    },
    title: "__string",
    url: "__string",
  },
  gcm_message: {
    action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
    body: "__string",
    collapse_key: "__string",
    data: {
      "__string" => "__string",
    },
    icon_reference: "__string",
    image_icon_url: "__string",
    image_url: "__string",
    raw_content: "__string",
    restricted_package_name: "__string",
    silent_push: false,
    small_image_icon_url: "__string",
    sound: "__string",
    substitutions: {
      "__string" => ["__string"],
    },
    title: "__string",
    url: "__string",
  },
  sms_message: {
    body: "__string",
    message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
    sender_id: "__string",
    substitutions: {
      "__string" => ["__string"],
    },
  },
}

The message configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#apns_messageTypes::APNSMessage

The message to APNS channels. Overrides the default push notification message.

Returns:



1506
1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-pinpoint/types.rb', line 1506

class DirectMessageConfiguration < Struct.new(
  :apns_message,
  :default_message,
  :default_push_notification_message,
  :gcm_message,
  :sms_message)
  include Aws::Structure
end

#default_messageTypes::DefaultMessage

The default message for all channels.



1506
1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-pinpoint/types.rb', line 1506

class DirectMessageConfiguration < Struct.new(
  :apns_message,
  :default_message,
  :default_push_notification_message,
  :gcm_message,
  :sms_message)
  include Aws::Structure
end

#default_push_notification_messageTypes::DefaultPushNotificationMessage

The default push notification message for all push channels.



1506
1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-pinpoint/types.rb', line 1506

class DirectMessageConfiguration < Struct.new(
  :apns_message,
  :default_message,
  :default_push_notification_message,
  :gcm_message,
  :sms_message)
  include Aws::Structure
end

#gcm_messageTypes::GCMMessage

The message to GCM channels. Overrides the default push notification message.

Returns:



1506
1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-pinpoint/types.rb', line 1506

class DirectMessageConfiguration < Struct.new(
  :apns_message,
  :default_message,
  :default_push_notification_message,
  :gcm_message,
  :sms_message)
  include Aws::Structure
end

#sms_messageTypes::SMSMessage

The message to SMS channels. Overrides the default message.

Returns:



1506
1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-pinpoint/types.rb', line 1506

class DirectMessageConfiguration < Struct.new(
  :apns_message,
  :default_message,
  :default_push_notification_message,
  :gcm_message,
  :sms_message)
  include Aws::Structure
end