Skip to main content

feature_transformations

Creates, updates, deletes, gets or lists a feature_transformations resource.

Overview

Namefeature_transformations
TypeResource
Idaws.personalize.feature_transformations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the feature transformation. (pattern: <code>^[a-zA-Z0-9][a-zA-Z0-9-_]*</code>)
creation_date_timestring (date-time)The creation date and time (in Unix time) of the feature transformation.
default_parametersobjectProvides the default parameters for feature transformation.
feature_transformation_arnstringThe Amazon Resource Name (ARN) of the FeatureTransformation object. (pattern: <code>arn:([a-z\d-]+):personalize:.:.:.+</code>)
last_updated_date_timestring (date-time)The last update date and time (in Unix time) of the feature transformation.
statusstringThe 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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_feature_transformationselectregionDescribes the given feature transformation.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the given feature transformation.

SELECT
name,
creation_date_time,
default_parameters,
feature_transformation_arn,
last_updated_date_time,
status
FROM aws.personalize.feature_transformations
WHERE region = '{{ region }}' -- required
;