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

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


995
996
997
998
999
1000
1001
# File 'lib/aws-sdk-entityresolution/types.rb', line 995

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>)


995
996
997
998
999
1000
1001
# File 'lib/aws-sdk-entityresolution/types.rb', line 995

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

#workflow_nameString

The name of the workflow.

Returns:

  • (String)


995
996
997
998
999
1000
1001
# File 'lib/aws-sdk-entityresolution/types.rb', line 995

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