List Reports For Report Group
codebuild_list_reports_for_report_group | R Documentation |
Returns a list of ARNs for the reports that belong to a ReportGroup¶
Description¶
Returns a list of ARNs for the reports that belong to a ReportGroup
.
Usage¶
codebuild_list_reports_for_report_group(reportGroupArn, nextToken,
sortOrder, maxResults, filter)
Arguments¶
reportGroupArn |
[required] The ARN of the report group for which you want to return report ARNs. |
nextToken |
During a previous call, the maximum number of items that can be
returned is the value specified in |
sortOrder |
Use to specify whether the results are returned in ascending or descending order. |
maxResults |
The maximum number of paginated reports in this report group
returned per response. Use |
filter |
A |
Value¶
A list with the following syntax:
list(
nextToken = "string",
reports = list(
"string"
)
)
Request syntax¶
svc$list_reports_for_report_group(
reportGroupArn = "string",
nextToken = "string",
sortOrder = "ASCENDING"|"DESCENDING",
maxResults = 123,
filter = list(
status = "GENERATING"|"SUCCEEDED"|"FAILED"|"INCOMPLETE"|"DELETING"
)
)