:doc:`ElasticLoadBalancingv2 <../../elbv2>` / Client / describe_account_limits

***********************
describe_account_limits
***********************



.. py:method:: ElasticLoadBalancingv2.Client.describe_account_limits(**kwargs)

  

  Describes the current Elastic Load Balancing resource limits for your Amazon Web Services account.

   

  For more information, see the following:

   

  
  * `Quotas for your Application Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html>`__
   
  * `Quotas for your Network Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-limits.html>`__
   
  * `Quotas for your Gateway Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/quotas-limits.html>`__
  

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeAccountLimits>`_  


  **Request Syntax**
  ::

    response = client.describe_account_limits(
        Marker='string',
        PageSize=123
    )
    
  :type Marker: string
  :param Marker: 

    The marker for the next set of results. (You received this marker from a previous call.)

    

  
  :type PageSize: integer
  :param PageSize: 

    The maximum number of results to return with this call.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Limits': [
              {
                  'Name': 'string',
                  'Max': 'string'
              },
          ],
          'NextMarker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Limits** *(list) --* 

        Information about the limits.

        
        

        - *(dict) --* 

          Information about an Elastic Load Balancing resource limit for your Amazon Web Services account.

           

          For more information, see the following:

           

          
          * `Quotas for your Application Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html>`__
           
          * `Quotas for your Network Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-limits.html>`__
           
          * `Quotas for your Gateway Load Balancers <https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/quotas-limits.html>`__
          

          
          

          - **Name** *(string) --* 

            The name of the limit.

            
          

          - **Max** *(string) --* 

            The maximum value of the limit.

            
      
    
      

      - **NextMarker** *(string) --* 

        If there are additional results, this is the marker for the next set of results. Otherwise, this is null.

        
  