Use the below script for any cmdlet ( ~ Like one highlighted  below ) to identify the parameters that accepts pipeline inputs :

Get-Help Stop-Service -Parameter * | ?{$_.pipelineinput -ne ‘false’} | ft name, type , pipelineinput -AutoSize

pipe

Happy Learning 🙂