Interface CfnIdNamespace.NamespaceRuleBasedPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespace.NamespaceRuleBasedPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnIdNamespace
These properties define how the ID namespace can be used in an ID mapping 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.*;
NamespaceRuleBasedPropertiesProperty namespaceRuleBasedPropertiesProperty = NamespaceRuleBasedPropertiesProperty.builder()
.attributeMatchingModel("attributeMatchingModel")
.recordMatchingModels(List.of("recordMatchingModels"))
.ruleDefinitionTypes(List.of("ruleDefinitionTypes"))
.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 forCfnIdNamespace.NamespaceRuleBasedPropertiesPropertystatic final classAn implementation forCfnIdNamespace.NamespaceRuleBasedPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeMatchingModel
The comparison type. You can either chooseONE_TO_ONEorMANY_TO_MANYas theattributeMatchingModel.If you choose
ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for theEmailattribute type, the system will only consider it a match if the value of theEmailfield of Profile A matches the value of theEmailfield of Profile B.If you choose
MANY_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 matches the value ofBusinessEmailfield of Profile B, the two profiles are matched on theEmailattribute type.- See Also:
-
getRecordMatchingModels
The type of matching record that is allowed to be used in an ID mapping workflow.If the value is set to
ONE_SOURCE_TO_ONE_TARGET, only one record in the source is matched to one record in the target.If the value is set to
MANY_SOURCE_TO_ONE_TARGET, all matching records in the source are matched to one record in the target.- See Also:
-
getRuleDefinitionTypes
The sets of rules you can use in an ID mapping workflow.The limitations specified for the source and target must be compatible.
- See Also:
-
getRules
The rules for the ID namespace.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespace.RuleProperty>- See Also:
-
builder
-