Class: Aws::ChimeSDKMessaging::Types::PushNotificationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMessaging::Types::PushNotificationConfiguration
- 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
-
#body ⇒ String
The body of the push notification.
-
#title ⇒ String
The title of the push notification.
-
#type ⇒ String
Enum value that indicates the type of the push notification for a message.
Instance Attribute Details
#body ⇒ String
The body of the push notification.
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 |
#title ⇒ String
The title of the push notification.
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 |
#type ⇒ String
Enum value that indicates the type of the push notification for a
message. DEFAULT
: Normal mobile push notification. VOIP
: VOIP
mobile push notification.
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 |