Package services.entityresolution
Interface CfnMatchingWorkflow.RuleBasedPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflow.RuleBasedPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflow
@Stability(Stable)
public static interface CfnMatchingWorkflow.RuleBasedPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
An object which defines the list of matching rules to run and has a field
Rules , which is a list of rule objects.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import services.entityresolution.*;
RuleBasedPropertiesProperty ruleBasedPropertiesProperty = RuleBasedPropertiesProperty.builder()
.attributeMatchingModel("attributeMatchingModel")
.rules(List.of(RuleProperty.builder()
.matchingKeys(List.of("matchingKeys"))
.ruleName("ruleName")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflow.RuleBasedPropertiesPropertystatic final classAn implementation forCfnMatchingWorkflow.RuleBasedPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeMatchingModel
The comparison type.You can either choose
ONE_TO_ONEorMANY_TO_MANYas the AttributeMatchingModel. When choosingMANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmailfield of Profile A and the value ofBusinessEmailfield of Profile B matches, the two profiles are matched on theEmailtype. When choosingONE_TO_ONE,the system can only match if the sub-types are exact matches. For example, only when the value of theEmailfield of Profile A and the value of theEmailfield of Profile B matches, the two profiles are matched on theEmailtype.- See Also:
-
getRules
A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.- See Also:
-
builder
-