Interface CfnIdMappingWorkflow.RuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingWorkflow.RuleProperty.Jsii$Proxy
- Enclosing class:
CfnIdMappingWorkflow
@Stability(Stable)
public static interface CfnIdMappingWorkflow.RuleProperty
extends software.amazon.jsii.JsiiSerializable
An object containing the
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdMappingWorkflow.RulePropertystatic final classAn implementation forCfnIdMappingWorkflow.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
MatchingKeysmust have been defined in theSchemaMapping. Two records are considered to match according to this rule if all of theMatchingKeysmatch.- See Also:
-
getRuleName
A name for the matching rule.- See Also:
-
builder
-