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 / cloudformation / describe-account-limits.rst
Size: Mime:
**To get information about your account limits**

The following command retrieves a list of regional limits for the current account. ::

    aws cloudformation describe-account-limits

Output::

    {
        "AccountLimits": [
            {
                "Name": "StackLimit",
                "Value": 200
            },
            {
                "Name": "StackOutputsLimit",
                "Value": 60
            },
            {
                "Name": "ConcurrentResourcesLimit",
                "Value": 2500
            }
        ]
    }