Skip to content

Update User Proficiencies

connect_update_user_proficiencies R Documentation

Updates the properties associated with the proficiencies of a user

Description

Updates the properties associated with the proficiencies of a user.

Usage

connect_update_user_proficiencies(InstanceId, UserId, UserProficiencies)

Arguments

InstanceId

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

UserId

[required] The identifier of the user account.

UserProficiencies

[required] The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.

Value

An empty list.

Request syntax

svc$update_user_proficiencies(
  InstanceId = "string",
  UserId = "string",
  UserProficiencies = list(
    list(
      AttributeName = "string",
      AttributeValue = "string",
      Level = 123.0
    )
  )
)