interface InputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnMatchingWorkflowPropsMixin_InputSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » CfnMatchingWorkflowPropsMixin » 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/cfn-property-mixins';
const inputSourceProperty: entityresolution.CfnMatchingWorkflowPropsMixin.InputSourceProperty = {
applyNormalization: false,
inputSourceArn: 'inputSourceArn',
schemaArn: 'schemaArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| apply | boolean | IResolvable | Normalizes the attributes defined in the schema in the input data. |
| input | string | An object containing inputSourceARN , schemaName , and applyNormalization . |
| schema | 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.
inputSourceArn?
Type:
string
(optional)
An object containing inputSourceARN , schemaName , and applyNormalization .
schemaArn?
Type:
string
(optional)
The name of the schema.

.NET
Go
Java
Python
TypeScript