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, status, type,
userIdentifier)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which a user profile is updated. |
status |
[required] The status of the user profile that are to be updated. |
type |
The type of the user profile that are to be updated. |
userIdentifier |
[required] The identifier of the user whose user profile is to be updated. |
Value¶
A list with the following syntax:
list(
details = list(
iam = list(
arn = "string"
),
sso = list(
firstName = "string",
lastName = "string",
username = "string"
)
),
domainId = "string",
id = "string",
status = "ASSIGNED"|"NOT_ASSIGNED"|"ACTIVATED"|"DEACTIVATED",
type = "IAM"|"SSO"
)
Request syntax¶
svc$update_user_profile(
domainIdentifier = "string",
status = "ASSIGNED"|"NOT_ASSIGNED"|"ACTIVATED"|"DEACTIVATED",
type = "IAM"|"SSO",
userIdentifier = "string"
)