Values.FeatureTransformationSourceProvides feature transformation information. Feature transformation is the process of modifying raw input data into a form more suitable for model training.
type nonrec t = {name : Name.t option;The name of the feature transformation.
*)featureTransformationArn : Arn.t option;The Amazon Resource Name (ARN) of the FeatureTransformation object.
*)defaultParameters : FeaturizationParameters.t option;Provides the default parameters for feature transformation.
*)creationDateTime : Date.t option;The creation date and time (in Unix time) of the feature transformation.
*)lastUpdatedDateTime : Date.t option;The last update date and time (in Unix time) of the feature transformation.
*)status : Status.t option;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
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of ParameterName.t ]
* [> `String of ParameterValue.t ])
list
| `String of Name.t
| `Timestamp of Date.t ])
list ]