interface RuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdNamespacePropsMixin.RuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdNamespacePropsMixin_RuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdNamespacePropsMixin.RuleProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdNamespacePropsMixin.RuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdNamespacePropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const ruleProperty: entityresolution_mixins.CfnIdNamespacePropsMixin.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[]
(optional)
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
(optional)
A name for the matching rule.

.NET
Go
Java
Python
TypeScript