Class: Aws::ChimeSDKMessaging::Types::ChannelMembershipPreferences
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMessaging::Types::ChannelMembershipPreferences
- Defined in:
- gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb
Overview
Note:
When making an API call, you may pass ChannelMembershipPreferences data as a hash:
{
push_notifications: {
allow_notifications: "ALL", # required, accepts ALL, NONE, FILTERED
filter_rule: "FilterRule",
},
}
The channel membership preferences for an AppInstanceUser
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#push_notifications ⇒ Types::PushNotificationPreferences
The push notification configuration of a message.
Instance Attribute Details
#push_notifications ⇒ Types::PushNotificationPreferences
The push notification configuration of a message.
539 540 541 542 543 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 539 class ChannelMembershipPreferences < Struct.new( :push_notifications) SENSITIVE = [] include Aws::Structure end |