Class: Aws::EntityResolution::Types::GetMatchIdInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::GetMatchIdInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-entityresolution/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:record]
Instance Attribute Summary collapse
-
#apply_normalization ⇒ Boolean
Normalizes the attributes defined in the schema in the input data.
-
#record ⇒ Hash<String,String>
The record to fetch the Match ID for.
-
#workflow_name ⇒ String
The name of the workflow.
Instance Attribute Details
#apply_normalization ⇒ Boolean
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.
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 |
#record ⇒ Hash<String,String>
The record to fetch the Match ID for.
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_name ⇒ String
The name of the workflow.
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 |