Class: Aws::Rekognition::Types::Beard

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

Overview

Indicates whether or not the face has a beard, and the confidence level in the determination.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Level of confidence in the determination.

Returns:

  • (Float)


225
226
227
228
229
230
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 225

class Beard < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end

#valueBoolean

Boolean value that indicates whether the face has beard or not.

Returns:

  • (Boolean)


225
226
227
228
229
230
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 225

class Beard < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end