Module Values.StartReadSetExportJobRequestSource

Starts 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.

Sourcetype nonrec t = {
  1. sequenceStoreId : SequenceStoreId.t;
    (*

    The read set's sequence store ID.

    *)
  2. destination : S3Destination.t;
    (*

    A location for exported files in Amazon S3.

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

    A service role for the job.

    *)
  4. clientToken : ClientToken.t option;
    (*

    To ensure that jobs don't run multiple times, specify a unique token for each job.

    *)
  5. sources : StartReadSetExportJobRequestSourcesList.t;
    (*

    The job's source files.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> sequenceStoreId:SequenceStoreId.t -> destination:S3Destination.t -> roleArn:RoleArn.t -> sources:StartReadSetExportJobRequestSourcesList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ReadSetId.t ]) list ] list | `String of SequenceStoreId.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