Module Values.InferenceInputNameConfigurationSource

Specifies configuration information for the input data for the inference, including timestamp format and delimiter.

Sourcetype nonrec t = {
  1. timestampFormat : FileNameTimestampFormat.t option;
    (*

    The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).

    *)
  2. componentTimestampDelimiter : ComponentTimestampDelimiter.t option;
    (*

    Indicates the delimiter character used between items in the data.

    *)
}
Sourceval make : ?timestampFormat:??? -> ?componentTimestampDelimiter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FileNameTimestampFormat.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