Module Values.DimensionMappingSource

This type is used to map column(s) from the query result to a dimension in the destination table.

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

    Column name from query result.

    *)
  2. dimensionValueType : DimensionValueType.t;
    (*

    Type for the dimension.

    *)
}
Sourceval context_ : string
Sourceval make : name:SchemaName.t -> dimensionValueType:DimensionValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SchemaName.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