:doc:`ServiceQuotas <../../service-quotas>` / Client / list_service_quota_increase_requests_in_template

************************************************
list_service_quota_increase_requests_in_template
************************************************



.. py:method:: ServiceQuotas.Client.list_service_quota_increase_requests_in_template(**kwargs)

  

  Lists the quota increase requests in the specified quota request template.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/service-quotas-2019-06-24/ListServiceQuotaIncreaseRequestsInTemplate>`_  


  **Request Syntax**
  ::

    response = client.list_service_quota_increase_requests_in_template(
        ServiceCode='string',
        AwsRegion='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type ServiceCode: string
  :param ServiceCode: 

    Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the  ListServices operation.

    

  
  :type AwsRegion: string
  :param AwsRegion: 

    Specifies the Amazon Web Services Region for which you made the request.

    

  
  :type NextToken: string
  :param NextToken: 

    Specifies a value for receiving additional results after you receive a ``NextToken`` response in a previous request. A ``NextToken`` response indicates that more output is available. Set this parameter to the value of the previous call's ``NextToken`` response to indicate where the output should continue from.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    Specifies the maximum number of results that you want included on each page of the response. If you do not include this parameter, it defaults to a value appropriate to the operation. If additional items exist beyond those included in the current response, the ``NextToken`` response element is present and has a value (is not null). Include that value as the ``NextToken`` request parameter in the next call to the operation to get the next part of the results.

     

    .. note::

      

      An API operation can return fewer results than the maximum even when there are more results available. You should check ``NextToken`` after every operation to ensure that you receive all of the results.

      

    

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

    
    ::

      {
          'ServiceQuotaIncreaseRequestInTemplateList': [
              {
                  'ServiceCode': 'string',
                  'ServiceName': 'string',
                  'QuotaCode': 'string',
                  'QuotaName': 'string',
                  'DesiredValue': 123.0,
                  'AwsRegion': 'string',
                  'Unit': 'string',
                  'GlobalQuota': True|False
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ServiceQuotaIncreaseRequestInTemplateList** *(list) --* 

        Information about the quota increase requests.

        
        

        - *(dict) --* 

          Information about a quota increase request.

          
          

          - **ServiceCode** *(string) --* 

            Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the  ListServices operation.

            
          

          - **ServiceName** *(string) --* 

            Specifies the service name.

            
          

          - **QuotaCode** *(string) --* 

            Specifies the quota identifier. To find the quota code for a specific quota, use the  ListServiceQuotas operation, and look for the ``QuotaCode`` response in the output for the quota you want.

            
          

          - **QuotaName** *(string) --* 

            Specifies the quota name.

            
          

          - **DesiredValue** *(float) --* 

            The new, increased value of the quota.

            
          

          - **AwsRegion** *(string) --* 

            The Amazon Web Services Region.

            
          

          - **Unit** *(string) --* 

            The unit of measurement.

            
          

          - **GlobalQuota** *(boolean) --* 

            Indicates whether the quota is global.

            
      
    
      

      - **NextToken** *(string) --* 

        If present, indicates that more output is available than is included in the current response. Use this value in the ``NextToken`` request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the ``NextToken`` response element comes back as ``null``.

        
  
  **Exceptions**
  
  *   :py:class:`ServiceQuotas.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.DependencyAccessDeniedException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.ServiceException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.TooManyRequestsException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.IllegalArgumentException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.AWSServiceAccessNotEnabledException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.TemplatesNotAvailableInRegionException`

  
  *   :py:class:`ServiceQuotas.Client.exceptions.NoAvailableOrganizationException`

  