Module Values.IngressGatewayBridgeSource

Create a bridge with the ingress bridge type. An ingress bridge is a ground-to-cloud bridge. The content originates at your premises and is delivered to the cloud.

Sourcetype nonrec t = {
  1. instanceId : String_.t option;
    (*

    The ID of the instance running this bridge.

    *)
  2. maxBitrate : Integer.t option;
    (*

    The maximum expected bitrate (in bps) of the ingress bridge.

    *)
  3. maxOutputs : Integer.t option;
    (*

    The maximum number of outputs on the ingress bridge.

    *)
}
Sourceval make : ?instanceId:??? -> ?maxBitrate:??? -> ?maxOutputs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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