Class: Aws::EntityResolution::Types::GenerateMatchIdInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#processing_typeString

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.

Returns:

  • (String)


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

#recordsArray<Types::Record>

The records to match.

Returns:



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_nameString

The name of the rule-based matching workflow.

Returns:

  • (String)


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