System Grab Bag

View all TLDR pages from common (or from all pages)

aws lambda

CLI for AWS lambda. More information: https://docs.aws.amazon.com/cli/latest/reference/lambda/.
  • Run a function:
    aws lambda invoke --function-name {{name}} {{path/to/response}}.json
  • Run a function with an input payload in JSON format:
    aws lambda invoke --function-name {{name}} --payload {{json}} {{path/to/response}}.json
  • List functions:
    aws lambda list-functions
  • Display the configuration of a function:
    aws lambda get-function-configuration --function-name {{name}}
  • List function aliases:
    aws lambda list-aliases --function-name {{name}}
  • Display the reserved concurrency configuration for a function:
    aws lambda get-function-concurrency --function-name {{name}}
  • List which AWS services can invoke the function:
    aws lambda get-policy --function-name {{name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.