libZSservicesZSamazonka-rekognitionZSamazonka-rekognition
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Rekognition.Types.PersonMatch

Description

 
Synopsis

Documentation

data PersonMatch Source #

Information about a person whose face matches a face(s) in an Amazon Rekognition collection. Includes information about the faces in the Amazon Rekognition collection (FaceMatch), information about the person (PersonDetail), and the time stamp for when the person was detected in a video. An array of PersonMatch objects is returned by GetFaceSearch.

See: newPersonMatch smart constructor.

Constructors

PersonMatch' 

Fields

Instances

Instances details
Eq PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

Read PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

Show PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

Generic PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

Associated Types

type Rep PersonMatch :: Type -> Type #

NFData PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

Methods

rnf :: PersonMatch -> () #

Hashable PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

FromJSON PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

type Rep PersonMatch Source # 
Instance details

Defined in Amazonka.Rekognition.Types.PersonMatch

type Rep PersonMatch = D1 ('MetaData "PersonMatch" "Amazonka.Rekognition.Types.PersonMatch" "libZSservicesZSamazonka-rekognitionZSamazonka-rekognition" 'False) (C1 ('MetaCons "PersonMatch'" 'PrefixI 'True) (S1 ('MetaSel ('Just "faceMatches") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FaceMatch])) :*: (S1 ('MetaSel ('Just "person") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PersonDetail)) :*: S1 ('MetaSel ('Just "timestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newPersonMatch :: PersonMatch Source #

Create a value of PersonMatch 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:faceMatches:PersonMatch', personMatch_faceMatches - Information about the faces in the input collection that match the face of a person in the video.

$sel:person:PersonMatch', personMatch_person - Information about the matched person.

$sel:timestamp:PersonMatch', personMatch_timestamp - The time, in milliseconds from the beginning of the video, that the person was matched in the video.

personMatch_faceMatches :: Lens' PersonMatch (Maybe [FaceMatch]) Source #

Information about the faces in the input collection that match the face of a person in the video.

personMatch_person :: Lens' PersonMatch (Maybe PersonDetail) Source #

Information about the matched person.

personMatch_timestamp :: Lens' PersonMatch (Maybe Integer) Source #

The time, in milliseconds from the beginning of the video, that the person was matched in the video.