Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/awscli/examples/cloudformation/describe-account-limits.rst
1567 views
**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
            }
        ]
    }