interface CfnIdMappingWorkflowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdMappingWorkflowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdMappingWorkflowMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdMappingWorkflowMixinProps |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdMappingWorkflowMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdMappingWorkflowMixinProps |
Properties for CfnIdMappingWorkflowPropsMixin.
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 cfnIdMappingWorkflowMixinProps: entityresolution_mixins.CfnIdMappingWorkflowMixinProps = {
description: 'description',
idMappingIncrementalRunConfig: {
incrementalRunType: 'incrementalRunType',
},
idMappingTechniques: {
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',
}],
},
},
inputSourceConfig: [{
inputSourceArn: 'inputSourceArn',
schemaArn: 'schemaArn',
type: 'type',
}],
outputSourceConfig: [{
kmsArn: 'kmsArn',
outputS3Path: 'outputS3Path',
}],
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
workflowName: 'workflowName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the workflow. |
| id | IResolvable | Id | |
| id | IResolvable | Id | An object which defines the ID mapping technique and any additional configurations. |
| input | IResolvable | (IResolvable | Id)[] | A list of InputSource objects, which have the fields InputSourceARN and SchemaName . |
| output | IResolvable | (IResolvable | Id)[] | A list of IdMappingWorkflowOutputSource objects, each of which contains fields outputS3Path and KMSArn . |
| 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. |
| workflow | string | The name of the workflow. |
description?
Type:
string
(optional)
A description of the workflow.
idMappingIncrementalRunConfig?
Type:
IResolvable | Id
(optional)
idMappingTechniques?
Type:
IResolvable | Id
(optional)
An object which defines the ID mapping technique and any additional configurations.
inputSourceConfig?
Type:
IResolvable | (IResolvable | Id)[]
(optional)
A list of InputSource objects, which have the fields InputSourceARN and SchemaName .
outputSourceConfig?
Type:
IResolvable | (IResolvable | Id)[]
(optional)
A list of IdMappingWorkflowOutputSource objects, each of which contains fields outputS3Path and KMSArn .
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role.
AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
workflowName?
Type:
string
(optional)
The name of the workflow.
There can't be multiple IdMappingWorkflows with the same name.

.NET
Go
Java
Python
TypeScript