Module Values.MultiMeasureMappingsSource

Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided. MultiMeasureMappings can be used to ingest data as multi measures in the derived table.

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

    The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name.

    *)
  2. multiMeasureAttributeMappings : MultiMeasureAttributeMappingList.t;
    (*

    Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetMultiMeasureName:??? -> multiMeasureAttributeMappings:MultiMeasureAttributeMappingList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `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