interface IdMappingTechniquesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnIdMappingWorkflow_IdMappingTechniquesProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty |
Python | aws_cdk.aws_entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnIdMappingWorkflow » IdMappingTechniquesProperty |
An object which defines the ID mapping technique and any additional configurations.
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 idMappingTechniquesProperty: entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty = {
idMappingType: 'idMappingType',
normalizationVersion: 'normalizationVersion',
providerProperties: {
providerServiceArn: 'providerServiceArn',
// the properties below are optional
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
},
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
recordMatchingModel: 'recordMatchingModel',
// the properties below are optional
ruleDefinitionType: 'ruleDefinitionType',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The type of ID mapping. |
| normalization | string | |
| provider | IResolvable | Provider | An object which defines any additional configurations required by the provider service. |
| rule | IResolvable | Id | An object which defines any additional configurations required by rule-based matching. |
idMappingType?
Type:
string
(optional)
The type of ID mapping.
normalizationVersion?
Type:
string
(optional)
providerProperties?
Type:
IResolvable | Provider
(optional)
An object which defines any additional configurations required by the provider service.
ruleBasedProperties?
Type:
IResolvable | Id
(optional)
An object which defines any additional configurations required by rule-based matching.

.NET
Go
Java
Python
TypeScript