List Report Groups
codebuild_list_report_groups | R Documentation |
Gets a list ARNs for the report groups in the current Amazon Web Services account¶
Description¶
Gets a list ARNs for the report groups in the current Amazon Web Services account.
Usage¶
codebuild_list_report_groups(sortOrder, sortBy, nextToken, maxResults)
Arguments¶
sortOrder |
Used to specify the order to sort the list of returned report
groups. Valid values are |
sortBy |
The criterion to be used to list build report groups. Valid values include:
|
nextToken |
During a previous call, the maximum number of items that can be
returned is the value specified in |
maxResults |
The maximum number of paginated report groups returned per
response. Use |
Value¶
A list with the following syntax:
list(
nextToken = "string",
reportGroups = list(
"string"
)
)
Request syntax¶
svc$list_report_groups(
sortOrder = "ASCENDING"|"DESCENDING",
sortBy = "NAME"|"CREATED_TIME"|"LAST_MODIFIED_TIME",
nextToken = "string",
maxResults = 123
)