interface RuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnMatchingWorkflowPropsMixin.RuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnMatchingWorkflowPropsMixin_RuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnMatchingWorkflowPropsMixin.RuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnMatchingWorkflowPropsMixin.RuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » CfnMatchingWorkflowPropsMixin » 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/cfn-property-mixins';
const ruleProperty: entityresolution.CfnMatchingWorkflowPropsMixin.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