feature_transformations
Creates, updates, deletes, gets or lists a feature_transformations resource.
Overview
| Name | feature_transformations |
| Type | Resource |
| Id | aws.personalize.feature_transformations |
Fields
The following fields are returned by SELECT queries:
- describe_feature_transformation
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the feature transformation. (pattern: <code>^[a-zA-Z0-9][a-zA-Z0-9-_]*</code>) |
creation_date_time | string (date-time) | The creation date and time (in Unix time) of the feature transformation. |
default_parameters | object | Provides the default parameters for feature transformation. |
feature_transformation_arn | string | The Amazon Resource Name (ARN) of the FeatureTransformation object. (pattern: <code>arn:([a-z\d-]+):personalize:.:.:.+</code>) |
last_updated_date_time | string (date-time) | 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 |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_feature_transformation | select | region | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_feature_transformation
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
;