Module Values.RtmpOutputSettingsSource

Rtmp Output Settings

Sourcetype nonrec t = {
  1. certificateMode : RtmpOutputCertificateMode.t option;
    (*

    If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.

    *)
  2. connectionRetryInterval : int option;
    (*

    Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.

    *)
  3. destination : OutputLocationRef.t;
    (*

    The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.

    *)
  4. numRetries : int option;
    (*

    Number of retry attempts.

    *)
}
Sourceval context_ : string
Sourceval make : ?certificateMode:??? -> ?connectionRetryInterval:??? -> ?numRetries:??? -> destination:OutputLocationRef.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `Structure of (string * [> `String of string ]) 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