Search User Profiles
| datazone_search_user_profiles | R Documentation |
Searches user profiles in Amazon DataZone¶
Description¶
Searches user profiles in Amazon DataZone.
Usage¶
datazone_search_user_profiles(domainIdentifier, userType, searchText,
maxResults, nextToken)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which you want to search user profiles. |
userType |
[required] Specifies the user type for the
|
searchText |
Specifies the text for which to search. |
maxResults |
The maximum number of results to return in a single call to
|
nextToken |
When the number of results is greater than the default value for
the |
Value¶
A list with the following syntax:
list(
items = list(
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"
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$search_user_profiles(
domainIdentifier = "string",
userType = "SSO_USER"|"DATAZONE_USER"|"DATAZONE_SSO_USER"|"DATAZONE_IAM_USER",
searchText = "string",
maxResults = 123,
nextToken = "string"
)