Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PersonMatch

import type { PersonMatch } from "https://aws-api.deno.dev/v0.3/services/rekognition.ts?docs=full";

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

interface PersonMatch {
FaceMatches?: FaceMatch[] | null;
Person?: PersonDetail | null;
Timestamp?: number | null;
}

§Properties

§
FaceMatches?: FaceMatch[] | null
[src]

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

§
Person?: PersonDetail | null
[src]

Information about the matched person.

§
Timestamp?: number | null
[src]

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