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