Retrieves one or more code coverage reports
Source:R/codebuild_operations.R
codebuild_describe_code_coverages.RdRetrieves one or more code coverage reports.
See https://www.paws-r-sdk.com/docs/codebuild_describe_code_coverages/ for full documentation.
Usage
codebuild_describe_code_coverages(
reportArn,
nextToken = NULL,
maxResults = NULL,
sortOrder = NULL,
sortBy = NULL,
minLineCoveragePercentage = NULL,
maxLineCoveragePercentage = NULL
)Arguments
- reportArn
[required] The ARN of the report for which test cases are returned.
- nextToken
The
nextTokenvalue returned from a previous call todescribe_code_coverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.- maxResults
The maximum number of results to return.
- sortOrder
Specifies if the results are sorted in ascending or descending order.
- sortBy
Specifies how the results are sorted. Possible values are:
FILE_PATH
The results are sorted by file path.
LINE_COVERAGE_PERCENTAGE
The results are sorted by the percentage of lines that are covered.
- minLineCoveragePercentage
The minimum line coverage percentage to report.
- maxLineCoveragePercentage
The maximum line coverage percentage to report.