Skip to content

Update User Identity Info

connect_update_user_identity_info R Documentation

Updates the identity information for the specified user

Description

Updates the identity information for the specified user.

We strongly recommend limiting who has the ability to invoke update_user_identity_info. Someone with that ability can change the login credentials of other users by changing their email address. This poses a security risk to your organization. They can change the email address of a user to the attacker's email address, and then reset the password through email. For more information, see Best Practices for Security Profiles in the Amazon Connect Administrator Guide.

Usage

connect_update_user_identity_info(IdentityInfo, UserId, InstanceId)

Arguments

IdentityInfo

[required] The identity information for the user.

UserId

[required] The identifier of the user account.

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

Value

An empty list.

Request syntax

svc$update_user_identity_info(
  IdentityInfo = list(
    FirstName = "string",
    LastName = "string",
    Email = "string",
    SecondaryEmail = "string",
    Mobile = "string"
  ),
  UserId = "string",
  InstanceId = "string"
)