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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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)


8205
8206
8207
8208
8209
8210
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8205

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)


8205
8206
8207
8208
8209
8210
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8205

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