Class: Aws::Pinpoint::Types::BaiduChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::BaiduChannelRequest
- Defined in:
- gems/aws-sdk-pinpoint/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2154 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether to enable the Baidu channel for the application.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2154 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) SENSITIVE = [] include Aws::Structure end |
#secret_key ⇒ String
The secret key that you received from the Baidu Cloud Push service to communicate with the service.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2154 class BaiduChannelRequest < Struct.new( :api_key, :enabled, :secret_key) SENSITIVE = [] include Aws::Structure end |