Module Values.InputDeviceNetworkSettingsSource

The network settings for the input device.

Sourcetype nonrec t = {
  1. dnsAddresses : string list option;
    (*

    The DNS addresses of the input device.

    *)
  2. gateway : string option;
    (*

    The network gateway IP address.

    *)
  3. ipAddress : string option;
    (*

    The IP address of the input device.

    *)
  4. ipScheme : InputDeviceIpScheme.t option;
    (*

    Specifies whether the input device has been configured (outside of MediaLive) to use a dynamic IP address assignment (DHCP) or a static IP address.

    *)
  5. subnetMask : string option;
    (*

    The subnet mask of the input device.

    *)
}
Sourceval make : ?dnsAddresses:??? -> ?gateway:??? -> ?ipAddress:??? -> ?ipScheme:??? -> ?subnetMask:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string ]) 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