mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
11 lines
448 B
Markdown
11 lines
448 B
Markdown
# Invoking a function
|
|
|
|
Next up we'll invoke the `hello` function from our service (this example function was automatically created when we
|
|
initially created our service).
|
|
|
|
Run `serverless invoke --function hello --stage dev --region us-east-1` to tell Serverless that you want to run the function.
|
|
|
|
The function get's invoked and you should see a message on your console.
|
|
|
|
Great! We've just executed our first function from our Serverless service!
|