Update User Profile
| datazone_update_user_profile | R Documentation |
Updates the specified user profile in Amazon DataZone¶
Description¶
Updates the specified user profile in Amazon DataZone.
Usage¶
datazone_update_user_profile(domainIdentifier, userIdentifier, type,
status, sessionName)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which a user profile is updated. |
userIdentifier |
[required] The identifier of the user whose user profile is to be updated. |
type |
The type of the user profile that are to be updated. |
status |
[required] The status of the user profile that are to be updated. |
sessionName |
The session name for IAM role sessions. |
Value¶
A list with the following syntax:
list(
domainId = "string",
id = "string",
type = "IAM"|"SSO",
status = "ASSIGNED"|"NOT_ASSIGNED"|"ACTIVATED"|"DEACTIVATED",
details = list(
iam = list(
arn = "string",
principalId = "string",
sessionName = "string",
groupProfileId = "string"
),
sso = list(
username = "string",
firstName = "string",
lastName = "string"
)
)
)
Request syntax¶
svc$update_user_profile(
domainIdentifier = "string",
userIdentifier = "string",
type = "IAM"|"SSO",
status = "ASSIGNED"|"NOT_ASSIGNED"|"ACTIVATED"|"DEACTIVATED",
sessionName = "string"
)