Retrieves one or more code coverage reports.
See https://www.paws-r-sdk.com/docs/codebuild_describe_code_coverages/ for full documentation.
codebuild_describe_code_coverages(
reportArn,
nextToken = NULL,
maxResults = NULL,
sortOrder = NULL,
sortBy = NULL,
minLineCoveragePercentage = NULL,
maxLineCoveragePercentage = NULL
)
[required] The ARN of the report for which test cases are returned.
The nextToken
value returned from a previous call to
describe_code_coverages
. This
specifies the next item to return. To return the beginning of the list,
exclude this parameter.
The maximum number of results to return.
Specifies if the results are sorted in ascending or descending order.
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.
The minimum line coverage percentage to report.
The maximum line coverage percentage to report.