interface IdNamespaceIdMappingWorkflowPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdNamespacePropsMixin_IdNamespaceIdMappingWorkflowPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdNamespacePropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const idNamespaceIdMappingWorkflowPropertiesProperty: entityresolution_mixins.CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty = {
idMappingType: 'idMappingType',
providerProperties: {
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
},
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
(optional)
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