Invokes deployed function. It allows to send event data to the function, read logs and display other important information of the function invocation.
serverless invoke --function functionName
--function
or -f
The name of the function in your service that you want to invoke. Required.--data
or -d
Data you want to pass into the function.serverless invoke --function functionName
This example will invoke the deployed function and output the result of the invocation in the terminal.
serverless invoke --function functionName --data '{"name": "Bernie"}'
This example will invoke the function with the provided data and output the result in the terminal.
Product