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, maxResults, nextToken,
searchText, userType)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which you want to search user profiles. |
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 |
searchText |
Specifies the text for which to search. |
userType |
[required] Specifies the user type for the
|
Value¶
A list with the following syntax:
list(
items = list(
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"
)
),
nextToken = "string"
)
Request syntax¶
svc$search_user_profiles(
domainIdentifier = "string",
maxResults = 123,
nextToken = "string",
searchText = "string",
userType = "SSO_USER"|"DATAZONE_USER"|"DATAZONE_SSO_USER"|"DATAZONE_IAM_USER"
)