Module Values.PipelineDetailSource

Runtime details of a pipeline when a channel is running.

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

    The name of the active input attachment currently being ingested by this pipeline.

    *)
  2. activeInputSwitchActionName : string option;
    (*

    The name of the input switch schedule action that occurred most recently and that resulted in the switch to the current input attachment for this pipeline.

    *)
  3. activeMotionGraphicsActionName : string option;
    (*

    The name of the motion graphics activate action that occurred most recently and that resulted in the current graphics URI for this pipeline.

    *)
  4. activeMotionGraphicsUri : string option;
    (*

    The current URI being used for HTML5 motion graphics for this pipeline.

    *)
  5. pipelineId : string option;
    (*

    Pipeline ID

    *)
  6. channelEngineVersion : ChannelEngineVersionResponse.t option;
    (*

    Current engine version of the encoder for this pipeline.

    *)
  7. mediaConnectRouterOutputConnectionMap : MediaConnectRouterOutputConnections.t option;
    (*

    A map of output names to the MediaConnect Router connection for this pipeline. Only present for channels with MediaConnect Router outputs.

    *)
}
Sourceval make : ?activeInputAttachmentName:??? -> ?activeInputSwitchActionName:??? -> ?activeMotionGraphicsActionName:??? -> ?activeMotionGraphicsUri:??? -> ?pipelineId:??? -> ?channelEngineVersion:??? -> ?mediaConnectRouterOutputConnectionMap:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `Structure of (string * [> `String of string ]) list ]) list | `String of string | `Structure of (string * [> `String of string | `Timestamp of string ]) 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