Interface CfnMatchingWorkflow.InputSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflow.InputSourceProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflow
@Stability(Stable)
public static interface CfnMatchingWorkflow.InputSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.entityresolution.*;
InputSourceProperty inputSourceProperty = InputSourceProperty.builder()
.inputSourceArn("inputSourceArn")
.schemaArn("schemaArn")
// the properties below are optional
.applyNormalization(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflow.InputSourcePropertystatic final classAn implementation forCfnMatchingWorkflow.InputSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputSourceArn
An object containinginputSourceARN,schemaName, andapplyNormalization.- See Also:
-
getSchemaArn
The name of the schema.- See Also:
-
getApplyNormalization
Normalizes the attributes defined in the schema in the input data.For example, if an attribute has an
AttributeTypeofPHONE_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.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-