Module Values.ExportJobSummarySource

This is the summary of an export job.

Sourcetype nonrec t = {
  1. exportJobIdentifier : GenericId.t option;
    (*

    This is the unique string that identifies a specific export job.

    *)
  2. exportJobArn : ExportJobArn.t option;
    (*

    This is the unique ARN (Amazon Resource Name) that belongs to the new export job.

    *)
  3. status : ExportJobStatus.t option;
    (*

    The status of the export job is one of the following: CREATED; RUNNING; FAILED; or COMPLETED.

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

    This is a timestamp of the time the export job was created.

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

    This is a timestamp of the time the export job compeleted.

    *)
  6. 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.

    *)
  7. searchJobArn : SearchJobArn.t option;
    (*

    The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.

    *)
}
Sourceval make : ?exportJobIdentifier:??? -> ?exportJobArn:??? -> ?status:??? -> ?creationTime:??? -> ?completionTime:??? -> ?statusMessage:??? -> ?searchJobArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GenericId.t | `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