Class: Aws::ChimeSDKMessaging::Types::PushNotificationConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb

Overview

The push notification configuration of the message.

Constant Summary collapse

SENSITIVE =
[:title, :body]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyString

The body of the push notification.

Returns:

  • (String)


2632
2633
2634
2635
2636
2637
2638
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 2632

class PushNotificationConfiguration < Struct.new(
  :title,
  :body,
  :type)
  SENSITIVE = [:title, :body]
  include Aws::Structure
end

#titleString

The title of the push notification.

Returns:

  • (String)


2632
2633
2634
2635
2636
2637
2638
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 2632

class PushNotificationConfiguration < Struct.new(
  :title,
  :body,
  :type)
  SENSITIVE = [:title, :body]
  include Aws::Structure
end

#typeString

Enum value that indicates the type of the push notification for a message. DEFAULT: Normal mobile push notification. VOIP: VOIP mobile push notification.

Returns:

  • (String)


2632
2633
2634
2635
2636
2637
2638
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 2632

class PushNotificationConfiguration < Struct.new(
  :title,
  :body,
  :type)
  SENSITIVE = [:title, :body]
  include Aws::Structure
end