RuleCondition
An object that defines the ruleCondition
and the ruleName
to
use in a matching workflow.
Contents
- condition
-
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)
Type: String
Length Constraints: Minimum length of 0. Maximum length of 2048.
Required: Yes
- ruleName
-
A name for the matching rule.
For example:
Rule1
Type: String
Length Constraints: Minimum length of 0. Maximum length of 255.
Pattern:
[a-zA-Z_0-9- ]*
Required: Yes
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: