Class: Aws::Rekognition::Types::Gender

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

Overview

Gender of the face and the confidence level in the determination.

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Level of confidence in the determination.

Returns:

  • (Float)


811
812
813
814
815
# File 'lib/aws-sdk-rekognition/types.rb', line 811

class Gender < Struct.new(
  :value,
  :confidence)
  include Aws::Structure
end

#valueString

Gender of the face.

Returns:

  • (String)


811
812
813
814
815
# File 'lib/aws-sdk-rekognition/types.rb', line 811

class Gender < Struct.new(
  :value,
  :confidence)
  include Aws::Structure
end