Module Values_1.FpgaInfoSource

Describes the FPGAs for the instance type.

Sourcetype nonrec t = {
  1. fpgas : FpgaDeviceInfoList.t option;
    (*

    Describes the FPGAs for the instance type.

    *)
  2. totalFpgaMemoryInMiB : TotalFpgaMemory.t option;
    (*

    The total memory of all FPGA accelerators for the instance type.

    *)
}
Sourceval make : ?fpgas:??? -> ?totalFpgaMemoryInMiB:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TotalFpgaMemory.t | `List of [> `Structure of (string * [> `Integer of int | `String of string | `Structure of (string * [> `Integer of int ]) list ]) list ] list ]) 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