Class: Aws::Pinpoint::Types::BaiduChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::BaiduChannelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass BaiduChannelRequest data as a hash:
{
api_key: "__string", # required
enabled: false,
secret_key: "__string", # required
}
Specifies the status and settings of the Baidu (Baidu Cloud Push) channel for an application.
Instance Attribute Summary collapse
-
#api_key ⇒ String
The API key that you received from the Baidu Cloud Push service to communicate with the service.
-
#enabled ⇒ Boolean
Specifies whether to enable the Baidu channel for the application.
-
#secret_key ⇒ String
The secret key that you received from the Baidu Cloud Push service to communicate with the service.
Instance Attribute Details
#api_key ⇒ String
The API key that you received from the Baidu Cloud Push service to communicate with the service.
2052 2053 2054 2055 2056 2057 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2052 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether to enable the Baidu channel for the application.
2052 2053 2054 2055 2056 2057 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2052 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) include Aws::Structure end |
#secret_key ⇒ String
The secret key that you received from the Baidu Cloud Push service to communicate with the service.
2052 2053 2054 2055 2056 2057 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2052 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) include Aws::Structure end |