Creates a platform application object for one of the supported push
notification services, such as APNS and FCM, to which devices and mobile
apps may register. You must specify PlatformPrincipal and
PlatformCredential attributes when using the CreatePlatformApplication
action. The PlatformPrincipal is received from the notification service.
For APNS/APNS\_SANDBOX, PlatformPrincipal is \"SSL certificate\". For
FCM, PlatformPrincipal is not applicable. For ADM, PlatformPrincipal is
\"client id\". The PlatformCredential is also received from the
notification service. For WNS, PlatformPrincipal is \"Package Security
Identifier\". For MPNS, PlatformPrincipal is \"TLS certificate\". For
Baidu, PlatformPrincipal is \"API key\".
sns_create_platform_application(Name, Platform, Attributes)[required] 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.
[required] The following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS\_SANDBOX, and FCM (Firebase Cloud Messaging).
[required] For a list of attributes, see SetPlatformApplicationAttributes
svc$create_platform_application(
Name = "string",
Platform = "string",
Attributes = list(
"string"
)
)
For APNS/APNS\_SANDBOX, PlatformCredential is \"private key\". For FCM,
PlatformCredential is \"API key\". For ADM, PlatformCredential is
\"client secret\". For WNS, PlatformCredential is \"secret key\". For
MPNS, PlatformCredential is \"private key\". For Baidu,
PlatformCredential is \"secret key\". The PlatformApplicationArn that is
returned when using CreatePlatformApplication is then used as an
attribute for the CreatePlatformEndpoint action.