Class: Aws::Rekognition::Types::ContentType
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ContentType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Contains information regarding the confidence and name of a detected content type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence level of the label given.
-
#name ⇒ String
The name of the label.
Instance Attribute Details
#confidence ⇒ Float
The confidence level of the label given
751 752 753 754 755 756 |
# File 'lib/aws-sdk-rekognition/types.rb', line 751 class ContentType < Struct.new( :confidence, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the label
751 752 753 754 755 756 |
# File 'lib/aws-sdk-rekognition/types.rb', line 751 class ContentType < Struct.new( :confidence, :name) SENSITIVE = [] include Aws::Structure end |