Module Values.ReservedNodeConfigurationOptionSource

Details for a reserved-node exchange. Examples include the node type for a reserved node, the price for a node, the node's state, and other details.

Sourcetype nonrec t = {
  1. sourceReservedNode : ReservedNode.t option;
  2. targetReservedNodeCount : Integer.t option;
    (*

    The target reserved-node count.

    *)
  3. targetReservedNodeOffering : ReservedNodeOffering.t option;
}
Sourceval make : ?sourceReservedNode:??? -> ?targetReservedNodeCount:??? -> ?targetReservedNodeOffering:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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 | `Timestamp of TStamp.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