Skip to content

CreateUser

Source: src/AWS/Rekognition/CreateUser.ts

Runtime binding for rekognition:CreateUser — create a user in a face collection to aggregate multiple face IDs of the same person.

The binding takes no arguments and grants the function rekognition:CreateUser 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.CreateUserHttp).

// init
const createUser = yield* AWS.Rekognition.CreateUser();
// runtime
yield* createUser({ CollectionId: "tenant-42", UserId: userId });