Personalize / Client / describe_feature_transformation

describe_feature_transformation#

Personalize.Client.describe_feature_transformation(**kwargs)#

Describes the given feature transformation.

See also: AWS API Documentation

Request Syntax

response = client.describe_feature_transformation(
    featureTransformationArn='string'
)
Parameters:

featureTransformationArn (string) –

[REQUIRED]

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

Return type:

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