Apple iOS capabilities are fairly different from Android:
https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1
The main common features are already supported: subject and detail. APNS does allow a sound to be specified, however that sound must be included in the application (unlike GCM which allows a sound URL). Additionally, the "number" can be specified as an APNS "badge", however, ICEmobile-SX/BridgeIt can be used by multiple different web applications, so the badge would be ambiguous.
APNS supports notification metadata, so even though, say a vibration mode cannot be specified in the API, it may be possible to define a custom metadata attribute for vibration and implement this directly in the iOS client. However, the metadata would likely not be available until the user viewed the notification, resulting in the vibration occurring too late.
The basic question here is, where are the notification options configured? Should it be driven from the server-side application, or a user preference at the container?