Module Values.EgressEndpointSource

The endpoint URL used to access an Asset using one PackagingConfiguration.

Sourcetype nonrec t = {
  1. packagingConfigurationId : string option;
    (*

    The ID of the PackagingConfiguration being applied to the Asset.

    *)
  2. status : string option;
    (*

    The current processing status of the asset used for the packaging configuration. The status can be either QUEUED, PROCESSING, PLAYABLE, or FAILED. Status information won't be available for most assets ingested before 2021-09-30.

    *)
  3. url : string option;
    (*

    The URL of the parent manifest for the repackaged Asset.

    *)
}
Sourceval make : ?packagingConfigurationId:??? -> ?status:??? -> ?url:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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