Module Values.FileBatchJobIdentifierSource

A batch job identifier in which the batch job to run is identified by the file name and the relative path to the file name.

Sourcetype nonrec t = {
  1. fileName : String_.t;
    (*

    The file name for the batch job identifier.

    *)
  2. folderPath : String_.t option;
    (*

    The relative path to the file name for the batch job identifier.

    *)
}
Sourceval context_ : string
Sourceval make : ?folderPath:??? -> fileName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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