Class: Aws::CustomerProfiles::Types::MatchItem

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

Overview

The Match group object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidence_scoreFloat

A number between 0 and 1, where a higher score means higher similarity. Examining match confidence scores lets you distinguish between groups of similar records in which the system is highly confident (which you may decide to merge), groups of similar records about which the system is uncertain (which you may decide to have reviewed by a human), and groups of similar records that the system deems to be unlikely (which you may decide to reject). Given confidence scores vary as per the data input, it should not be used an absolute measure of matching quality.

Returns:

  • (Float)


3773
3774
3775
3776
3777
3778
3779
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3773

class MatchItem < Struct.new(
  :match_id,
  :profile_ids,
  :confidence_score)
  SENSITIVE = []
  include Aws::Structure
end

#match_idString

The unique identifiers for this group of profiles that match.

Returns:

  • (String)


3773
3774
3775
3776
3777
3778
3779
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3773

class MatchItem < Struct.new(
  :match_id,
  :profile_ids,
  :confidence_score)
  SENSITIVE = []
  include Aws::Structure
end

#profile_idsArray<String>

A list of identifiers for profiles that match.

Returns:

  • (Array<String>)


3773
3774
3775
3776
3777
3778
3779
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3773

class MatchItem < Struct.new(
  :match_id,
  :profile_ids,
  :confidence_score)
  SENSITIVE = []
  include Aws::Structure
end