Values.StartReadSetExportJobRequestSourceStarts a read set export job. When the export job is finished, the read set is exported to an Amazon S3 bucket which can be retrieved using the GetReadSetExportJob API operation. To monitor the status of the export job, use the ListReadSetExportJobs API operation.
type nonrec t = {sequenceStoreId : SequenceStoreId.t;The read set's sequence store ID.
*)destination : S3Destination.t;A location for exported files in Amazon S3.
*)roleArn : RoleArn.t;A service role for the job.
*)clientToken : ClientToken.t option;To ensure that jobs don't run multiple times, specify a unique token for each job.
*)sources : StartReadSetExportJobRequestSourcesList.t;The job's source files.
*)}val make :
?clientToken:??? ->
sequenceStoreId:SequenceStoreId.t ->
destination:S3Destination.t ->
roleArn:RoleArn.t ->
sources:StartReadSetExportJobRequestSourcesList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of ReadSetId.t ]) list ]
list
| `String of SequenceStoreId.t ])
list ]