Module Values.FileInformationSource

Details about a file.

Sourcetype nonrec t = {
  1. totalParts : FileInformationTotalPartsInteger.t option;
    (*

    The file's total parts.

    *)
  2. partSize : FileInformationPartSizeLong.t option;
    (*

    The file's part size.

    *)
  3. contentLength : FileInformationContentLengthLong.t option;
    (*

    The file's content length.

    *)
  4. s3Access : ReadSetS3Access.t option;
    (*

    The S3 URI metadata of a sequence store.

    *)
}
Sourceval make : ?totalParts:??? -> ?partSize:??? -> ?contentLength:??? -> ?s3Access:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of FileInformationTotalPartsInteger.t | `Long of FileInformationPartSizeLong.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