interface ResolutionTechniquesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.ResolutionTechniquesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_ResolutionTechniquesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.ResolutionTechniquesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.ResolutionTechniquesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const resolutionTechniquesProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.ResolutionTechniquesProperty = {
providerProperties: {
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
},
resolutionType: 'resolutionType',
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
matchPurpose: 'matchPurpose',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
},
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