Class: Aws::EntityResolution::Types::GetMatchIdInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:record]

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)


992
993
994
995
996
997
998
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 992

class GetMatchIdInput < Struct.new(
  :apply_normalization,
  :record,
  :workflow_name)
  SENSITIVE = [:record]
  include Aws::Structure
end

#recordHash<String,String>

The record to fetch the Match ID for.

Returns:

  • (Hash<String,String>)


992
993
994
995
996
997
998
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 992

class GetMatchIdInput < Struct.new(
  :apply_normalization,
  :record,
  :workflow_name)
  SENSITIVE = [:record]
  include Aws::Structure
end

#workflow_nameString

The name of the workflow.

Returns:

  • (String)


992
993
994
995
996
997
998
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 992

class GetMatchIdInput < Struct.new(
  :apply_normalization,
  :record,
  :workflow_name)
  SENSITIVE = [:record]
  include Aws::Structure
end