Class: Aws::Rekognition::Types::UnsuccessfulFaceDisassociation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::UnsuccessfulFaceDisassociation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Contains metadata like FaceId, UserID, and Reasons, for a face that was unsuccessfully disassociated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face_id ⇒ String
A unique identifier assigned to the face.
-
#reasons ⇒ Array<String>
The reason why the deletion was unsuccessful.
-
#user_id ⇒ String
A provided ID for the UserID.
Instance Attribute Details
#face_id ⇒ String
A unique identifier assigned to the face.
8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8124 class UnsuccessfulFaceDisassociation < Struct.new( :face_id, :user_id, :reasons) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<String>
The reason why the deletion was unsuccessful.
8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8124 class UnsuccessfulFaceDisassociation < Struct.new( :face_id, :user_id, :reasons) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
A provided ID for the UserID. Unique within the collection.
8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/aws-sdk-rekognition/types.rb', line 8124 class UnsuccessfulFaceDisassociation < Struct.new( :face_id, :user_id, :reasons) SENSITIVE = [] include Aws::Structure end |