interface InputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_entityresolution.CfnMatchingWorkflow.InputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_InputSourceProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.InputSourceProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.InputSourceProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » InputSourceProperty |
An object containing inputSourceARN , schemaName , and applyNormalization .
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 inputSourceProperty: entityresolution.CfnMatchingWorkflow.InputSourceProperty = {
inputSourceArn: 'inputSourceArn',
schemaArn: 'schemaArn',
// the properties below are optional
applyNormalization: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | An object containing inputSourceARN , schemaName , and applyNormalization . |
| schema | string | The name of the schema. |
| apply | boolean | IResolvable | Normalizes the attributes defined in the schema in the input data. |
inputSourceArn
Type:
string
An object containing inputSourceARN , schemaName , and applyNormalization .
schemaArn
Type:
string
The name of the schema.
applyNormalization?
Type:
boolean | IResolvable
(optional)
Normalizes the attributes defined in the schema in the input data.
For example, if an attribute has an AttributeType of PHONE_NUMBER , and the data in the input table is in a format of 1234567890, AWS Entity Resolution will normalize this field in the output to (123)-456-7890.

.NET
Go
Java
Python
TypeScript