Module Values.NdiConfigSource

Specifies the configuration settings for NDI sources and outputs.

Sourcetype nonrec t = {
  1. ndiState : NdiState.t option;
    (*

    A setting that controls whether NDI® sources or outputs can be used in the flow. The default value is DISABLED. This value must be set as ENABLED for your flow to support NDI sources or outputs.

    *)
  2. machineName : String_.t option;
    (*

    A prefix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect generates a unique 12-character ID as the prefix.

    *)
  3. ndiDiscoveryServers : NdiDiscoveryServerConfig.t list option;
    (*

    A list of up to three NDI discovery server configurations. While not required by the API, this configuration is necessary for NDI functionality to work properly.

    *)
}
Sourceval make : ?ndiState:??? -> ?machineName:??? -> ?ndiDiscoveryServers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of 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