Interface CfnMatchingWorkflow.RuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflow.RuleProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflow
@Stability(Stable)
public static interface CfnMatchingWorkflow.RuleProperty
extends software.amazon.jsii.JsiiSerializable
An object containing
RuleName
, and MatchingKeys
.
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.*; RuleProperty ruleProperty = RuleProperty.builder() .matchingKeys(List.of("matchingKeys")) .ruleName("ruleName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMatchingWorkflow.RuleProperty
static final class
An implementation forCfnMatchingWorkflow.RuleProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list ofMatchingKeys
.A name for the matching rule.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatchingKeys
A list ofMatchingKeys
.The
MatchingKeys
must have been defined in theSchemaMapping
. Two records are considered to match according to this rule if all of theMatchingKeys
match.- See Also:
-
getRuleName
A name for the matching rule.- See Also:
-
builder
-