interface DisassociateFacesRequest {
    ClientRequestToken?: string;
    CollectionId: undefined | string;
    FaceIds: undefined | string[];
    UserId: undefined | string;
}

Hierarchy (view full)

Properties

ClientRequestToken?: string

Idempotent token used to identify the request to DisassociateFaces. If you use the same token with multiple DisassociateFaces 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 face IDs to disassociate from the UserID.

UserId: undefined | string

ID for the existing UserID.