:doc:`IoTEvents <../../iotevents>` / Client / list_input_routings

*******************
list_input_routings
*******************



.. py:method:: IoTEvents.Client.list_input_routings(**kwargs)

  

  Lists one or more input routings.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotevents-2018-07-27/ListInputRoutings>`_  


  **Request Syntax**
  ::

    response = client.list_input_routings(
        inputIdentifier={
            'iotEventsInputIdentifier': {
                'inputName': 'string'
            },
            'iotSiteWiseInputIdentifier': {
                'iotSiteWiseAssetModelPropertyIdentifier': {
                    'assetModelId': 'string',
                    'propertyId': 'string'
                }
            }
        },
        maxResults=123,
        nextToken='string'
    )
    
  :type inputIdentifier: dict
  :param inputIdentifier: **[REQUIRED]** 

    The identifer of the routed input.

    

  
    - **iotEventsInputIdentifier** *(dict) --* 

      The identifier of the input routed to AWS IoT Events.

      

    
      - **inputName** *(string) --* **[REQUIRED]** 

        The name of the input routed to AWS IoT Events.

        

      
    
    - **iotSiteWiseInputIdentifier** *(dict) --* 

      The identifer of the input routed from AWS IoT SiteWise.

      

    
      - **iotSiteWiseAssetModelPropertyIdentifier** *(dict) --* 

        The identifier of the AWS IoT SiteWise asset model property.

        

      
        - **assetModelId** *(string) --* **[REQUIRED]** 

          The ID of the AWS IoT SiteWise asset model.

          

        
        - **propertyId** *(string) --* **[REQUIRED]** 

          The ID of the AWS IoT SiteWise asset property.

          

        
      
    
  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be returned per request.

    

  
  :type nextToken: string
  :param nextToken: 

    The token that you can use to return the next set of results.

    

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

    
    ::

      {
          'routedResources': [
              {
                  'name': 'string',
                  'arn': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **routedResources** *(list) --* 

        Summary information about the routed resources.

        
        

        - *(dict) --* 

          Contains information about the routed resource.

          
          

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

            The name of the routed resource.

            
          

          - **arn** *(string) --* 

            The ARN of the routed resource. For more information, see `Amazon Resource Names (ARNs) <https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html>`__ in the *AWS General Reference*.

            
      
    
      

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

        The token that you can use to return the next set of results, or ``null`` if there are no more results.

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

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

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

  
  *   :py:class:`IoTEvents.Client.exceptions.ServiceUnavailableException`

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

  