Hi,
Why not leverage the systems entity UserRole Id attribute? Add this as a foreign key to your queue entity.
You can get the UserRole.Id via an aggregate with a join between User, Role and UserRole, with an filter on User.Id and Role.Name.
That way you only need one aggregate, independent of the number of roles you define.
Regards,
Daniel