Class: Aws::Pinpoint::Types::APNSSandboxChannelRequest

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 APNSSandboxChannelRequest data as a hash:

{
  certificate: "__string",
  enabled: false,
  private_key: "__string",
}

Apple Development Push Notification Service channel definition.

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The distribution certificate from Apple.

Returns:

  • (String)


232
233
234
235
236
237
# File 'lib/aws-sdk-pinpoint/types.rb', line 232

class APNSSandboxChannelRequest < Struct.new(
  :certificate,
  :enabled,
  :private_key)
  include Aws::Structure
end

#enabledBoolean

If the channel is enabled for sending messages.

Returns:

  • (Boolean)


232
233
234
235
236
237
# File 'lib/aws-sdk-pinpoint/types.rb', line 232

class APNSSandboxChannelRequest < Struct.new(
  :certificate,
  :enabled,
  :private_key)
  include Aws::Structure
end

#private_keyString

The certificate private key.

Returns:

  • (String)


232
233
234
235
236
237
# File 'lib/aws-sdk-pinpoint/types.rb', line 232

class APNSSandboxChannelRequest < Struct.new(
  :certificate,
  :enabled,
  :private_key)
  include Aws::Structure
end