Class: Aws::Pinpoint::Types::UpdateGcmChannelRequest

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 UpdateGcmChannelRequest data as a hash:

{
  application_id: "__string", # required
  gcm_channel_request: { # required
    api_key: "__string",
    enabled: false,
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_idString

Returns:

  • (String)


10019
10020
10021
10022
10023
# File 'lib/aws-sdk-pinpoint/types.rb', line 10019

class UpdateGcmChannelRequest < Struct.new(
  :application_id,
  :gcm_channel_request)
  include Aws::Structure
end

#gcm_channel_requestTypes::GCMChannelRequest

Google Cloud Messaging credentials



10019
10020
10021
10022
10023
# File 'lib/aws-sdk-pinpoint/types.rb', line 10019

class UpdateGcmChannelRequest < Struct.new(
  :application_id,
  :gcm_channel_request)
  include Aws::Structure
end