Class: Aws::Rekognition::Types::ProtectiveEquipmentBodyPart
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Rekognition::Types::ProtectiveEquipmentBodyPart
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rekognition/types.rb
 
Overview
Information about a body part detected by DetectProtectiveEquipment that contains PPE. An array of ‘ProtectiveEquipmentBodyPart` objects is returned for each person detected by `DetectProtectiveEquipment`.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The confidence that Amazon Rekognition has in the detection accuracy of the detected body part.
 - 
  
    
      #equipment_detections  ⇒ Array<Types::EquipmentDetection> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of Personal Protective Equipment items detected around a body part.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected body part.
 
Instance Attribute Details
#confidence ⇒ Float
The confidence that Amazon Rekognition has in the detection accuracy of the detected body part.
      5983 5984 5985 5986 5987 5988 5989  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 5983 class ProtectiveEquipmentBodyPart < Struct.new( :name, :confidence, :equipment_detections) SENSITIVE = [] include Aws::Structure end  | 
  
#equipment_detections ⇒ Array<Types::EquipmentDetection>
An array of Personal Protective Equipment items detected around a body part.
      5983 5984 5985 5986 5987 5988 5989  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 5983 class ProtectiveEquipmentBodyPart < Struct.new( :name, :confidence, :equipment_detections) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The detected body part.
      5983 5984 5985 5986 5987 5988 5989  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 5983 class ProtectiveEquipmentBodyPart < Struct.new( :name, :confidence, :equipment_detections) SENSITIVE = [] include Aws::Structure end  |