Module Values.CaseRuleErrorSource

Error for batch describe case rules API failure. In the Amazon Connect admin website, case rules are known as case field conditions. For more information about case field conditions, see Add case field conditions to a case template.

Sourcetype nonrec t = {
  1. id : CaseRuleId.t option;
    (*

    The case rule identifier that caused the error.

    *)
  2. errorCode : String_.t option;
    (*

    Error code from getting a case rule.

    *)
  3. message : String_.t option;
    (*

    Error message from getting a case rule.

    *)
}
Sourceval make : ?id:??? -> ?errorCode:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CaseRuleId.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