Module Values.HlsMediaStoreSettingsSource

Hls Media Store Settings

Sourcetype nonrec t = {
  1. connectionRetryInterval : int option;
    (*

    Number of seconds to wait before retrying connection to the CDN if the connection is lost.

    *)
  2. filecacheDuration : int option;
    (*

    Size in seconds of file cache for streaming outputs.

    *)
  3. mediaStoreStorageClass : HlsMediaStoreStorageClass.t option;
    (*

    When set to temporal, output files are stored in non-persistent memory for faster reading and writing.

    *)
  4. numRetries : int option;
    (*

    Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.

    *)
  5. restartDelay : int option;
    (*

    If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.

    *)
}
Sourceval make : ?connectionRetryInterval:??? -> ?filecacheDuration:??? -> ?mediaStoreStorageClass:??? -> ?numRetries:??? -> ?restartDelay:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int ]) 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