interface RuleBasedPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.RuleBasedPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_RuleBasedPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.RuleBasedPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.RuleBasedPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » RuleBasedPropertiesProperty |
An object which defines the list of matching rules to run 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const ruleBasedPropertiesProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.RuleBasedPropertiesProperty = {
attributeMatchingModel: 'attributeMatchingModel',
matchPurpose: 'matchPurpose',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The comparison type. You can choose ONE_TO_ONE or MANY_TO_MANY as the attributeMatchingModel . |
| match | string | An indicator of whether to generate IDs and index the data or not. |
| rules? | IResolvable | (IResolvable | Rule)[] | A list of Rule objects, each of which have fields RuleName and MatchingKeys . |
attributeMatchingModel?
Type:
string
(optional)
The comparison type. You can choose ONE_TO_ONE or MANY_TO_MANY as the attributeMatchingModel .
If you choose ONE_TO_ONE , the system can only match attributes if the sub-types are an exact match. For example, for the Email attribute type, the system will only consider it a match if the value of the Email field of Profile A matches the value of the Email field 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 the Email field of Profile A and the value of BusinessEmail field of Profile B matches, the two profiles are matched on the Email attribute type.
matchPurpose?
Type:
string
(optional)
An indicator of whether to generate IDs and index the data or not.
If you choose IDENTIFIER_GENERATION , the process generates IDs and indexes the data.
If you choose INDEXING , the process indexes the data without generating IDs.
rules?
Type:
IResolvable | (IResolvable | Rule)[]
(optional)
A list of Rule objects, each of which have fields RuleName and MatchingKeys .

.NET
Go
Java
Python
TypeScript