Class: Aws::Rekognition::Types::AssociateFacesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::AssociateFacesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#associated_faces ⇒ Array<Types::AssociatedFace>
An array of AssociatedFace objects containing FaceIDs that have been successfully associated with the UserID.
-
#unsuccessful_face_associations ⇒ Array<Types::UnsuccessfulFaceAssociation>
An array of UnsuccessfulAssociation objects containing FaceIDs that are not successfully associated along with the reasons.
-
#user_status ⇒ String
The status of an update made to a UserID.
Instance Attribute Details
#associated_faces ⇒ Array<Types::AssociatedFace>
An array of AssociatedFace objects containing FaceIDs that have been successfully associated with the UserID. Returned if the AssociateFaces action is successful.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-rekognition/types.rb', line 108 class AssociateFacesResponse < Struct.new( :associated_faces, :unsuccessful_face_associations, :user_status) SENSITIVE = [] include Aws::Structure end |
#unsuccessful_face_associations ⇒ Array<Types::UnsuccessfulFaceAssociation>
An array of UnsuccessfulAssociation objects containing FaceIDs that are not successfully associated along with the reasons. Returned if the AssociateFaces action is successful.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-rekognition/types.rb', line 108 class AssociateFacesResponse < Struct.new( :associated_faces, :unsuccessful_face_associations, :user_status) SENSITIVE = [] include Aws::Structure end |
#user_status ⇒ String
The status of an update made to a UserID. Reflects if the UserID has been updated for every requested change.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-rekognition/types.rb', line 108 class AssociateFacesResponse < Struct.new( :associated_faces, :unsuccessful_face_associations, :user_status) SENSITIVE = [] include Aws::Structure end |