Module Values.CreateMssManifestConfigurationSource

Configuration parameters for creating a Microsoft Smooth Streaming (MSS) manifest. MSS is a streaming media format developed by Microsoft that delivers adaptive bitrate streaming content to compatible players and devices.

Sourcetype nonrec t = {
  1. manifestName : ManifestName.t;
    (*

    A short string that's appended to the endpoint URL to create a unique path to this MSS manifest. The manifest name must be unique within the origin endpoint and can contain letters, numbers, hyphens, and underscores.

    *)
  2. manifestWindowSeconds : CreateMssManifestConfigurationManifestWindowSecondsInteger.t option;
    (*

    The total duration (in seconds) of the manifest window. This determines how much content is available in the manifest at any given time. The manifest window slides forward as new segments become available, maintaining a consistent duration of content. The minimum value is 30 seconds.

    *)
  3. filterConfiguration : FilterConfiguration.t option;
  4. manifestLayout : MssManifestLayout.t option;
    (*

    Determines the layout format of the MSS manifest. This controls how the manifest is structured and presented to client players, affecting compatibility with different MSS-compatible devices and applications.

    *)
}
Sourceval context_ : string
Sourceval make : ?manifestWindowSeconds:??? -> ?filterConfiguration:??? -> ?manifestLayout:??? -> manifestName:ManifestName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of CreateMssManifestConfigurationManifestWindowSecondsInteger.t | `String of ManifestName.t | `Structure of (string * [> `Integer of FilterConfigurationTimeDelaySecondsInteger.t | `String of FilterConfigurationManifestFilterString.t | `Timestamp of Timestamp.t ]) 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