Class: Aws::Rekognition::Types::MatchedUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::MatchedUser
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Contains metadata for a UserID matched with a given face.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#user_id ⇒ String
A provided ID for the UserID.
-
#user_status ⇒ String
The status of the user matched to a provided FaceID.
Instance Attribute Details
#user_id ⇒ String
A provided ID for the UserID. Unique within the collection.
5284 5285 5286 5287 5288 5289 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5284 class MatchedUser < Struct.new( :user_id, :user_status) SENSITIVE = [] include Aws::Structure end |
#user_status ⇒ String
The status of the user matched to a provided FaceID.
5284 5285 5286 5287 5288 5289 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5284 class MatchedUser < Struct.new( :user_id, :user_status) SENSITIVE = [] include Aws::Structure end |