Module Values.ImportReadSetSourceItemSource

A source for an import read set job.

Sourcetype nonrec t = {
  1. sourceFiles : SourceFiles.t option;
    (*

    The source files' location in Amazon S3.

    *)
  2. sourceFileType : FileType.t option;
    (*

    The source's file type.

    *)
  3. status : ReadSetImportJobItemStatus.t option;
    (*

    The source's status.

    *)
  4. statusMessage : JobStatusMessage.t option;
    (*

    The source's status message.

    *)
  5. subjectId : SubjectId.t option;
    (*

    The source's subject ID.

    *)
  6. sampleId : SampleId.t option;
    (*

    The source's sample ID.

    *)
  7. generatedFrom : GeneratedFrom.t option;
    (*

    Where the source originated.

    *)
  8. referenceArn : ReferenceArn.t option;
    (*

    The source's genome reference ARN.

    *)
  9. name : ReadSetName.t option;
    (*

    The source's name.

    *)
  10. description : ReadSetDescription.t option;
    (*

    The source's description.

    *)
  11. tags : TagMap.t option;
    (*

    The source's tags.

    *)
  12. readSetId : ReadSetId.t option;
    (*

    The source's read set ID.

    *)
}
Sourceval make : ?sourceFiles:??? -> ?sourceFileType:??? -> ?status:??? -> ?statusMessage:??? -> ?subjectId:??? -> ?sampleId:??? -> ?generatedFrom:??? -> ?referenceArn:??? -> ?name:??? -> ?description:??? -> ?tags:??? -> ?readSetId:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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