Module Values.FeatureTransformationSource

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

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the feature transformation.

    *)
  2. featureTransformationArn : Arn.t option;
    (*

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

    *)
  3. defaultParameters : FeaturizationParameters.t option;
    (*

    Provides the default parameters for feature transformation.

    *)
  4. creationDateTime : Date.t option;
    (*

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

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

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

    *)
  6. 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

    *)
}
Sourceval make : ?name:??? -> ?featureTransformationArn:??? -> ?defaultParameters:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?status:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t