Update User
finspacedata_update_user | R Documentation |
Modifies the details of the specified user¶
Description¶
Modifies the details of the specified user. You cannot update the
userId
for a user.
Usage¶
finspacedata_update_user(userId, type, firstName, lastName, apiAccess,
apiAccessPrincipalArn, clientToken)
Arguments¶
userId |
[required] The unique identifier for the user that you want to update. |
type |
The option to indicate the type of user.
|
firstName |
The first name of the user. |
lastName |
The last name of the user. |
apiAccess |
The option to indicate whether the user can use the
|
apiAccessPrincipalArn |
The ARN identifier of an AWS user or role that is allowed to call
the |
clientToken |
A token that ensures idempotency. This token expires in 10 minutes. |
Value¶
A list with the following syntax:
list(
userId = "string"
)
Request syntax¶
svc$update_user(
userId = "string",
type = "SUPER_USER"|"APP_USER",
firstName = "string",
lastName = "string",
apiAccess = "ENABLED"|"DISABLED",
apiAccessPrincipalArn = "string",
clientToken = "string"
)