interface AssociateFacesRequest {
    ClientRequestToken?: string;
    CollectionId: undefined | string;
    FaceIds: undefined | string[];
    UserId: undefined | string;
    UserMatchThreshold?: number;
}

Hierarchy (view full)

Properties

ClientRequestToken?: string

Idempotent token used to identify the request to AssociateFaces. If you use the same token with multiple AssociateFaces requests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.

CollectionId: undefined | string

The ID of an existing collection containing the UserID.

FaceIds: undefined | string[]

An array of FaceIDs to associate with the UserID.

UserId: undefined | string

The ID for the existing UserID.

UserMatchThreshold?: number

An optional value specifying the minimum confidence in the UserID match to return. The default value is 75.