:doc:`DataAutomationforBedrock <../../bedrock-data-automation>` / Client / list_data_automation_projects

*****************************
list_data_automation_projects
*****************************



.. py:method:: DataAutomationforBedrock.Client.list_data_automation_projects(**kwargs)

  

  Lists all existing Amazon Bedrock Data Automation Projects

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ListDataAutomationProjects>`_  


  **Request Syntax**
  ::

    response = client.list_data_automation_projects(
        maxResults=123,
        nextToken='string',
        projectStageFilter='DEVELOPMENT'|'LIVE'|'ALL',
        blueprintFilter={
            'blueprintArn': 'string',
            'blueprintVersion': 'string',
            'blueprintStage': 'DEVELOPMENT'|'LIVE'
        },
        resourceOwner='SERVICE'|'ACCOUNT'
    )
    
  :type maxResults: integer
  :param maxResults: 

    Max Results

    

  
  :type nextToken: string
  :param nextToken: 

    Pagination token

    

  
  :type projectStageFilter: string
  :param projectStageFilter: 

    Project Stage filter

    

  
  :type blueprintFilter: dict
  :param blueprintFilter: 

    Blueprint Filter

    

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

      ARN of a Blueprint

      

    
    - **blueprintVersion** *(string) --* 

      Blueprint Version

      

    
    - **blueprintStage** *(string) --* 

      Stage of the Blueprint

      

    
  
  :type resourceOwner: string
  :param resourceOwner: 

    Resource Owner

    

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

    
    ::

      {
          'projects': [
              {
                  'projectArn': 'string',
                  'projectStage': 'DEVELOPMENT'|'LIVE',
                  'projectType': 'ASYNC'|'SYNC',
                  'projectName': 'string',
                  'creationTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      List DataAutomationProject Response

      
      

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

        List of DataAutomationProjectSummary

        
        

        - *(dict) --* 

          Summary of a DataAutomationProject

          
          

          - **projectArn** *(string) --* 

            ARN of a DataAutomationProject

            
          

          - **projectStage** *(string) --* 

            Stage of the Project

            
          

          - **projectType** *(string) --* 

            Type of the DataAutomationProject

            
          

          - **projectName** *(string) --* 

            Name of the DataAutomationProject

            
          

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

            Time Stamp

            
      
    
      

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

        Pagination token

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

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

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

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

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

  