Get User Profile
datazone_get_user_profile | R Documentation |
Gets a user profile in Amazon DataZone¶
Description¶
Gets a user profile in Amazon DataZone.
Usage¶
datazone_get_user_profile(domainIdentifier, type, userIdentifier)
Arguments¶
domainIdentifier |
[required] the ID of the Amazon DataZone domain the data portal of which you want to get. |
type |
The type of the user profile. |
userIdentifier |
[required] The identifier of the user for which you want to get the user profile. |
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$get_user_profile(
domainIdentifier = "string",
type = "IAM"|"SSO",
userIdentifier = "string"
)