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: