Module Values.CalculationResultSource

Contains information about an application-specific calculation result.

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

    The Amazon S3 location of the stdout file for the calculation.

    *)
  2. stdErrorS3Uri : S3Uri.t option;
    (*

    The Amazon S3 location of the stderr error messages file for the calculation.

    *)
  3. resultS3Uri : S3Uri.t option;
    (*

    The Amazon S3 location of the folder for the calculation results.

    *)
  4. resultType : CalculationResultType.t option;
    (*

    The data format of the calculation result.

    *)
}
Sourceval make : ?stdOutS3Uri:??? -> ?stdErrorS3Uri:??? -> ?resultS3Uri:??? -> ?resultType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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