Class: Aws::Pinpoint::Types::UpdateApnsChannelRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass UpdateApnsChannelRequest data as a hash:

{
  apns_channel_request: { # required
    bundle_id: "__string",
    certificate: "__string",
    default_authentication_method: "__string",
    enabled: false,
    private_key: "__string",
    team_id: "__string",
    token_key: "__string",
    token_key_id: "__string",
  },
  application_id: "__string", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#apns_channel_requestTypes::APNSChannelRequest

Specifies the status and settings of the APNs (Apple Push Notification service) channel for an application.



15122
15123
15124
15125
15126
# File 'lib/aws-sdk-pinpoint/types.rb', line 15122

class UpdateApnsChannelRequest < Struct.new(
  :apns_channel_request,
  :application_id)
  include Aws::Structure
end

#application_idString

Returns:

  • (String)


15122
15123
15124
15125
15126
# File 'lib/aws-sdk-pinpoint/types.rb', line 15122

class UpdateApnsChannelRequest < Struct.new(
  :apns_channel_request,
  :application_id)
  include Aws::Structure
end