Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
awscli / awscli / examples / lambda / get-function-concurrency.rst
Size: Mime:
**To view the reserved concurrency setting for a function**

The following ``get-function-concurrency`` example retrieves the reserved concurrency setting for the specified function. ::

    aws lambda get-function-concurrency \
        --function-name my-function

Output::

    {
        "ReservedConcurrentExecutions": 250
    }