Class: Aws::Pinpoint::Types::UpdateGcmChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::UpdateGcmChannelRequest
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass UpdateGcmChannelRequest data as a hash:
{
application_id: "__string", # required
gcm_channel_request: { # required
api_key: "__string", # required
enabled: false,
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
-
#gcm_channel_request ⇒ Types::GCMChannelRequest
Specifies the status and settings of the GCM channel for an application.
Instance Attribute Details
#application_id ⇒ String
18718 18719 18720 18721 18722 18723 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 18718 class UpdateGcmChannelRequest < Struct.new( :application_id, :gcm_channel_request) SENSITIVE = [] include Aws::Structure end |
#gcm_channel_request ⇒ Types::GCMChannelRequest
Specifies the status and settings of the GCM channel for an application. This channel enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.
18718 18719 18720 18721 18722 18723 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 18718 class UpdateGcmChannelRequest < Struct.new( :application_id, :gcm_channel_request) SENSITIVE = [] include Aws::Structure end |