Provides information about a celebrity recognized by the RecognizeCelebrities operation.

interface Celebrity {
    Face?: ComparedFace;
    Id?: string;
    KnownGender?: KnownGender;
    MatchConfidence?: number;
    Name?: string;
    Urls?: string[];
}

Properties

Provides information about the celebrity's face, such as its location on the image.

Id?: string

A unique identifier for the celebrity.

KnownGender?: KnownGender

The known gender identity for the celebrity that matches the provided ID. The known gender identity can be Male, Female, Nonbinary, or Unlisted.

MatchConfidence?: number

The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.

Name?: string

The name of the celebrity.

Urls?: string[]

An array of URLs pointing to additional information about the celebrity. If there is no additional information about the celebrity, this list is empty.