Module Values.NodeConfigurationOptionSource

A list of node configurations.

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

    The node type, such as, "ra3.4xlarge".

    *)
  2. numberOfNodes : Integer.t option;
    (*

    The number of nodes.

    *)
  3. estimatedDiskUtilizationPercent : DoubleOptional.t option;
    (*

    The estimated disk utilizaton percentage.

    *)
  4. mode : Mode.t option;
    (*

    The category of the node configuration recommendation.

    *)
}
Sourceval make : ?nodeType:??? -> ?numberOfNodes:??? -> ?estimatedDiskUtilizationPercent:??? -> ?mode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DoubleOptional.t | `Enum of string | `Integer of Integer.t | `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