List Reports
codebuild_list_reports | R Documentation |
Returns a list of ARNs for the reports in the current Amazon Web Services account¶
Description¶
Returns a list of ARNs for the reports in the current Amazon Web Services account.
Usage¶
codebuild_list_reports(sortOrder, nextToken, maxResults, filter)
Arguments¶
sortOrder |
Specifies the sort order for the list of returned reports. Valid values are:
|
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 reports returned per response.
Use |
filter |
A |
Value¶
A list with the following syntax:
list(
nextToken = "string",
reports = list(
"string"
)
)
Request syntax¶
svc$list_reports(
sortOrder = "ASCENDING"|"DESCENDING",
nextToken = "string",
maxResults = 123,
filter = list(
status = "GENERATING"|"SUCCEEDED"|"FAILED"|"INCOMPLETE"|"DELETING"
)
)