Search User Profiles
datazone_search_user_profiles | R Documentation |
Searches user profiles in Amazon DataZone¶
Description¶
Searches user profiles in Amazon DataZone.
Usage¶
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
search_user_profiles
. When the number of results to be listed is greater than the value ofMaxResults
, the response contains aNextToken
value that you can use in a subsequent call tosearch_user_profiles
to list the next set of results.nextToken
When the number of results is greater than the default value for the
MaxResults
parameter, or if you explicitly specify a value forMaxResults
that is less than the number of results, the response includes a pagination token namedNextToken
. You can specify thisNextToken
value in a subsequent call tosearch_user_profiles
to list the next set of results.searchText
Specifies the text for which to search.
userType
[required] Specifies the user type for the
search_user_profiles
action.
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"
)