Module Values.ReservedNodeOfferingSource

Describes a reserved node offering.

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

    The offering identifier.

    *)
  2. nodeType : String_.t option;
    (*

    The node type offered by the reserved node offering.

    *)
  3. duration : Integer.t option;
    (*

    The duration, in seconds, for which the offering will reserve the node.

    *)
  4. fixedPrice : Double.t option;
    (*

    The upfront fixed charge you will pay to purchase the specific reserved node offering.

    *)
  5. usagePrice : Double.t option;
    (*

    The rate you are charged for each hour the cluster that is using the offering is running.

    *)
  6. currencyCode : String_.t option;
    (*

    The currency code for the compute nodes offering.

    *)
  7. offeringType : String_.t option;
    (*

    The anticipated utilization of the reserved node, as defined in the reserved node offering.

    *)
  8. recurringCharges : RecurringChargeList.t option;
    (*

    The charge to your account regardless of whether you are creating any clusters using the node offering. Recurring charges are only in effect for heavy-utilization reserved nodes.

    *)
  9. reservedNodeOfferingType : ReservedNodeOfferingType.t option;
}
Sourceval make : ?reservedNodeOfferingId:??? -> ?nodeType:??? -> ?duration:??? -> ?fixedPrice:??? -> ?usagePrice:??? -> ?currencyCode:??? -> ?offeringType:??? -> ?recurringCharges:??? -> ?reservedNodeOfferingType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ] list | `String of 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