Interface CfnMatchingWorkflowPropsMixin.InputSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflowPropsMixin.InputSourceProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflowPropsMixin
@Stability(Stable)
public static interface CfnMatchingWorkflowPropsMixin.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.cfnpropertymixins.services.entityresolution.*;
InputSourceProperty inputSourceProperty = InputSourceProperty.builder()
.applyNormalization(false)
.inputSourceArn("inputSourceArn")
.schemaArn("schemaArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflowPropsMixin.InputSourcePropertystatic final classAn implementation forCfnMatchingWorkflowPropsMixin.InputSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getInputSourceArn
An object containinginputSourceARN,schemaName, andapplyNormalization.- See Also:
-
getSchemaArn
The name of the schema.- See Also:
-
builder
-