Class: Aws::Rekognition::Types::ModerationLabel
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Rekognition::Types::ModerationLabel
 
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Provides information about a single type of inappropriate, unwanted, or offensive content found in an image or video. Each type of moderated content has a label within a hierarchical taxonomy. For more information, see Content moderation in the Amazon Rekognition Developer Guide.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the confidence that Amazon Rekognition has that the label has been correctly identified. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The label name for the type of unsafe content detected in the image. 
- 
  
    
      #parent_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name for the parent label. 
- 
  
    
      #taxonomy_level  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The level of the moderation label with regard to its taxonomy, from 1 to 3. 
Instance Attribute Details
#confidence ⇒ Float
Specifies the confidence that Amazon Rekognition has that the label has been correctly identified.
If you don't specify the MinConfidence parameter in the call to
DetectModerationLabels, the operation returns labels with a
confidence value greater than or equal to 50 percent.
| 5591 5592 5593 5594 5595 5596 5597 5598 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5591 class ModerationLabel < Struct.new( :confidence, :name, :parent_name, :taxonomy_level) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The label name for the type of unsafe content detected in the image.
| 5591 5592 5593 5594 5595 5596 5597 5598 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5591 class ModerationLabel < Struct.new( :confidence, :name, :parent_name, :taxonomy_level) SENSITIVE = [] include Aws::Structure end | 
#parent_name ⇒ String
The name for the parent label. Labels at the top level of the
hierarchy have the parent label "".
| 5591 5592 5593 5594 5595 5596 5597 5598 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5591 class ModerationLabel < Struct.new( :confidence, :name, :parent_name, :taxonomy_level) SENSITIVE = [] include Aws::Structure end | 
#taxonomy_level ⇒ Integer
The level of the moderation label with regard to its taxonomy, from 1 to 3.
| 5591 5592 5593 5594 5595 5596 5597 5598 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5591 class ModerationLabel < Struct.new( :confidence, :name, :parent_name, :taxonomy_level) SENSITIVE = [] include Aws::Structure end |