Values.GetReadSetExportJobResponseSourceRetrieves status information about a read set export job and returns the data in JSON format. Use this operation to actively monitor the progress of an export job.
type nonrec t = {id : ExportJobId.t option;The job's ID.
*)sequenceStoreId : SequenceStoreId.t option;The job's sequence store ID.
*)destination : S3Destination.t option;The job's destination in Amazon S3.
*)status : ReadSetExportJobStatus.t option;The job's status.
*)statusMessage : JobStatusMessage.t option;The job's status message.
*)creationTime : SyntheticTimestamp_date_time.t option;When the job was created.
*)completionTime : SyntheticTimestamp_date_time.t option;When the job completed.
*)readSets : ExportReadSetDetailList.t option;The job's read sets.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `RequestTimeoutException of RequestTimeoutException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of
(string * [> `Enum of string | `String of ReadSetId.t ]) list ]
list
| `String of ExportJobId.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]