Class: Aws::Rekognition::Types::UnsuccessfulFaceAssociation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::UnsuccessfulFaceAssociation
- Includes:
- Structure
- Defined in:
- 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
-
#confidence ⇒ Float
Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn’t meet UserMatchThreshold.
-
#face_id ⇒ String
A unique identifier assigned to the face.
-
#reasons ⇒ Array<String>
The reason why the association was unsuccessful.
-
#user_id ⇒ String
A provided ID for the UserID.
Instance Attribute Details
#confidence ⇒ Float
Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn’t meet UserMatchThreshold.
8077 8078 8079 8080 8081 8082 8083 8084 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8077 class UnsuccessfulFaceAssociation < Struct.new( :face_id, :user_id, :confidence, :reasons) SENSITIVE = [] include Aws::Structure end |
#face_id ⇒ String
A unique identifier assigned to the face.
8077 8078 8079 8080 8081 8082 8083 8084 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8077 class UnsuccessfulFaceAssociation < Struct.new( :face_id, :user_id, :confidence, :reasons) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<String>
The reason why the association was unsuccessful.
8077 8078 8079 8080 8081 8082 8083 8084 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8077 class UnsuccessfulFaceAssociation < Struct.new( :face_id, :user_id, :confidence, :reasons) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
A provided ID for the UserID. Unique within the collection.
8077 8078 8079 8080 8081 8082 8083 8084 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8077 class UnsuccessfulFaceAssociation < Struct.new( :face_id, :user_id, :confidence, :reasons) SENSITIVE = [] include Aws::Structure end |