DeleteUser
Source:
src/AWS/Rekognition/DeleteUser.ts
Runtime binding for rekognition:DeleteUser — delete a user from a face collection.
The binding takes no arguments and grants the function
rekognition:DeleteUser on * (Rekognition data-plane resources such
as collections, users, and jobs are routinely created at runtime, so
their identifiers are unknown at deploy time). Provide the
implementation with Effect.provide(AWS.Rekognition.DeleteUserHttp).
User Search
Section titled “User Search”// initconst deleteUser = yield* AWS.Rekognition.DeleteUser();
// runtimeyield* deleteUser({ CollectionId: "tenant-42", UserId: userId }).pipe( Effect.catchTag("ResourceNotFoundException", () => Effect.void),);