Module Values_1.HostPropertiesSource

Describes the properties of a Dedicated Host.

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

    The number of cores on the Dedicated Host.

    *)
  2. instanceType : Values_0.String_.t option;
    (*

    The instance type supported by the Dedicated Host. For example, m5.large. If the host supports multiple instance types, no instanceType is returned.

    *)
  3. instanceFamily : Values_0.String_.t option;
    (*

    The instance family supported by the Dedicated Host. For example, m5.

    *)
  4. sockets : Values_0.Integer.t option;
    (*

    The number of sockets on the Dedicated Host.

    *)
  5. totalVCpus : Values_0.Integer.t option;
    (*

    The total number of vCPUs on the Dedicated Host.

    *)
}
Sourceval make : ?cores:??? -> ?instanceType:??? -> ?instanceFamily:??? -> ?sockets:??? -> ?totalVCpus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.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