Module Values.DescribeCodeCoveragesInputSource

Retrieves one or more code coverage reports.

Sourcetype nonrec t = {
  1. reportArn : NonEmptyString.t;
    (*

    The ARN of the report for which test cases are returned.

    *)
  2. 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.

    *)
  3. maxResults : PageSize.t option;
    (*

    The maximum number of results to return.

    *)
  4. sortOrder : SortOrderType.t option;
    (*

    Specifies if the results are sorted in ascending or descending order.

    *)
  5. 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.

    *)
  6. minLineCoveragePercentage : Percentage.t option;
    (*

    The minimum line coverage percentage to report.

    *)
  7. maxLineCoveragePercentage : Percentage.t option;
    (*

    The maximum line coverage percentage to report.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> ?sortOrder:??? -> ?sortBy:??? -> ?minLineCoveragePercentage:??? -> ?maxLineCoveragePercentage:??? -> reportArn:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Percentage.t | `Enum of string | `Integer of PageSize.t | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t