Skip to content

Update User

identitystore_update_user R Documentation

Updates the specified user metadata and attributes in the specified identity store

Description

Updates the specified user metadata and attributes in the specified identity store.

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. For more information on the attributes that can be added, replaced, or removed, see User.

Value

An empty list.

Request syntax

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