Class: Aws::Rekognition::Types::CoversBodyPart

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Overview

Information about an item of Personal Protective Equipment covering a corresponding body part. For more information, see DetectProtectiveEquipment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

The confidence that Amazon Rekognition has in the value of ‘Value`.

Returns:

  • (Float)


842
843
844
845
846
847
# File 'lib/aws-sdk-rekognition/types.rb', line 842

class CoversBodyPart < Struct.new(
  :confidence,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueBoolean

True if the PPE covers the corresponding body part, otherwise false.

Returns:

  • (Boolean)


842
843
844
845
846
847
# File 'lib/aws-sdk-rekognition/types.rb', line 842

class CoversBodyPart < Struct.new(
  :confidence,
  :value)
  SENSITIVE = []
  include Aws::Structure
end