:doc:`CloudWatchEvidently <../../evidently>` / Client / list_projects

*************
list_projects
*************



.. py:method:: CloudWatchEvidently.Client.list_projects(**kwargs)

  

  Returns configuration details about all the projects in the current Region in your account.

  

  .. 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/evidently-2021-02-01/ListProjects>`_  


  **Request Syntax**
  ::

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

    The maximum number of results to include in the response.

    

  
  :type nextToken: string
  :param nextToken: 

    The token to use when requesting the next set of results. You received this token from a previous ``ListProjects`` operation.

    

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

    
    ::

      {
          'nextToken': 'string',
          'projects': [
              {
                  'activeExperimentCount': 123,
                  'activeLaunchCount': 123,
                  'arn': 'string',
                  'createdTime': datetime(2015, 1, 1),
                  'description': 'string',
                  'experimentCount': 123,
                  'featureCount': 123,
                  'lastUpdatedTime': datetime(2015, 1, 1),
                  'launchCount': 123,
                  'name': 'string',
                  'status': 'AVAILABLE'|'UPDATING',
                  'tags': {
                      'string': 'string'
                  }
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The token to use in a subsequent ``ListProjects`` operation to return the next set of results.

        
      

      - **projects** *(list) --* 

        An array of structures that contain the configuration details of the projects in the Region.

        
        

        - *(dict) --* 

          A structure that contains configuration information about an Evidently project.

          
          

          - **activeExperimentCount** *(integer) --* 

            The number of experiments currently in the project.

            
          

          - **activeLaunchCount** *(integer) --* 

            The number of ongoing launches currently in the project.

            
          

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

            The name or ARN of the project.

            
          

          - **createdTime** *(datetime) --* 

            The date and time that the project is created.

            
          

          - **description** *(string) --* 

            The description of the project.

            
          

          - **experimentCount** *(integer) --* 

            The number of experiments currently in the project.

            
          

          - **featureCount** *(integer) --* 

            The number of features currently in the project.

            
          

          - **lastUpdatedTime** *(datetime) --* 

            The date and time that the project was most recently updated.

            
          

          - **launchCount** *(integer) --* 

            The number of launches currently in the project, including launches that are ongoing, completed, and not started yet.

            
          

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

            The name of the project.

            
          

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

            The current state of the project.

            
          

          - **tags** *(dict) --* 

            The list of tag keys and values associated with this project.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
  
  **Exceptions**
  
  *   :py:class:`CloudWatchEvidently.Client.exceptions.ThrottlingException`

  
  *   :py:class:`CloudWatchEvidently.Client.exceptions.ValidationException`

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

  