Module Values.AssessmentTargetSource

Defines the criteria of assessment.

Sourcetype nonrec t = {
  1. condition : Condition.t;
    (*

    Condition of an assessment.

    *)
  2. name : String_.t;
    (*

    Name of an assessment.

    *)
  3. values : AssessmentTargetValues.t;
    (*

    Values of an assessment.

    *)
}
Sourceval context_ : string
Sourceval make : condition:Condition.t -> name:String_.t -> values:AssessmentTargetValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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