Module Values.EC2CapacitySource

Information about EC2 capacity.

Sourcetype nonrec t = {
  1. family : Family.t option;
    (*

    The family of the EC2 capacity.

    *)
  2. maxSize : MaxSize.t option;
    (*

    The maximum size of the EC2 capacity.

    *)
  3. quantity : Quantity.t option;
    (*

    The quantity of the EC2 capacity.

    *)
}
Sourceval make : ?family:??? -> ?maxSize:??? -> ?quantity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Family.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