Module Values.ArtifactDetailsSource

Details about a generated artifact including location and status

Sourcetype nonrec t = {
  1. outputLocation : Uri_.t option;
  2. status : PostStreamArtifactGenerationStatus.t option;
    (*

    The generation status of the artifact

    *)
  3. failureReason : ErrorMessage.t option;
    (*

    The reason for failure if the artifact generation failed

    *)
}
Sourceval make : ?outputLocation:??? -> ?status:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Uri_.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