AirPlaySecurity
The payload that configures Apple TV for a particular style of AirPlay security.
Declaration
object AirPlaySecurityProperties
| Name | Type | Description |
|---|---|---|
AccessType Required | string | The access policy for AirPlay.
|
Password | string | The AirPlay password; required if |
SecurityType Required | string | The security policy for AirPlay. Allowed values:
|
Discussion
Specify com.apple.airplay.security as the payload type.
Profile availability
Device channel | tvOS |
User channel | NA |
Allow manual install | tvOS |
Requires supervision | NA |
Requires user-approved MDM | NA |
Allowed in user enrollment | NA |
Allow multiple payloads | NA |
Profile example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>Password</key>
<string>MyPassword</string>
<key>PayloadIdentifier</key>
<string>com.example.myairplaysecuritypayload</string>
<key>PayloadType</key>
<string>com.apple.airplay.security</string>
<key>PayloadUUID</key>
<string>c0b60f19-91c7-482e-9a95-6ba71220d93e</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>SecurityType</key>
<string>PASSWORD</string>
<key>AccessType</key>
<string>ANY</string>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>AirPlay Security</string>
<key>PayloadIdentifier</key>
<string>com.example.myprofile</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>40dc47ea-41c9-4c79-8b30-a027cf6eacd6</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>