amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Description

 
Synopsis

Documentation

data ProtectiveEquipmentPerson Source #

A person detected by a call to DetectProtectiveEquipment. The API returns all persons detected in the input image in an array of ProtectiveEquipmentPerson objects.

See: newProtectiveEquipmentPerson smart constructor.

Constructors

ProtectiveEquipmentPerson' 

Fields

Instances

Instances details
FromJSON ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Generic ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Associated Types

type Rep ProtectiveEquipmentPerson :: Type -> Type #

Read ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Show ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

NFData ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Eq ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

Hashable ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

type Rep ProtectiveEquipmentPerson Source # 
Instance details

Defined in Amazonka.Rekognition.Types.ProtectiveEquipmentPerson

type Rep ProtectiveEquipmentPerson = D1 ('MetaData "ProtectiveEquipmentPerson" "Amazonka.Rekognition.Types.ProtectiveEquipmentPerson" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "ProtectiveEquipmentPerson'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "bodyParts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ProtectiveEquipmentBodyPart])) :*: S1 ('MetaSel ('Just "boundingBox") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BoundingBox))) :*: (S1 ('MetaSel ('Just "confidence") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newProtectiveEquipmentPerson :: ProtectiveEquipmentPerson Source #

Create a value of ProtectiveEquipmentPerson with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:bodyParts:ProtectiveEquipmentPerson', protectiveEquipmentPerson_bodyParts - An array of body parts detected on a person's body (including body parts without PPE).

$sel:boundingBox:ProtectiveEquipmentPerson', protectiveEquipmentPerson_boundingBox - A bounding box around the detected person.

ProtectiveEquipmentPerson, protectiveEquipmentPerson_confidence - The confidence that Amazon Rekognition has that the bounding box contains a person.

$sel:id:ProtectiveEquipmentPerson', protectiveEquipmentPerson_id - The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.

protectiveEquipmentPerson_bodyParts :: Lens' ProtectiveEquipmentPerson (Maybe [ProtectiveEquipmentBodyPart]) Source #

An array of body parts detected on a person's body (including body parts without PPE).

protectiveEquipmentPerson_confidence :: Lens' ProtectiveEquipmentPerson (Maybe Double) Source #

The confidence that Amazon Rekognition has that the bounding box contains a person.

protectiveEquipmentPerson_id :: Lens' ProtectiveEquipmentPerson (Maybe Natural) Source #

The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.