Class: Aws::Rekognition::Types::MatchedUser

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#user_idString

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

Returns:

  • (String)


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_statusString

The status of the user matched to a provided FaceID.

Returns:

  • (String)


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