interface MatchingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnMatchingWorkflow.MatchingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_MatchingConfigProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.MatchingConfigProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.MatchingConfigProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » MatchingConfigProperty |
Configuration for matching behavior within rule condition properties.
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 matchingConfigProperty: entityresolution.CfnMatchingWorkflow.MatchingConfigProperty = {
enableTransitiveMatching: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | Enables transitive matching to process records across all rule levels and connect unmatched records to existing match groups. |
enableTransitiveMatching?
Type:
boolean | IResolvable
(optional)
Enables transitive matching to process records across all rule levels and connect unmatched records to existing match groups.

.NET
Go
Java
Python
TypeScript