Module Values.DeleteFacesRequestSource

Deletes faces from a collection. You specify a collection ID and an array of face IDs to remove from the collection. This operation requires permissions to perform the rekognition:DeleteFaces action.

Sourcetype nonrec t = {
  1. collectionId : CollectionId.t;
    (*

    Collection from which to remove the specific faces.

    *)
  2. faceIds : FaceIdList.t;
    (*

    An array of face IDs to delete.

    *)
}
Sourceval context_ : string
Sourceval make : collectionId:CollectionId.t -> faceIds:FaceIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of FaceId.t ] list | `String of CollectionId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t