Class: Aws::EntityResolution::Types::GenerateMatchIdInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::GenerateMatchIdInput
- Defined in:
- gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#processing_type ⇒ String
The processing mode that determines how Match IDs are generated and results are saved.
-
#records ⇒ Array<Types::Record>
The records to match.
-
#workflow_name ⇒ String
The name of the rule-based matching workflow.
Instance Attribute Details
#processing_type ⇒ String
The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.
If not specified, defaults to CONSISTENT
.
CONSISTENT
: Performs immediate lookup and matching against all
existing records, with results saved synchronously. Provides highest
accuracy but slower response time.
EVENTUAL
(shown as Background in the console): Performs initial
match ID lookup or generation immediately, with record updates
processed asynchronously in the background. Offers faster initial
response time, with complete matching results available later in S3.
EVENTUAL_NO_LOOKUP
(shown as Quick ID generation in the
console): Generates new match IDs without checking existing matches,
with updates processed asynchronously. Provides fastest response
time but should only be used for records known to be unique.
816 817 818 819 820 821 822 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 816 class GenerateMatchIdInput < Struct.new( :workflow_name, :records, :processing_type) SENSITIVE = [] include Aws::Structure end |
#records ⇒ Array<Types::Record>
The records to match.
816 817 818 819 820 821 822 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 816 class GenerateMatchIdInput < Struct.new( :workflow_name, :records, :processing_type) SENSITIVE = [] include Aws::Structure end |
#workflow_name ⇒ String
The name of the rule-based matching workflow.
816 817 818 819 820 821 822 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 816 class GenerateMatchIdInput < Struct.new( :workflow_name, :records, :processing_type) SENSITIVE = [] include Aws::Structure end |