Module Values.HlsAkamaiSettingsSource

Hls Akamai 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. httpTransferMode : HlsAkamaiHttpTransferMode.t option;
    (*

    Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.

    *)
  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.

    *)
  6. salt : string option;
    (*

    Salt for authenticated Akamai.

    *)
  7. token : string option;
    (*

    Token parameter for authenticated akamai. If not specified, _gda_ is used.

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