Class: Aws::Pinpoint::Types::ADMChannelRequest

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

{
  client_id: "__string",
  client_secret: "__string",
  enabled: false,
}

Amazon Device Messaging channel definition.

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The Client ID that you obtained from the Amazon App Distribution Portal.

Returns:

  • (String)


39
40
41
42
43
44
# File 'lib/aws-sdk-pinpoint/types.rb', line 39

class ADMChannelRequest < Struct.new(
  :client_id,
  :client_secret,
  :enabled)
  include Aws::Structure
end

#client_secretString

The Client Secret that you obtained from the Amazon App Distribution Portal.

Returns:

  • (String)


39
40
41
42
43
44
# File 'lib/aws-sdk-pinpoint/types.rb', line 39

class ADMChannelRequest < Struct.new(
  :client_id,
  :client_secret,
  :enabled)
  include Aws::Structure
end

#enabledBoolean

Indicates whether or not the channel is enabled for sending messages.

Returns:

  • (Boolean)


39
40
41
42
43
44
# File 'lib/aws-sdk-pinpoint/types.rb', line 39

class ADMChannelRequest < Struct.new(
  :client_id,
  :client_secret,
  :enabled)
  include Aws::Structure
end