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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


1739
1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-entityresolution/types.rb', line 1739

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

#input_source_arnString

An Glue table Amazon Resource Name (ARN) for the input source table.

Returns:

  • (String)


1739
1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-entityresolution/types.rb', line 1739

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)


1739
1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-entityresolution/types.rb', line 1739

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