Module Values.ImportJobPropertiesSource

The import job properties.

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

    The import job identifier.

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

    The import job name.

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

    The import job status.

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

    The time the import job was submitted for processing.

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

    The time the import job was completed.

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

    The data store identifier.

    *)
  7. inputDataConfig : InputDataConfig.t option;
    (*

    The input data configuration supplied when the import job was created.

    *)
  8. jobOutputDataConfig : OutputDataConfig.t option;
  9. jobProgressReport : JobProgressReport.t option;
    (*

    Displays the progress of the import job, including total resources scanned, total resources imported, and total size of data imported.

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

    The Amazon Resource Name (ARN) that grants AWS HealthLake access to the input data.

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

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

    *)
  12. validationLevel : ValidationLevel.t option;
    (*

    The validation level of the import job.

    *)
}
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?jobStatus:??? -> ?submitTime:??? -> ?endTime:??? -> ?datastoreId:??? -> ?inputDataConfig:??? -> ?jobOutputDataConfig:??? -> ?jobProgressReport:??? -> ?dataAccessRoleArn:??? -> ?message:??? -> ?validationLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.t | `Structure of (string * [> `Double of GenericDouble.t | `Long of GenericLong.t | `String of S3Uri.t | `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