interface CfnMatchingWorkflowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowMixinProps |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowMixinProps |
Properties for CfnMatchingWorkflowPropsMixin.
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 cfnMatchingWorkflowMixinProps: entityresolution_mixins.CfnMatchingWorkflowMixinProps = {
description: 'description',
incrementalRunConfig: {
incrementalRunType: 'incrementalRunType',
},
inputSourceConfig: [{
applyNormalization: false,
inputSourceArn: 'inputSourceArn',
schemaArn: 'schemaArn',
}],
outputSourceConfig: [{
applyNormalization: false,
customerProfilesIntegrationConfig: {
domainArn: 'domainArn',
objectTypeArn: 'objectTypeArn',
},
kmsArn: 'kmsArn',
output: [{
hashed: false,
name: 'name',
}],
outputS3Path: 'outputS3Path',
}],
resolutionTechniques: {
providerProperties: {
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
},
resolutionType: 'resolutionType',
ruleBasedProperties: {
attributeMatchingModel: 'attributeMatchingModel',
matchPurpose: 'matchPurpose',
rules: [{
matchingKeys: ['matchingKeys'],
ruleName: 'ruleName',
}],
},
ruleConditionProperties: {
rules: [{
condition: 'condition',
ruleName: 'ruleName',
}],
},
},
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
workflowName: 'workflowName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the workflow. |
| incremental | IResolvable | Incremental | Optional. |
| 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 , KMSArn , 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. |
| 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.
incrementalRunConfig?
Type:
IResolvable | Incremental
(optional)
Optional.
An object that defines the incremental run type. This object contains only the incrementalRunType field, which appears as "Automatic" in the console.
For workflows where
resolutionTypeisML_MATCHINGorPROVIDER, incremental processing is not supported.
inputSourceConfig?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
A list of InputSource objects, which have the fields InputSourceARN and SchemaName .
outputSourceConfig?
Type:
IResolvable | (IResolvable | Output)[]
(optional)
A list of OutputSource objects, each of which contains fields outputS3Path , applyNormalization , KMSArn , and output .
resolutionTechniques?
Type:
IResolvable | Resolution
(optional)
An object which defines the resolutionType and the ruleBasedProperties .
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 MatchingWorkflows with the same name.

.NET
Go
Java
Python
TypeScript