Values.ExportJobSummarySourceThis is the summary of an export job.
type nonrec t = {exportJobIdentifier : GenericId.t option;This is the unique string that identifies a specific export job.
*)exportJobArn : ExportJobArn.t option;This is the unique ARN (Amazon Resource Name) that belongs to the new export job.
*)status : ExportJobStatus.t option;The status of the export job is one of the following: CREATED; RUNNING; FAILED; or COMPLETED.
*)creationTime : Timestamp.t option;This is a timestamp of the time the export job was created.
*)completionTime : Timestamp.t option;This is a timestamp of the time the export job compeleted.
*)statusMessage : String_.t option;A status message is a string that is returned for an export job. A status message is included for any status other than COMPLETED without issues.
*)searchJobArn : SearchJobArn.t option;The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of GenericId.t
| `Timestamp of Timestamp.t ])
list ]