:doc:`GroundStation <../../groundstation>` / Client / list_configs

************
list_configs
************



.. py:method:: GroundStation.Client.list_configs(**kwargs)

  

  Returns a list of ``Config`` objects.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListConfigs>`_  


  **Request Syntax**
  ::

    response = client.list_configs(
        maxResults=123,
        nextToken='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    Maximum number of ``Configs`` returned.

    

  
  :type nextToken: string
  :param nextToken: 

    Next token returned in the request of a previous ``ListConfigs`` call. Used to get the next page of results.

    

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

    
    ::

      {
          'nextToken': 'string',
          'configList': [
              {
                  'configId': 'string',
                  'configType': 'antenna-downlink'|'antenna-downlink-demod-decode'|'tracking'|'dataflow-endpoint'|'antenna-uplink'|'uplink-echo'|'s3-recording'|'telemetry-sink',
                  'configArn': 'string',
                  'name': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        Next token returned in the response of a previous ``ListConfigs`` call. Used to get the next page of results.

        
      

      - **configList** *(list) --* 

        List of ``Config`` items.

        
        

        - *(dict) --* 

          An item in a list of ``Config`` objects.

          
          

          - **configId** *(string) --* 

            UUID of a ``Config``.

            
          

          - **configType** *(string) --* 

            Type of a ``Config``.

            
          

          - **configArn** *(string) --* 

            ARN of a ``Config``.

            
          

          - **name** *(string) --* 

            Name of a ``Config``.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`GroundStation.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`GroundStation.Client.exceptions.DependencyException`

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

  