Class: Aws::SNS::Types::CreatePlatformApplicationInput

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

Overview

Note:

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

{
  name: "String", # required
  platform: "String", # required
  attributes: { # required
    "String" => "String",
  },
}

Input for CreatePlatformApplication action.

Instance Attribute Summary collapse

Instance Attribute Details

#attributesHash<String,String>

Returns:

  • (Hash<String,String>)


187
188
189
190
191
192
# File 'lib/aws-sdk-sns/types.rb', line 187

class CreatePlatformApplicationInput < Struct.new(
  :name,
  :platform,
  :attributes)
  include Aws::Structure
end

#nameString

Application names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, hyphens, and periods, and must be between 1 and 256 characters long.

Returns:

  • (String)


187
188
189
190
191
192
# File 'lib/aws-sdk-sns/types.rb', line 187

class CreatePlatformApplicationInput < Struct.new(
  :name,
  :platform,
  :attributes)
  include Aws::Structure
end

#platformString

The following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS_SANDBOX, and GCM (Google Cloud Messaging).

Returns:

  • (String)


187
188
189
190
191
192
# File 'lib/aws-sdk-sns/types.rb', line 187

class CreatePlatformApplicationInput < Struct.new(
  :name,
  :platform,
  :attributes)
  include Aws::Structure
end