Module Values_0.MediaDeviceInfoSource

Describes the media accelerators for the instance type.

Sourcetype nonrec t = {
  1. count : MediaDeviceCount.t option;
    (*

    The number of media accelerators for the instance type.

    *)
  2. name : MediaDeviceName.t option;
    (*

    The name of the media accelerator.

    *)
  3. manufacturer : MediaDeviceManufacturerName.t option;
    (*

    The manufacturer of the media accelerator.

    *)
  4. memoryInfo : MediaDeviceMemoryInfo.t option;
    (*

    Describes the memory available to the media accelerator.

    *)
}
Sourceval make : ?count:??? -> ?name:??? -> ?manufacturer:??? -> ?memoryInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MediaDeviceCount.t | `String of MediaDeviceName.t | `Structure of (string * [> `Integer of MediaDeviceMemorySize.t ]) 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