Module Values.DescribeCodeCoveragesOutputSource

Retrieves one or more code coverage reports.

Sourcetype nonrec t = {
  1. nextToken : String_.t option;
    (*

    If there are more items to return, this contains a token that is passed to a subsequent call to DescribeCodeCoverages to retrieve the next set of items.

    *)
  2. codeCoverages : CodeCoverages.t option;
    (*

    An array of CodeCoverage objects that contain the results.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidInputException of InvalidInputException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?nextToken:??? -> ?codeCoverages:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInputException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidInputException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Percentage.t | `Integer of NonNegativeInt.t | `String of NonEmptyString.t | `Timestamp of Timestamp.t ]) list ] list | `String of String_.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