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

SearchFacesRequest

import type { SearchFacesRequest } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";
interface SearchFacesRequest {
CollectionId: string;
FaceId: string;
FaceMatchThreshold?: number | null;
MaxFaces?: number | null;
}

§Properties

§
CollectionId: string
[src]

ID of the collection the face belongs to.

§
FaceId: string
[src]

ID of a face to find matches for in the collection.

§
FaceMatchThreshold?: number | null
[src]

Optional value specifying the minimum confidence in the face match to return. For example, don't return any matches where confidence in matches is less than 70%. The default value is 80%.

§
MaxFaces?: number | null
[src]

Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.