interface CfnMatchingWorkflowProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_entityresolution.CfnMatchingWorkflowProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflowProps |
![]() | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflowProps |
![]() | aws_cdk.aws_entityresolution.CfnMatchingWorkflowProps |
![]() | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflowProps |
Properties for defining a CfnMatchingWorkflow
.
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 cfnMatchingWorkflowProps: entityresolution.CfnMatchingWorkflowProps = {
inputSourceConfig: [{
inputSourceArn: 'inputSourceArn',
schemaArn: 'schemaArn',
// the properties below are optional
applyNormalization: false,
}],
outputSourceConfig: [{
output: [{
name: 'name',
// the properties below are optional
hashed: false,
}],
outputS3Path: 'outputS3Path',
// the properties below are optional
applyNormalization: false,
kmsArn: 'kmsArn',
}],
resolutionTechniques: {
providerProperties: {
providerServiceArn: 'providerServiceArn',
// the properties below are optional
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
},
resolutionType: 'resolutionType',
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
// the properties below are optional
matchPurpose: 'matchPurpose',
},
},
roleArn: 'roleArn',
workflowName: 'workflowName',
// the properties below are optional
description: 'description',
incrementalRunConfig: {
incrementalRunType: 'incrementalRunType',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
input | IResolvable | IResolvable | Input [] | A list of InputSource objects, which have the fields InputSourceARN and SchemaName . |
output | IResolvable | IResolvable | Output [] | A list of OutputSource objects, each of which contains fields OutputS3Path , ApplyNormalization , and Output . |
resolution | IResolvable | Resolution | An object which defines the resolutionType and the ruleBasedProperties . |
role | string | The Amazon Resource Name (ARN) of the IAM role. |
workflow | string | The name of the workflow. |
description? | string | A description of the workflow. |
incremental | IResolvable | Incremental | An object which defines an incremental run type and has only incrementalRunType as a field. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
inputSourceConfig
Type:
IResolvable
|
IResolvable
|
Input
[]
A list of InputSource
objects, which have the fields InputSourceARN
and SchemaName
.
outputSourceConfig
Type:
IResolvable
|
IResolvable
|
Output
[]
A list of OutputSource
objects, each of which contains fields OutputS3Path
, ApplyNormalization
, and Output
.
resolutionTechniques
Type:
IResolvable
|
Resolution
An object which defines the resolutionType
and the ruleBasedProperties
.
roleArn
Type:
string
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.
workflowName
Type:
string
The name of the workflow.
There can't be multiple MatchingWorkflows
with the same name.
description?
Type:
string
(optional)
A description of the workflow.
incrementalRunConfig?
Type:
IResolvable
|
Incremental
(optional)
An object which defines an incremental run type and has only incrementalRunType
as a field.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.