Module Values.ResourceEvaluationSource

Returns details of a resource evaluation.

Sourcetype nonrec t = {
  1. resourceEvaluationId : ResourceEvaluationId.t option;
    (*

    The ResourceEvaluationId of a evaluation.

    *)
  2. evaluationMode : EvaluationMode.t option;
    (*

    The mode of an evaluation. The valid values are Detective or Proactive.

    *)
  3. evaluationStartTimestamp : Date.t option;
    (*

    The starting time of an execution.

    *)
}
Sourceval make : ?resourceEvaluationId:??? -> ?evaluationMode:??? -> ?evaluationStartTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceEvaluationId.t | `Timestamp of Date.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