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

.NET
Go
Java
Python
TypeScript