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.PersonDetail

Description

 
Synopsis

Documentation

data PersonDetail Source #

Details about a person detected in a video analysis request.

See: newPersonDetail smart constructor.

Constructors

PersonDetail' 

Fields

  • boundingBox :: Maybe BoundingBox

    Bounding box around the detected person.

  • face :: Maybe FaceDetail

    Face details for the detected person.

  • index :: Maybe Integer

    Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.

Instances

Instances details
FromJSON PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

Generic PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

Associated Types

type Rep PersonDetail :: Type -> Type #

Read PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

Show PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

NFData PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

Methods

rnf :: PersonDetail -> () #

Eq PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

Hashable PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

type Rep PersonDetail Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonDetail

type Rep PersonDetail = D1 ('MetaData "PersonDetail" "Amazonka.Rekognition.Types.PersonDetail" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "PersonDetail'" 'PrefixI 'True) (S1 ('MetaSel ('Just "boundingBox") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BoundingBox)) :*: (S1 ('MetaSel ('Just "face") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FaceDetail)) :*: S1 ('MetaSel ('Just "index") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newPersonDetail :: PersonDetail Source #

Create a value of PersonDetail 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:

PersonDetail, personDetail_boundingBox - Bounding box around the detected person.

$sel:face:PersonDetail', personDetail_face - Face details for the detected person.

$sel:index:PersonDetail', personDetail_index - Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.

personDetail_boundingBox :: Lens' PersonDetail (Maybe BoundingBox) Source #

Bounding box around the detected person.

personDetail_face :: Lens' PersonDetail (Maybe FaceDetail) Source #

Face details for the detected person.

personDetail_index :: Lens' PersonDetail (Maybe Integer) Source #

Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.