:doc:`IoTWireless <../../iotwireless>` / Client / list_position_configurations

****************************
list_position_configurations
****************************



.. py:method:: IoTWireless.Client.list_position_configurations(**kwargs)

  

  List position configurations for a given resource, such as positioning solvers.

   

  .. warning::

     

    This action is no longer supported. Calls to retrieve position information should use the `GetResourcePosition <https://docs.aws.amazon.com/iot-wireless/latest/apireference/API_GetResourcePosition.html>`__ API operation instead.

    

  

  .. danger::

        This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.


  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotwireless-2020-11-22/ListPositionConfigurations>`_  


  **Request Syntax**
  ::

    response = client.list_position_configurations(
        ResourceType='WirelessDevice'|'WirelessGateway',
        MaxResults=123,
        NextToken='string'
    )
    
  :type ResourceType: string
  :param ResourceType: 

    Resource type for which position configurations are listed.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return in this operation.

    

  
  :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.

    

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

    
    ::

      {
          'PositionConfigurationList': [
              {
                  'ResourceIdentifier': 'string',
                  'ResourceType': 'WirelessDevice'|'WirelessGateway',
                  'Solvers': {
                      'SemtechGnss': {
                          'Provider': 'Semtech',
                          'Type': 'GNSS',
                          'Status': 'Enabled'|'Disabled',
                          'Fec': 'ROSE'|'NONE'
                      }
                  },
                  'Destination': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **PositionConfigurationList** *(list) --* 

        A list of position configurations.

        
        

        - *(dict) --* 

          The wrapper for a position configuration.

          
          

          - **ResourceIdentifier** *(string) --* 

            Resource identifier for the position configuration.

            
          

          - **ResourceType** *(string) --* 

            Resource type of the resource for the position configuration.

            
          

          - **Solvers** *(dict) --* 

            The details of the positioning solver object used to compute the location.

            
            

            - **SemtechGnss** *(dict) --* 

              The Semtech GNSS solver object details.

              
              

              - **Provider** *(string) --* 

                The vendor of the solver object.

                
              

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

                The type of positioning solver used.

                
              

              - **Status** *(string) --* 

                The status indicating whether the solver is enabled.

                
              

              - **Fec** *(string) --* 

                Whether forward error correction is enabled.

                
          
        
          

          - **Destination** *(string) --* 

            The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.

            
      
    
      

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

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

        
  
  **Exceptions**
  
  *   :py:class:`IoTWireless.Client.exceptions.ValidationException`

  
  *   :py:class:`IoTWireless.Client.exceptions.AccessDeniedException`

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

  
  *   :py:class:`IoTWireless.Client.exceptions.InternalServerException`

  