Module Values.GetHlsManifestConfigurationSource

Retrieve the HTTP live streaming (HLS) manifest configuration.

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

    A short short string that's appended to the endpoint URL. The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index. MediaPackage automatically inserts the format extension, such as .m3u8. You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.

    *)
  2. url : String_.t option;
    (*

    The egress domain URL for stream delivery from MediaPackage.

    *)
  3. childManifestName : ResourceName.t option;
    (*

    A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default child manifest name, index_1. The manifestName on the HLSManifest object overrides the manifestName you provided on the originEndpoint object.

    *)
  4. manifestWindowSeconds : Integer.t option;
    (*

    The total duration (in seconds) of the manifest's content.

    *)
  5. programDateTimeIntervalSeconds : Integer.t option;
    (*

    Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.

    *)
  6. scteHls : ScteHls.t option;
  7. filterConfiguration : FilterConfiguration.t option;
  8. startTag : StartTag.t option;
  9. urlEncodeChildManifest : Boolean.t option;
    (*

    When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with Amazon Web Services Signature Version 4 (SigV4) signature signing protocol. For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.

    *)
  10. uriPathType : UriPathType.t option;
    (*

    The type of path used in manifest URIs. LEAF indicates leaf-relative paths. ROOT indicates root-relative paths that include the full path from root.

    *)
}
Sourceval make : ?manifestName:??? -> ?url:??? -> ?childManifestName:??? -> ?manifestWindowSeconds:??? -> ?programDateTimeIntervalSeconds:??? -> ?scteHls:??? -> ?filterConfiguration:??? -> ?startTag:??? -> ?urlEncodeChildManifest:??? -> ?uriPathType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of ResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Float of Float_.t | `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