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.
1080 1081 1082 1083 1084 1085 1086 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 1080 class GetMatchIdInput < Struct.new( :workflow_name, :record, :apply_normalization) SENSITIVE = [:record] include Aws::Structure end |
#record ⇒ Hash<String,String>
The record to fetch the Match ID for.
1080 1081 1082 1083 1084 1085 1086 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 1080 class GetMatchIdInput < Struct.new( :workflow_name, :record, :apply_normalization) SENSITIVE = [:record] include Aws::Structure end |
#workflow_name ⇒ String
The name of the workflow.
1080 1081 1082 1083 1084 1085 1086 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 1080 class GetMatchIdInput < Struct.new( :workflow_name, :record, :apply_normalization) SENSITIVE = [:record] include Aws::Structure end |