interface RuleProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_entityresolution.CfnIdNamespace.RuleProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnIdNamespace_RuleProperty | 
|  Java | software.amazon.awscdk.services.entityresolution.CfnIdNamespace.RuleProperty | 
|  Python | aws_cdk.aws_entityresolution.CfnIdNamespace.RuleProperty | 
|  TypeScript | aws-cdk-lib»aws_entityresolution»CfnIdNamespace»RuleProperty | 
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 { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const ruleProperty: entityresolution.CfnIdNamespace.RuleProperty = {
  matchingKeys: ['matchingKeys'],
  ruleName: 'ruleName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| matching | string[] | A list of MatchingKeys. | 
| rule | string | A name for the matching rule. | 
matchingKeys
Type:
string[]
A list of MatchingKeys .
The MatchingKeys must have been defined in the SchemaMapping . Two records are considered to match according to this rule if all of the MatchingKeys match.
ruleName
Type:
string
A name for the matching rule.
