Interface CfnMatchingWorkflow.RuleConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflow.RuleConditionProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflow
@Stability(Stable)
public static interface CfnMatchingWorkflow.RuleConditionProperty
extends software.amazon.jsii.JsiiSerializable
An object that defines the
ruleCondition
and the ruleName
to use in a matching workflow.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.entityresolution.*; RuleConditionProperty ruleConditionProperty = RuleConditionProperty.builder() .condition("condition") .ruleName("ruleName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMatchingWorkflow.RuleConditionProperty
static final class
An implementation forCfnMatchingWorkflow.RuleConditionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCondition
A statement that specifies the conditions for a matching rule.If your data is accurate, use an Exact matching function:
Exact
orExactManyToMany
.If your data has variations in spelling or pronunciation, use a Fuzzy matching function:
Cosine
,Levenshtein
, orSoundex
.Use operators if you want to combine (
AND
), separate (OR
), or group matching functions(...)
.For example:
(Cosine(a, 10) AND Exact(b, true)) OR ExactManyToMany(c, d)
- See Also:
-
getRuleName
A name for the matching rule.For example:
Rule1
- See Also:
-
builder
-