interface ResolutionTechniquesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_entityresolution.CfnMatchingWorkflow.ResolutionTechniquesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_ResolutionTechniquesProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.ResolutionTechniquesProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.ResolutionTechniquesProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » ResolutionTechniquesProperty |
An object which defines the resolutionType and the ruleBasedProperties .
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 resolutionTechniquesProperty: entityresolution.CfnMatchingWorkflow.ResolutionTechniquesProperty = {
providerProperties: {
providerServiceArn: 'providerServiceArn',
// the properties below are optional
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
},
resolutionType: 'resolutionType',
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
// the properties below are optional
matchPurpose: 'matchPurpose',
},
ruleConditionProperties: {
rules: [{
condition: 'condition',
ruleName: 'ruleName',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | IResolvable | Provider | The properties of the provider service. |
| resolution | string | The type of matching workflow to create. Specify one of the following types:. |
| rule | IResolvable | Rule | An object which defines the list of matching rules to run and has a field rules , which is a list of rule objects. |
| rule | IResolvable | Rule | An object containing the rules for a matching workflow. |
providerProperties?
Type:
IResolvable | Provider
(optional)
The properties of the provider service.
resolutionType?
Type:
string
(optional)
The type of matching workflow to create. Specify one of the following types:.
RULE_MATCHING: Match records using configurable rule-based criteriaML_MATCHING: Match records using machine learning modelsPROVIDER: Match records using a third-party matching provider
ruleBasedProperties?
Type:
IResolvable | Rule
(optional)
An object which defines the list of matching rules to run and has a field rules , which is a list of rule objects.
ruleConditionProperties?
Type:
IResolvable | Rule
(optional)
An object containing the rules for a matching workflow.

.NET
Go
Java
Python
TypeScript