Class: Aws::Rekognition::Types::User

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Overview

Metadata of the user stored in a collection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#user_idString

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

Returns:

  • (String)


8218
8219
8220
8221
8222
8223
# File 'lib/aws-sdk-rekognition/types.rb', line 8218

class User < Struct.new(
  :user_id,
  :user_status)
  SENSITIVE = []
  include Aws::Structure
end

#user_statusString

Communicates if the UserID has been updated with latest set of faces to be associated with the UserID.

Returns:

  • (String)


8218
8219
8220
8221
8222
8223
# File 'lib/aws-sdk-rekognition/types.rb', line 8218

class User < Struct.new(
  :user_id,
  :user_status)
  SENSITIVE = []
  include Aws::Structure
end