UpdateUser
Source:
src/AWS/IdentityCenter/UpdateUser.ts
Runtime binding for the UpdateUser operation (IAM action
identitystore:UpdateUser), scoped to one Instance.
Applies attribute patch operations to a user in the bound instance’s identity store (display name, emails, addresses, …). The instance’s
IdentityStoreId is injected from the binding. Provide the implementation with
Effect.provide(AWS.IdentityCenter.UpdateUserHttp).
Managing Users
Section titled “Managing Users”// init — bind the operation to the Identity Center instanceconst updateUser = yield* AWS.IdentityCenter.UpdateUser(instance);
// runtimeyield* updateUser({ UserId: userId, Operations: [ { AttributePath: "displayName", AttributeValue: "Jane A. Doe" }, ],});