Module Values.ImportReadSetJobItemSource

An import read set job.

Sourcetype nonrec t = {
  1. id : ImportJobId.t option;
    (*

    The job's ID.

    *)
  2. sequenceStoreId : SequenceStoreId.t option;
    (*

    The job's sequence store ID.

    *)
  3. roleArn : RoleArn.t option;
    (*

    The job's service role ARN.

    *)
  4. status : ReadSetImportJobStatus.t option;
    (*

    The job's status.

    *)
  5. creationTime : SyntheticTimestamp_date_time.t option;
    (*

    When the job was created.

    *)
  6. completionTime : SyntheticTimestamp_date_time.t option;
    (*

    When the job completed.

    *)
}
Sourceval make : ?id:??? -> ?sequenceStoreId:??? -> ?roleArn:??? -> ?status:??? -> ?creationTime:??? -> ?completionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImportJobId.t | `Timestamp of SyntheticTimestamp_date_time.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