:doc:`Personalize <../../personalize>` / Client / describe_feature_transformation

*******************************
describe_feature_transformation
*******************************



.. py:method:: Personalize.Client.describe_feature_transformation(**kwargs)

  

  Describes the given feature transformation.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/DescribeFeatureTransformation>`_  


  **Request Syntax**
  ::

    response = client.describe_feature_transformation(
        featureTransformationArn='string'
    )
    
  :type featureTransformationArn: string
  :param featureTransformationArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the feature transformation to describe.

    

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

    
    ::

      {
          'featureTransformation': {
              'name': 'string',
              'featureTransformationArn': 'string',
              'defaultParameters': {
                  'string': 'string'
              },
              'creationDateTime': datetime(2015, 1, 1),
              'lastUpdatedDateTime': datetime(2015, 1, 1),
              'status': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **featureTransformation** *(dict) --* 

        A listing of the FeatureTransformation properties.

        
        

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

          The name of the feature transformation.

          
        

        - **featureTransformationArn** *(string) --* 

          The Amazon Resource Name (ARN) of the FeatureTransformation object.

          
        

        - **defaultParameters** *(dict) --* 

          Provides the default parameters for feature transformation.

          
          

          - *(string) --* 
            

            - *(string) --* 
      
    
        

        - **creationDateTime** *(datetime) --* 

          The creation date and time (in Unix time) of the feature transformation.

          
        

        - **lastUpdatedDateTime** *(datetime) --* 

          The last update date and time (in Unix time) of the feature transformation.

          
        

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

          The status of the feature transformation.

           

          A feature transformation can be in one of the following states:

           

          
          * CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
          

          
    
  
  **Exceptions**
  
  *   :py:class:`Personalize.Client.exceptions.InvalidInputException`

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

  