Class: Aws::Rekognition::Types::Smile
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Smile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Indicates whether or not the face is smiling, 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 is smiling or not.
Instance Attribute Details
#confidence ⇒ Float
Level of confidence in the determination.
6868 6869 6870 6871 6872 6873 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6868 class Smile < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Boolean
Boolean value that indicates whether the face is smiling or not.
6868 6869 6870 6871 6872 6873 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6868 class Smile < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |