Module Values.AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetailsSource

The minimum and maximum amount of memory per vCPU, in GiB.

Sourcetype nonrec t = {
  1. max : Double.t option;
    (*

    The maximum amount of memory per vCPU, in GiB. If this parameter is omitted, there's no maximum limit.

    *)
  2. min : Double.t option;
    (*

    The minimum amount of memory per vCPU, in GiB. If this parameter is omitted, there's no maximum limit.

    *)
}
Sourceval make : ?max:??? -> ?min:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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