Class: Aws::Rekognition::Types::Beard
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Beard
- Includes:
- Structure
- Defined in:
- 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
-
#confidence ⇒ Float
Level of confidence in the determination.
-
#value ⇒ Boolean
Boolean value that indicates whether the face has beard or not.
Instance Attribute Details
#confidence ⇒ Float
Level of confidence in the determination.
225 226 227 228 229 230 |
# File 'lib/aws-sdk-rekognition/types.rb', line 225 class Beard < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Boolean
Boolean value that indicates whether the face has beard or not.
225 226 227 228 229 230 |
# File 'lib/aws-sdk-rekognition/types.rb', line 225 class Beard < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |