Module Values.GetReadSetImportJobResponseSource

Gets detailed and status information about a read set import job and returns the data in JSON format.

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. statusMessage : JobStatusMessage.t option;
    (*

    The job's status message.

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

    When the job was created.

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

    When the job completed.

    *)
  8. sources : ImportReadSetSourceList.t option;
    (*

    The job's source files.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `RequestTimeoutException of RequestTimeoutException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?sequenceStoreId:??? -> ?roleArn:??? -> ?status:??? -> ?statusMessage:??? -> ?creationTime:??? -> ?completionTime:??? -> ?sources:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of JobStatusMessage.t | `Structure of (string * [> `String of S3Uri.t ]) list ]) list ] list | `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