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: