Module Values.DataModelSource

Data model for a batch load task.

Sourcetype nonrec t = {
  1. timeColumn : StringValue256.t option;
    (*

    Source column to be mapped to time.

    *)
  2. timeUnit : TimeUnit.t option;
    (*

    The granularity of the timestamp unit. It indicates if the time value is in seconds, milliseconds, nanoseconds, or other supported values. Default is MILLISECONDS.

    *)
  3. dimensionMappings : DimensionMappings.t;
    (*

    Source to target mappings for dimensions.

    *)
  4. multiMeasureMappings : MultiMeasureMappings.t option;
    (*

    Source to target mappings for multi-measure records.

    *)
  5. mixedMeasureMappings : MixedMeasureMappingList.t option;
    (*

    Source to target mappings for measures.

    *)
  6. measureNameColumn : StringValue256.t option;
}
Sourceval context_ : string
Sourceval make : ?timeColumn:??? -> ?timeUnit:??? -> ?multiMeasureMappings:??? -> ?mixedMeasureMappings:??? -> ?measureNameColumn:??? -> dimensionMappings:DimensionMappings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `String of SchemaName.t ]) list ] list | `String of StringValue256.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `String of SchemaName.t ]) list ]) 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