Skip to content

Update User

identitystore_update_user R Documentation

For the specified user in the specified identity store, updates the user metadata and attributes

Description

For the specified user in the specified identity store, updates the user metadata and attributes.

Usage

identitystore_update_user(IdentityStoreId, UserId, Operations)

Arguments

IdentityStoreId

[required] The globally unique identifier for the identity store.

UserId

[required] The identifier for a user in the identity store.

Operations

[required] A list of AttributeOperation objects to apply to the requested user. These operations might add, replace, or remove an attribute.

Value

An empty list.

Request syntax

svc$update_user(
  IdentityStoreId = "string",
  UserId = "string",
  Operations = list(
    list(
      AttributePath = "string",
      AttributeValue = list()
    )
  )
)