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

***********
list_inputs
***********



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

  

  Lists the inputs you have created.

  

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


  **Request Syntax**
  ::

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

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

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be returned per request.

    

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

    
    ::

      {
          'inputSummaries': [
              {
                  'inputName': 'string',
                  'inputDescription': 'string',
                  'inputArn': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdateTime': datetime(2015, 1, 1),
                  'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **inputSummaries** *(list) --* 

        Summary information about the inputs.

        
        

        - *(dict) --* 

          Information about the input.

          
          

          - **inputName** *(string) --* 

            The name of the input.

            
          

          - **inputDescription** *(string) --* 

            A brief description of the input.

            
          

          - **inputArn** *(string) --* 

            The ARN of the input.

            
          

          - **creationTime** *(datetime) --* 

            The time the input was created.

            
          

          - **lastUpdateTime** *(datetime) --* 

            The last time the input was updated.

            
          

          - **status** *(string) --* 

            The status of the input.

            
      
    
      

      - **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`

  