:doc:`IoT <../../iot>` / Client / list_billing_groups

*******************
list_billing_groups
*******************



.. py:method:: IoT.Client.list_billing_groups(**kwargs)

  

  Lists the billing groups you have created.

   

  Requires permission to access the `ListBillingGroups <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`__ action.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/ListBillingGroups>`_  


  **Request Syntax**
  ::

    response = client.list_billing_groups(
        nextToken='string',
        maxResults=123,
        namePrefixFilter='string'
    )
    
  :type nextToken: string
  :param nextToken: 

    To retrieve the next set of results, the ``nextToken`` value from a previous response; otherwise **null** to receive the first set of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return per request.

    

  
  :type namePrefixFilter: string
  :param namePrefixFilter: 

    Limit the results to billing groups whose names have the given prefix.

    

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

    
    ::

      {
          'billingGroups': [
              {
                  'groupName': 'string',
                  'groupArn': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **billingGroups** *(list) --* 

        The list of billing groups.

        
        

        - *(dict) --* 

          The name and ARN of a group.

          
          

          - **groupName** *(string) --* 

            The group name.

            
          

          - **groupArn** *(string) --* 

            The group ARN.

            
      
    
      

      - **nextToken** *(string) --* 

        The token to use to get the next set of results, or **null** if there are no additional results.

        
  
  **Exceptions**
  
  *   :py:class:`IoT.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`IoT.Client.exceptions.InternalFailureException`

  
  *   :py:class:`IoT.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`IoT.Client.exceptions.ThrottlingException`

  