Module Values.UpdateInputDeviceSource

Updates an input device.

Sourcetype nonrec t = {
  1. hdDeviceSettings : InputDeviceConfigurableSettings.t option;
    (*

    The settings that you want to apply to the HD input device.

    *)
  2. name : string option;
    (*

    The name that you assigned to this input device (not the unique ID).

    *)
  3. uhdDeviceSettings : InputDeviceConfigurableSettings.t option;
    (*

    The settings that you want to apply to the UHD input device.

    *)
  4. availabilityZone : string option;
    (*

    The Availability Zone you want associated with this input device.

    *)
}
Sourceval make : ?hdDeviceSettings:??? -> ?name:??? -> ?uhdDeviceSettings:??? -> ?availabilityZone:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `Enum of string | `Integer of int ]) list ] list | `String of string | `Structure of (string * [> `String of string ]) 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