interface IdMappingTechniquesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdMappingWorkflowPropsMixin.IdMappingTechniquesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdMappingWorkflowPropsMixin_IdMappingTechniquesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingTechniquesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingTechniquesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdMappingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const idMappingTechniquesProperty: entityresolution_mixins.CfnIdMappingWorkflowPropsMixin.IdMappingTechniquesProperty = {
idMappingType: 'idMappingType',
normalizationVersion: 'normalizationVersion',
providerProperties: {
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
},
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
recordMatchingModel: 'recordMatchingModel',
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