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

FaceRecord

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

Object containing both the face metadata (stored in the backend database), and facial attributes that are detected but aren't stored in the database.

interface FaceRecord {
Face?: Face | null;
FaceDetail?: FaceDetail | null;
}

§Properties

§
Face?: Face | null
[src]

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

§
FaceDetail?: FaceDetail | null
[src]

Structure containing attributes of the face that the algorithm detected.