Class: Aws::Pinpoint::Types::ADMChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::ADMChannelRequest
- 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", # required
client_secret: "__string", # required
enabled: false,
}
Specifies the status and settings of the ADM (Amazon Device Messaging) channel for an application.
Instance Attribute Summary collapse
-
#client_id ⇒ String
The Client ID that you received from Amazon to send messages by using ADM.
-
#client_secret ⇒ String
The Client Secret that you received from Amazon to send messages by using ADM.
-
#enabled ⇒ Boolean
Specifies whether to enable the ADM channel for the application.
Instance Attribute Details
#client_id ⇒ String
The Client ID that you received from Amazon to send messages by using ADM.
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_secret ⇒ String
The Client Secret that you received from Amazon to send messages by using ADM.
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 |
#enabled ⇒ Boolean
Specifies whether to enable the ADM channel for the application.
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 |