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

*************************
list_environment_profiles
*************************



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

  

  Lists Amazon DataZone environment profiles.

  

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


  **Request Syntax**
  ::

    response = client.list_environment_profiles(
        domainIdentifier='string',
        awsAccountId='string',
        awsAccountRegion='string',
        environmentBlueprintIdentifier='string',
        projectIdentifier='string',
        name='string',
        nextToken='string',
        maxResults=123
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The identifier of the Amazon DataZone domain.

    

  
  :type awsAccountId: string
  :param awsAccountId: 

    The identifier of the Amazon Web Services account where you want to list environment profiles.

    

  
  :type awsAccountRegion: string
  :param awsAccountRegion: 

    The Amazon Web Services region where you want to list environment profiles.

    

  
  :type environmentBlueprintIdentifier: string
  :param environmentBlueprintIdentifier: 

    The identifier of the blueprint that was used to create the environment profiles that you want to list.

    

  
  :type projectIdentifier: string
  :param projectIdentifier: 

    The identifier of the Amazon DataZone project.

    

  
  :type name: string
  :param name: 

  
  :type nextToken: string
  :param nextToken: 

    When the number of environment 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 environment profiles, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentProfiles`` to list the next set of environment profiles.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of environment profiles to return in a single call to ``ListEnvironmentProfiles``. When the number of environment 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 ``ListEnvironmentProfiles`` to list the next set of environment profiles.

    

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

    
    ::

      {
          'items': [
              {
                  'id': 'string',
                  'domainId': 'string',
                  'awsAccountId': 'string',
                  'awsAccountRegion': 'string',
                  'createdBy': 'string',
                  'createdAt': datetime(2015, 1, 1),
                  'updatedAt': datetime(2015, 1, 1),
                  'name': 'string',
                  'description': 'string',
                  'environmentBlueprintId': 'string',
                  'projectId': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The results of the ``ListEnvironmentProfiles`` action.

        
        

        - *(dict) --* 

          The details of an environment profile.

          
          

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

            The identifier of the environment profile.

            
          

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

            The identifier of the Amazon DataZone domain in which the environment profile exists.

            
          

          - **awsAccountId** *(string) --* 

            The identifier of an Amazon Web Services account in which an environment profile exists.

            
          

          - **awsAccountRegion** *(string) --* 

            The Amazon Web Services Region in which an environment profile exists.

            
          

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

            The Amazon DataZone user who created the environment profile.

            
          

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

            The timestamp of when an environment profile was created.

            
          

          - **updatedAt** *(datetime) --* 

            The timestamp of when the environment profile was updated.

            
          

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

            The name of the environment profile.

            
          

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

            The description of the environment profile.

            
          

          - **environmentBlueprintId** *(string) --* 

            The identifier of a blueprint with which an environment profile is created.

            
          

          - **projectId** *(string) --* 

            The identifier of a project in which an environment profile exists.

            
      
    
      

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

        When the number of environment 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 environment profiles, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentProfiles`` to list the next set of environment 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`

  