:doc:`Route53 <../../route53>` / Client / get_reusable_delegation_set_limit

*********************************
get_reusable_delegation_set_limit
*********************************



.. py:method:: Route53.Client.get_reusable_delegation_set_limit(**kwargs)

  

  Gets the maximum number of hosted zones that you can associate with the specified reusable delegation set.

   

  For the default limit, see `Limits <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html>`__ in the *Amazon Route 53 Developer Guide*. To request a higher limit, `open a case <https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&limitType=service-code-route53>`__.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetReusableDelegationSetLimit>`_  


  **Request Syntax**
  ::

    response = client.get_reusable_delegation_set_limit(
        Type='MAX_ZONES_BY_REUSABLE_DELEGATION_SET',
        DelegationSetId='string'
    )
    
  :type Type: string
  :param Type: **[REQUIRED]** 

    Specify ``MAX_ZONES_BY_REUSABLE_DELEGATION_SET`` to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.

    

  
  :type DelegationSetId: string
  :param DelegationSetId: **[REQUIRED]** 

    The ID of the delegation set that you want to get the limit for.

    

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

    
    ::

      {
          'Limit': {
              'Type': 'MAX_ZONES_BY_REUSABLE_DELEGATION_SET',
              'Value': 123
          },
          'Count': 123
      }
      
    **Response Structure**

    

    - *(dict) --* 

      A complex type that contains the requested limit.

      
      

      - **Limit** *(dict) --* 

        The current setting for the limit on hosted zones that you can associate with the specified reusable delegation set.

        
        

        - **Type** *(string) --* 

          The limit that you requested: ``MAX_ZONES_BY_REUSABLE_DELEGATION_SET``, the maximum number of hosted zones that you can associate with the specified reusable delegation set.

          
        

        - **Value** *(integer) --* 

          The current value for the ``MAX_ZONES_BY_REUSABLE_DELEGATION_SET`` limit.

          
    
      

      - **Count** *(integer) --* 

        The current number of hosted zones that you can associate with the specified reusable delegation set.

        
  
  **Exceptions**
  
  *   :py:class:`Route53.Client.exceptions.InvalidInput`

  
  *   :py:class:`Route53.Client.exceptions.NoSuchDelegationSet`

  