Module Values.GetCaseRuleResponseSource

Detailed case rule information. 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. rule : CaseRuleDetails.t option;
    (*

    Represents what rule type should take place, under what conditions.

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

    Description of a case rule.

    *)
  6. deleted : Deleted.t option;
    (*

    Indicates whether the resource has been deleted.

    *)
  7. createdTime : CreatedTime.t option;
    (*

    Timestamp when the resource was created.

    *)
  8. lastModifiedTime : LastModifiedTime.t option;
    (*

    Timestamp when the resource was created or last modified.

    *)
  9. tags : Tags.t option;
    (*

    A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?caseRuleId:??? -> ?name:??? -> ?caseRuleArn:??? -> ?rule:??? -> ?description:??? -> ?deleted:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Deleted.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of CaseRuleId.t | `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list | `Timestamp of CreatedTime.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