Module Values.CaseRuleSummarySource

Summary information of this case rule. 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. caseRuleId : CaseRuleId.t option;
    (*

    Unique identifier of a case rule.

    *)
  2. name : CaseRuleName.t option;
    (*

    Name of the case rule.

    *)
  3. caseRuleArn : CaseRuleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the case rule.

    *)
  4. ruleType : RuleType.t option;
    (*

    Possible types for a rule.

    *)
  5. description : CaseRuleDescription.t option;
    (*

    Description of a case rule.

    *)
}
Sourceval make : ?caseRuleId:??? -> ?name:??? -> ?caseRuleArn:??? -> ?ruleType:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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