Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FeatureTransformation

import type { FeatureTransformation } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

Provides feature transformation information. Feature transformation is the process of modifying raw input data into a form more suitable for model training.

interface FeatureTransformation {
creationDateTime?: Date | number | null;
defaultParameters?: {
[key: string]: string | null | undefined;
}
| null;
featureTransformationArn?: string | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
status?: string | null;
}

§Properties

§
creationDateTime?: Date | number | null
[src]

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

§
defaultParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

Provides the default parameters for feature transformation.

§
featureTransformationArn?: string | null
[src]

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

§
lastUpdatedDateTime?: Date | number | null
[src]

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

§
name?: string | null
[src]

The name of the feature transformation.

§
status?: string | null
[src]

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