:doc:`DataZone <../../datazone>` / Client / list_project_profiles

*********************
list_project_profiles
*********************



.. py:method:: DataZone.Client.list_project_profiles(**kwargs)

  

  Lists project profiles.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectProfiles>`_  


  **Request Syntax**
  ::

    response = client.list_project_profiles(
        domainIdentifier='string',
        name='string',
        sortBy='NAME',
        sortOrder='ASCENDING'|'DESCENDING',
        nextToken='string',
        maxResults=123
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The ID of the domain where you want to list project profiles.

    

  
  :type name: string
  :param name: 

    The name of a project profile.

    

  
  :type sortBy: string
  :param sortBy: 

    Specifies by what to sort project profiles.

    

  
  :type sortOrder: string
  :param sortOrder: 

    Specifies the sort order of the project profiles.

    

  
  :type nextToken: string
  :param nextToken: 

    When the number of project profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of project profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectProfiles to list the next set of project profiles.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of project profiles to return in a single call to ListProjectProfiles. When the number of project profiles to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListProjectProfiles to list the next set of project profiles.

    

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

    
    ::

      {
          'items': [
              {
                  'domainId': 'string',
                  'id': 'string',
                  'name': 'string',
                  'description': 'string',
                  'status': 'ENABLED'|'DISABLED',
                  'createdBy': 'string',
                  'createdAt': datetime(2015, 1, 1),
                  'lastUpdatedAt': datetime(2015, 1, 1),
                  'domainUnitId': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **items** *(list) --* 

        The results of the ListProjectProfiles action.

        
        

        - *(dict) --* 

          The summary of a project profile.

          
          

          - **domainId** *(string) --* 

            The domain ID of the project profile.

            
          

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

            The ID of the project profile.

            
          

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

            The name of a project profile.

            
          

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

            The description of the project profile.

            
          

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

            The status of a project profile.

            
          

          - **createdBy** *(string) --* 

            The user who created the project profile.

            
          

          - **createdAt** *(datetime) --* 

            The timestamp of when the project profile was created.

            
          

          - **lastUpdatedAt** *(datetime) --* 

            The timestamp at which a project profile was last updated.

            
          

          - **domainUnitId** *(string) --* 

            The domain unit ID of the project profile.

            
      
    
      

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

        When the number of project profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of project profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectProfiles to list the next set of project profiles.

        
  
  **Exceptions**
  
  *   :py:class:`DataZone.Client.exceptions.InternalServerException`

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

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

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

  
  *   :py:class:`DataZone.Client.exceptions.UnauthorizedException`

  