Class: Aws::CustomerProfiles::Types::MatchItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::MatchItem
- 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
-
#confidence_score ⇒ Float
A number between 0 and 1 that represents the confidence level of assigning profiles to a matching group.
-
#match_id ⇒ String
The unique identifiers for this group of profiles that match.
-
#profile_ids ⇒ Array<String>
A list of identifiers for profiles that match.
Instance Attribute Details
#confidence_score ⇒ Float
A number between 0 and 1 that represents the confidence level of assigning profiles to a matching group. A score of 1 likely indicates an exact match.
3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3379 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |
#match_id ⇒ String
The unique identifiers for this group of profiles that match.
3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3379 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |
#profile_ids ⇒ Array<String>
A list of identifiers for profiles that match.
3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3379 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |