Module Values.ReservationCoverageGroupSource

A group of reservations that share a set of attributes.

Sourcetype nonrec t = {
  1. attributes : Attributes.t option;
    (*

    The attributes for this group of reservations.

    *)
  2. coverage : Coverage.t option;
    (*

    How much instance usage this group of reservations covered.

    *)
}
Sourceval make : ?attributes:??? -> ?coverage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeType.t ] * [> `String of AttributeValue.t ]) list | `Structure of (string * [> `Structure of (string * [> `String of OnDemandHours.t ]) list ]) 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