List Associated Attribute Groups
appregistry_list_associated_attribute_groups | R Documentation |
Lists all attribute groups that are associated with specified application¶
Description¶
Lists all attribute groups that are associated with specified application. Results are paginated.
Usage¶
appregistry_list_associated_attribute_groups(application, nextToken,
maxResults)
Arguments¶
application |
[required] The name or ID of the application. |
nextToken |
The token to use to get the next page of results after a previous API call. |
maxResults |
The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional. |
Value¶
A list with the following syntax:
list(
attributeGroups = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_associated_attribute_groups(
application = "string",
nextToken = "string",
maxResults = 123
)