Values.DescribeCodeCoveragesInputSourceRetrieves one or more code coverage reports.
type nonrec t = {reportArn : NonEmptyString.t;The ARN of the report for which test cases are returned.
*)nextToken : String_.t option;The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
*)maxResults : PageSize.t option;The maximum number of results to return.
*)sortOrder : SortOrderType.t option;Specifies if the results are sorted in ascending or descending order.
*)sortBy : ReportCodeCoverageSortByType.t option;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 : Percentage.t option;The minimum line coverage percentage to report.
*)maxLineCoveragePercentage : Percentage.t option;The maximum line coverage percentage to report.
*)}val make :
?nextToken:??? ->
?maxResults:??? ->
?sortOrder:??? ->
?sortBy:??? ->
?minLineCoveragePercentage:??? ->
?maxLineCoveragePercentage:??? ->
reportArn:NonEmptyString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Double of Percentage.t
| `Enum of string
| `Integer of PageSize.t
| `String of NonEmptyString.t ])
list ]