Like @Davi said, its not possible to use intrepolate expressions (like ['get', 'rotation']) with the property icon-rotation-alignment.
I also tried to find the way to update the properties of layer, which is actually possible with setLayoutProperty but not for single feature.
(And actually even that is possible, but not for icon-rotation-alignment because of intrepolate expressions …
Example: map.setPaintProperty('Icons', 'icon-opacity', ['match', ['get', 'id'], 'example-id', 0.5 , 1]);)
I guess for my task (individually change layout property for single feature) the only solution would be – to create separately source and layer for every feature (icon) with different properties.
Hope my experience will help someone ;)