Jacksonkr
Jacksonkr

Reputation: 32247

AWS Lambda deploy list functions for local

$ sls deploy list functions -s dev

This will display a list of functions that are currently on the remote "dev" environment

Question

Is there a cli helper to see a list the functions that can be executed locally?

Currently I'm looking in my list of definitions (serverless.yml)

Upvotes: 0

Views: 171

Answers (1)

Noel Llevares
Noel Llevares

Reputation: 16077

You can use sls info.

Also, you can use sls print which is very similar to cat serverless.yml.

Upvotes: 1

Related Questions