So it is only available as an event. When you subscribe to "audioIn" the first thing you will get is something like:
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><AudioInputName>Audio Component</AudioInputName></e:property><e:property><Icon>AudioComponent</Icon></e:property><e:property><LineInConnected>0</LineInConnected></e:property><e:property><LeftLineInLevel>1</LeftLineInLevel></e:property><e:property><RightLineInLevel>1</RightLineInLevel></e:property></e:propertyset>
LineInConnected is a bool, as specified in the LineIn1.xml.
Note that if you are using a current version of python you will have to fix soco/events.py, as it is still using the depreciated isAlive() rather than is_alive(). Also, if you have logging turned on you will notice that the events code tries to do an HTTP GET during shutdown for some reason.