Module Values.ExportJobPropertiesSource

The properties of a FHIR export job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The export job identifier.

    *)
  2. jobName : JobName.t option;
    (*

    The export job name.

    *)
  3. jobStatus : JobStatus.t option;
    (*

    The export job status.

    *)
  4. submitTime : Timestamp.t option;
    (*

    The time the export job was initiated.

    *)
  5. endTime : Timestamp.t option;
    (*

    The time the export job completed.

    *)
  6. datastoreId : DatastoreId.t option;
    (*

    The data store identifier from which files are being exported.

    *)
  7. outputDataConfig : OutputDataConfig.t option;
    (*

    The output data configuration supplied when the export job was created.

    *)
  8. dataAccessRoleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) used during the initiation of the export job.

    *)
  9. message : Message.t option;
    (*

    An explanation of any errors that might have occurred during the export job.

    *)
}
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?jobStatus:??? -> ?submitTime:??? -> ?endTime:??? -> ?datastoreId:??? -> ?outputDataConfig:??? -> ?dataAccessRoleArn:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.t | `Structure of (string * [> `Structure of (string * [> `String of S3Uri.t ]) list ]) list | `Timestamp of Timestamp.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