Class: Aws::Rekognition::Types::UnsuccessfulFaceAssociation

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

Overview

Contains metadata like FaceId, UserID, and Reasons, for a face that was unsuccessfully associated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn't meet UserMatchThreshold.

Returns:

  • (Float)


8064
8065
8066
8067
8068
8069
8070
8071
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8064

class UnsuccessfulFaceAssociation < Struct.new(
  :face_id,
  :user_id,
  :confidence,
  :reasons)
  SENSITIVE = []
  include Aws::Structure
end

#face_idString

A unique identifier assigned to the face.

Returns:

  • (String)


8064
8065
8066
8067
8068
8069
8070
8071
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8064

class UnsuccessfulFaceAssociation < Struct.new(
  :face_id,
  :user_id,
  :confidence,
  :reasons)
  SENSITIVE = []
  include Aws::Structure
end

#reasonsArray<String>

The reason why the association was unsuccessful.

Returns:

  • (Array<String>)


8064
8065
8066
8067
8068
8069
8070
8071
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8064

class UnsuccessfulFaceAssociation < Struct.new(
  :face_id,
  :user_id,
  :confidence,
  :reasons)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

A provided ID for the UserID. Unique within the collection.

Returns:

  • (String)


8064
8065
8066
8067
8068
8069
8070
8071
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8064

class UnsuccessfulFaceAssociation < Struct.new(
  :face_id,
  :user_id,
  :confidence,
  :reasons)
  SENSITIVE = []
  include Aws::Structure
end