Skip to content

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).

// init
const deleteUser = yield* AWS.Rekognition.DeleteUser();
// runtime
yield* deleteUser({ CollectionId: "tenant-42", UserId: userId }).pipe(
Effect.catchTag("ResourceNotFoundException", () => Effect.void),
);