Search Group Profiles
datazone_search_group_profiles | R Documentation |
Searches group profiles in Amazon DataZone¶
Description¶
Searches group profiles in Amazon DataZone.
Usage¶
datazone_search_group_profiles(domainIdentifier, groupType, maxResults,
nextToken, searchText)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which you want to search group profiles. |
groupType |
[required] The group type 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 |
searchText |
Specifies the text for which to search. |
Value¶
A list with the following syntax:
list(
items = list(
list(
domainId = "string",
groupName = "string",
id = "string",
status = "ASSIGNED"|"NOT_ASSIGNED"
)
),
nextToken = "string"
)
Request syntax¶
svc$search_group_profiles(
domainIdentifier = "string",
groupType = "SSO_GROUP"|"DATAZONE_SSO_GROUP",
maxResults = 123,
nextToken = "string",
searchText = "string"
)