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.