Class: Aws::EntityResolution::Types::InputSource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb

Overview

An object containing InputSourceARN, SchemaName, and ApplyNormalization.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#apply_normalizationBoolean

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.

Returns:

  • (Boolean)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1633

class InputSource < Struct.new(
  :apply_normalization,
  :input_source_arn,
  :schema_name)
  SENSITIVE = []
  include Aws::Structure
end

#input_source_arnString

An Glue table ARN for the input source table.

Returns:

  • (String)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1633

class InputSource < Struct.new(
  :apply_normalization,
  :input_source_arn,
  :schema_name)
  SENSITIVE = []
  include Aws::Structure
end

#schema_nameString

The name of the schema to be retrieved.

Returns:

  • (String)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1633

class InputSource < Struct.new(
  :apply_normalization,
  :input_source_arn,
  :schema_name)
  SENSITIVE = []
  include Aws::Structure
end