Module Values.RuleBasedMatchingResponseSource

The response of the Rule-based matching request.

Sourcetype nonrec t = {
  1. enabled : OptionalBoolean.t option;
    (*

    The flag that enables the rule-based matching process of duplicate profiles.

    *)
  2. matchingRules : MatchingRules.t option;
    (*

    Configures how the rule-based matching process should match profiles. You can have up to 15 MatchingRule in the MatchingRules.

    *)
  3. status : RuleBasedMatchingStatus.t option;
    (*

    PENDING The first status after configuration a rule-based matching rule. If it is an existing domain, the rule-based Identity Resolution waits one hour before creating the matching rule. If it is a new domain, the system will skip the PENDING stage. IN_PROGRESS The system is creating the rule-based matching rule. Under this status, the system is evaluating the existing data and you can no longer change the Rule-based matching configuration. ACTIVE The rule is ready to use. You can change the rule a day after the status is in ACTIVE.

    *)
  4. maxAllowedRuleLevelForMerging : MaxAllowedRuleLevelForMerging.t option;
    (*

    MatchingRule

    *)
  5. maxAllowedRuleLevelForMatching : MaxAllowedRuleLevelForMatching.t option;
    (*

    Indicates the maximum allowed rule level.

    *)
  6. attributeTypesSelector : AttributeTypesSelector.t option;
    (*

    Configures information about the AttributeTypesSelector where the rule-based identity resolution uses to match profiles.

    *)
  7. conflictResolution : ConflictResolution.t option;
  8. exportingConfig : ExportingConfig.t option;
}
Sourceval make : ?enabled:??? -> ?matchingRules:??? -> ?status:??? -> ?maxAllowedRuleLevelForMerging:??? -> ?maxAllowedRuleLevelForMatching:??? -> ?attributeTypesSelector:??? -> ?conflictResolution:??? -> ?exportingConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OptionalBoolean.t | `Enum of string | `Integer of MaxAllowedRuleLevelForMerging.t | `List of [> `Structure of (string * [> `List of [> `String of String1To255.t ] list ]) list ] list | `Structure of (string * [> `Enum of string | `List of [> `String of String1To255.t ] list | `String of String1To255.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) 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