Module Values.SlaInputConfigurationSource

Represents the input configuration of an SLA being created.

Sourcetype nonrec t = {
  1. name : SlaName.t;
    (*

    Name of an SLA.

    *)
  2. type_ : SlaType.t;
    (*

    Type of SLA.

    *)
  3. fieldId : FieldId.t option;
    (*

    Unique identifier of a field.

    *)
  4. targetFieldValues : SlaFieldValueUnionList.t option;
    (*

    Represents a list of target field values for the fieldId specified in SlaInputConfiguration. The SLA is considered met if any one of these target field values matches the actual field value.

    *)
  5. targetSlaMinutes : TargetSlaMinutes.t;
    (*

    Target duration in minutes within which an SLA should be completed.

    *)
}
Sourceval context_ : string
Sourceval make : ?fieldId:??? -> ?targetFieldValues:??? -> name:SlaName.t -> type_:SlaType.t -> targetSlaMinutes:TargetSlaMinutes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ] list | `Long of TargetSlaMinutes.t | `String of SlaName.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