Values.InputSourceSourceAn object containing inputSourceARN, schemaName, and applyNormalization.
type nonrec t = {inputSourceARN : InputSourceARN.t;An Glue table Amazon Resource Name (ARN) for the input source table.
*)schemaName : EntityName.t;The name of the schema to be retrieved.
*)applyNormalization : Boolean.t option;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, Entity Resolution will normalize this field in the output to (123)-456-7890.
*)}val make :
?applyNormalization:??? ->
inputSourceARN:InputSourceARN.t ->
schemaName:EntityName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of InputSourceARN.t ]) list ]