Module Values.ReservationUtilizationGroupSource

A group of reservations that share a set of attributes.

Sourcetype nonrec t = {
  1. key : ReservationGroupKey.t option;
    (*

    The key for a specific reservation attribute.

    *)
  2. value : ReservationGroupValue.t option;
    (*

    The value of a specific reservation attribute.

    *)
  3. attributes : Attributes.t option;
    (*

    The attributes for this group of reservations.

    *)
  4. utilization : ReservationAggregates.t option;
    (*

    How much you used this group of reservations.

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