Module Values.CoverageSource

The amount of instance usage that a reservation covered.

Sourcetype nonrec t = {
  1. coverageHours : CoverageHours.t option;
    (*

    The amount of instance usage that the reservation covered, in hours.

    *)
  2. coverageNormalizedUnits : CoverageNormalizedUnits.t option;
    (*

    The amount of instance usage that the reservation covered, in normalized units.

    *)
  3. coverageCost : CoverageCost.t option;
    (*

    The amount of cost that the reservation covered.

    *)
}
Sourceval make : ?coverageHours:??? -> ?coverageNormalizedUnits:??? -> ?coverageCost:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of OnDemandHours.t ]) list ]) 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