List Attribute Groups For Application
appregistry_list_attribute_groups_for_application | R Documentation |
Lists the details of all attribute groups associated with a specific application¶
Description¶
Lists the details of all attribute groups associated with a specific application. The results display in pages.
Usage¶
appregistry_list_attribute_groups_for_application(application,
nextToken, maxResults)
Arguments¶
application |
[required] The name or ID of the application. |
nextToken |
This token retrieves the next page of results after a previous API call. |
maxResults |
The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional. |
Value¶
A list with the following syntax:
list(
attributeGroupsDetails = list(
list(
id = "string",
arn = "string",
name = "string",
createdBy = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_attribute_groups_for_application(
application = "string",
nextToken = "string",
maxResults = 123
)