Module Values_1.ReservationValueSource

The cost associated with the Reserved Instance.

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

    The hourly rate of the reservation.

    *)
  2. remainingTotalValue : Values_0.String_.t option;
    (*

    The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice * number of hours remaining).

    *)
  3. remainingUpfrontValue : Values_0.String_.t option;
    (*

    The remaining upfront cost of the reservation.

    *)
}
Sourceval make : ?hourlyPrice:??? -> ?remainingTotalValue:??? -> ?remainingUpfrontValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.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