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

***************
list_blueprints
***************



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

  

  Lists all existing Amazon Bedrock Data Automation Blueprints

  

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


  **Request Syntax**
  ::

    response = client.list_blueprints(
        blueprintArn='string',
        resourceOwner='SERVICE'|'ACCOUNT',
        blueprintStageFilter='DEVELOPMENT'|'LIVE'|'ALL',
        maxResults=123,
        nextToken='string',
        projectFilter={
            'projectArn': 'string',
            'projectStage': 'DEVELOPMENT'|'LIVE'
        }
    )
    
  :type blueprintArn: string
  :param blueprintArn: 

    ARN of a Blueprint

    

  
  :type resourceOwner: string
  :param resourceOwner: 

    Resource Owner

    

  
  :type blueprintStageFilter: string
  :param blueprintStageFilter: 

    Blueprint Stage filter

    

  
  :type maxResults: integer
  :param maxResults: 

    Max Results

    

  
  :type nextToken: string
  :param nextToken: 

    Pagination token

    

  
  :type projectFilter: dict
  :param projectFilter: 

    Data Automation Project Filter

    

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

      ARN of a DataAutomationProject

      

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

      Stage of the Project

      

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

    
    ::

      {
          'blueprints': [
              {
                  'blueprintArn': 'string',
                  'blueprintVersion': 'string',
                  'blueprintStage': 'DEVELOPMENT'|'LIVE',
                  'blueprintName': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastModifiedTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      List Blueprint Response

      
      

      - **blueprints** *(list) --* 

        List of Blueprints

        
        

        - *(dict) --* 

          Summary of a Blueprint

          
          

          - **blueprintArn** *(string) --* 

            ARN of a Blueprint

            
          

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

            Blueprint Version

            
          

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

            Stage of the Blueprint

            
          

          - **blueprintName** *(string) --* 

            Name of the Blueprint

            
          

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

            Time Stamp

            
          

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

  