interface InputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_InputSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.InputSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const inputSourceProperty: entityresolution_mixins.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