Class: Aws::Pinpoint::Types::APNSChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::APNSChannelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass APNSChannelRequest data as a hash:
{
certificate: "__string",
enabled: false,
private_key: "__string",
}
Apple Push Notification Service channel definition.
Instance Attribute Summary collapse
-
#certificate ⇒ String
The distribution certificate from Apple.
-
#enabled ⇒ Boolean
If the channel is enabled for sending messages.
-
#private_key ⇒ String
The certificate private key.
Instance Attribute Details
#certificate ⇒ String
The distribution certificate from Apple.
34 35 36 37 38 39 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 34 class APNSChannelRequest < Struct.new( :certificate, :enabled, :private_key) include Aws::Structure end |
#enabled ⇒ Boolean
If the channel is enabled for sending messages.
34 35 36 37 38 39 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 34 class APNSChannelRequest < Struct.new( :certificate, :enabled, :private_key) include Aws::Structure end |
#private_key ⇒ String
The certificate private key.
34 35 36 37 38 39 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 34 class APNSChannelRequest < Struct.new( :certificate, :enabled, :private_key) include Aws::Structure end |