interface CfnIdNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdNamespaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdNamespaceMixinProps |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdNamespaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdNamespaceMixinProps |
Properties for CfnIdNamespacePropsMixin.
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 cfnIdNamespaceMixinProps: entityresolution_mixins.CfnIdNamespaceMixinProps = {
description: 'description',
idMappingWorkflowProperties: [{
idMappingType: 'idMappingType',
providerProperties: {
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
},
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
recordMatchingModels: ['recordMatchingModels'],
ruleDefinitionTypes: ['ruleDefinitionTypes'],
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
},
}],
idNamespaceName: 'idNamespaceName',
inputSourceConfig: [{
inputSourceArn: 'inputSourceArn',
schemaName: 'schemaName',
}],
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the ID namespace. |
| id | IResolvable | (IResolvable | Id)[] | Determines the properties of IdMappingWorflow where this IdNamespace can be used as a Source or a Target . |
| id | string | The name of the ID namespace. |
| input | IResolvable | (IResolvable | Id)[] | A list of InputSource objects, which have the fields InputSourceARN and SchemaName . |
| role | string | The Amazon Resource Name (ARN) of the IAM role. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
| type? | string | The type of ID namespace. There are two types: SOURCE and TARGET . |
description?
Type:
string
(optional)
The description of the ID namespace.
idMappingWorkflowProperties?
Type:
IResolvable | (IResolvable | Id)[]
(optional)
Determines the properties of IdMappingWorflow where this IdNamespace can be used as a Source or a Target .
idNamespaceName?
Type:
string
(optional)
The name of the ID namespace.
inputSourceConfig?
Type:
IResolvable | (IResolvable | Id)[]
(optional)
A list of InputSource objects, which have the fields InputSourceARN and SchemaName .
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role.
AWS Entity Resolution assumes this role to access the resources defined in this IdNamespace on your behalf as part of the workflow run.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
type?
Type:
string
(optional)
The type of ID namespace. There are two types: SOURCE and TARGET .
The SOURCE contains configurations for sourceId data that will be processed in an ID mapping workflow.
The TARGET contains a configuration of targetId which all sourceIds will resolve to.

.NET
Go
Java
Python
TypeScript