Module Values_3.PriceScheduleSpecificationSource

Describes the price for a Reserved Instance.

Sourcetype nonrec t = {
  1. term : Values_0.Long.t option;
    (*

    The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.

    *)
  2. price : Values_0.Double.t option;
    (*

    The fixed price for the term.

    *)
  3. currencyCode : Values_0.CurrencyCodeValues.t option;
    (*

    The currency for transacting the Reserved Instance resale. At this time, the only supported currency is USD.

    *)
}
Sourceval make : ?term:??? -> ?price:??? -> ?currencyCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.Double.t | `Enum of string | `Long of Values_0.Long.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