Module Values.InputDataConfigSource

Configuration details for input patient data

Sourcetype nonrec t = {
  1. fhirServer : FHIRServer.t option;
    (*

    FHIR server configuration to retrieve patient data.

    *)
  2. s3Sources : S3Sources.t option;
    (*

    List of S3 sources containing patient data.

    *)
}
Sourceval make : ?fhirServer:??? -> ?s3Sources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of S3Uri.t ]) list ] list | `Structure of (string * [> `String of FHIRServerFhirEndpointString.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