Class: Aws::Pinpoint::Types::ADMChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::ADMChannelRequest
- Defined in:
- gems/aws-sdk-pinpoint/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
41 42 43 44 45 46 47 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 41 class ADMChannelRequest < Struct.new( :client_id, :client_secret, :enabled) SENSITIVE = [] include Aws::Structure end |
#client_secret ⇒ String
The Client Secret that you received from Amazon to send messages by using ADM.
41 42 43 44 45 46 47 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 41 class ADMChannelRequest < Struct.new( :client_id, :client_secret, :enabled) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether to enable the ADM channel for the application.
41 42 43 44 45 46 47 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 41 class ADMChannelRequest < Struct.new( :client_id, :client_secret, :enabled) SENSITIVE = [] include Aws::Structure end |