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

Description

 
Synopsis

Documentation

data Face Source #

Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.

See: newFace smart constructor.

Constructors

Face' 

Fields

Instances

Instances details
Eq Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Methods

(==) :: Face -> Face -> Bool #

(/=) :: Face -> Face -> Bool #

Read Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Show Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Methods

showsPrec :: Int -> Face -> ShowS #

show :: Face -> String #

showList :: [Face] -> ShowS #

Generic Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Associated Types

type Rep Face :: Type -> Type #

Methods

from :: Face -> Rep Face x #

to :: Rep Face x -> Face #

NFData Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Methods

rnf :: Face -> () #

Hashable Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

Methods

hashWithSalt :: Int -> Face -> Int #

hash :: Face -> Int #

FromJSON Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

type Rep Face Source # 
Instance details

Defined in Amazonka.Rekognition.Types.Face

type Rep Face = D1 ('MetaData "Face" "Amazonka.Rekognition.Types.Face" "libZSservicesZSamazonka-rekognitionZSamazonka-rekognition" 'False) (C1 ('MetaCons "Face'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "faceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "boundingBox") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BoundingBox))) :*: (S1 ('MetaSel ('Just "externalImageId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "confidence") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "imageId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newFace :: Face Source #

Create a value of Face 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:faceId:Face', face_faceId - Unique identifier that Amazon Rekognition assigns to the face.

$sel:boundingBox:Face', face_boundingBox - Bounding box of the face.

$sel:externalImageId:Face', face_externalImageId - Identifier that you assign to all the faces in the input image.

$sel:confidence:Face', face_confidence - Confidence level that the bounding box contains a face (and not a different object such as a tree).

$sel:imageId:Face', face_imageId - Unique identifier that Amazon Rekognition assigns to the input image.

face_faceId :: Lens' Face (Maybe Text) Source #

Unique identifier that Amazon Rekognition assigns to the face.

face_boundingBox :: Lens' Face (Maybe BoundingBox) Source #

Bounding box of the face.

face_externalImageId :: Lens' Face (Maybe Text) Source #

Identifier that you assign to all the faces in the input image.

face_confidence :: Lens' Face (Maybe Double) Source #

Confidence level that the bounding box contains a face (and not a different object such as a tree).

face_imageId :: Lens' Face (Maybe Text) Source #

Unique identifier that Amazon Rekognition assigns to the input image.