:doc:`IoTAnalytics <../../iotanalytics>` / Client / list_pipelines

**************
list_pipelines
**************



.. py:method:: IoTAnalytics.Client.list_pipelines(**kwargs)

  

  Retrieves a list of pipelines.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotanalytics-2017-11-27/ListPipelines>`_  


  **Request Syntax**
  ::

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

    The token for the next set of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return in this request.

     

    The default value is 100.

    

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

    
    ::

      {
          'pipelineSummaries': [
              {
                  'pipelineName': 'string',
                  'reprocessingSummaries': [
                      {
                          'id': 'string',
                          'status': 'RUNNING'|'SUCCEEDED'|'CANCELLED'|'FAILED',
                          'creationTime': datetime(2015, 1, 1)
                      },
                  ],
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdateTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **pipelineSummaries** *(list) --* 

        A list of ``PipelineSummary`` objects.

        
        

        - *(dict) --* 

          A summary of information about a pipeline.

          
          

          - **pipelineName** *(string) --* 

            The name of the pipeline.

            
          

          - **reprocessingSummaries** *(list) --* 

            A summary of information about the pipeline reprocessing.

            
            

            - *(dict) --* 

              Information about pipeline reprocessing.

              
              

              - **id** *(string) --* 

                The ``reprocessingId`` returned by ``StartPipelineReprocessing``.

                
              

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

                The status of the pipeline reprocessing.

                
              

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

                The time the pipeline reprocessing was created.

                
          
        
          

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

            When the pipeline was created.

            
          

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

            When the pipeline was last updated.

            
      
    
      

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

        The token to retrieve the next set of results, or ``null`` if there are no more results.

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

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

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

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

  