Module Values.ImportReferenceSourceItemSource

An genome reference source.

Sourcetype nonrec t = {
  1. sourceFile : S3Uri.t option;
    (*

    The source file's location in Amazon S3.

    *)
  2. status : ReferenceImportJobItemStatus.t option;
    (*

    The source's status.

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

    The source's status message.

    *)
  4. name : ReferenceName.t option;
    (*

    The source's name.

    *)
  5. description : ReferenceDescription.t option;
    (*

    The source's description.

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

    The source's tags.

    *)
  7. referenceId : ReferenceId.t option;
    (*

    The source's reference ID.

    *)
}
Sourceval make : ?sourceFile:??? -> ?status:??? -> ?statusMessage:??? -> ?name:??? -> ?description:??? -> ?tags:??? -> ?referenceId:??? -> 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 S3Uri.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