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

interface Face {
    BoundingBox?: BoundingBox;
    Confidence?: number;
    ExternalImageId?: string;
    FaceId?: string;
    ImageId?: string;
    IndexFacesModelVersion?: string;
    UserId?: string;
}

Properties

BoundingBox?: BoundingBox

Bounding box of the face.

Confidence?: number

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

ExternalImageId?: string

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

FaceId?: string

Unique identifier that Amazon Rekognition assigns to the face.

ImageId?: string

Unique identifier that Amazon Rekognition assigns to the input image.

IndexFacesModelVersion?: string

The version of the face detect and storage model that was used when indexing the face vector.

UserId?: string

Unique identifier assigned to the user.