Module Values.AwsEc2LaunchTemplateDataCpuOptionsDetailsSource

Specifies the CPU options for an Amazon EC2 instance. For more information, see Optimize CPU options in the Amazon Elastic Compute Cloud User Guide.

Sourcetype nonrec t = {
  1. coreCount : Integer.t option;
    (*

    The number of CPU cores for the instance.

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

    The number of threads per CPU core. A value of 1 disables multithreading for the instance, The default value is 2.

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