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

***********************
get_environment_profile
***********************



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

  

  Gets an evinronment profile in Amazon DataZone.

  

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


  **Request Syntax**
  ::

    response = client.get_environment_profile(
        domainIdentifier='string',
        identifier='string'
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

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

    

  
  :type identifier: string
  :param identifier: **[REQUIRED]** 

    The ID of the environment profile.

    

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

    
    ::

      {
          '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',
          'userParameters': [
              {
                  'keyName': 'string',
                  'description': 'string',
                  'fieldType': 'string',
                  'defaultValue': 'string',
                  'isEditable': True|False,
                  'isOptional': True|False,
                  'isUpdateSupported': True|False
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The ID of the environment profile.

        
      

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

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

        
      

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

        The ID of the Amazon Web Services account where this environment profile exists.

        
      

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

        The Amazon Web Services region where this environment profile exists.

        
      

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

        The Amazon DataZone user who created this environment profile.

        
      

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

        The timestamp of when this environment profile was created.

        
      

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

        The timestamp of when this environment profile was upated.

        
      

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

        The name of the environment profile.

        
      

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

        The description of the environment profile.

        
      

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

        The ID of the blueprint with which this environment profile is created.

        
      

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

        The ID of the Amazon DataZone project in which this environment profile is created.

        
      

      - **userParameters** *(list) --* 

        The user parameters of the environment profile.

        
        

        - *(dict) --* 

          The details of user parameters of an environment blueprint.

          
          

          - **keyName** *(string) --* 

            The key name of the parameter.

            
          

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

            The description of the parameter.

            
          

          - **fieldType** *(string) --* 

            The filed type of the parameter.

            
          

          - **defaultValue** *(string) --* 

            The default value of the parameter.

            
          

          - **isEditable** *(boolean) --* 

            Specifies whether the parameter is editable.

            
          

          - **isOptional** *(boolean) --* 

            Specifies whether the custom parameter is optional.

            
          

          - **isUpdateSupported** *(boolean) --* 

            Specifies whether a parameter value can be updated after creation.

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

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

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

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

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

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

  