Module Values.OutputDestinationSettingsSource

Placeholder documentation for OutputDestinationSettings

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

    key used to extract the password from EC2 Parameter store

    *)
  2. streamName : string option;
    (*

    Stream name for RTMP destinations (URLs of type rtmp://)

    *)
  3. url : string option;
    (*

    A URL specifying a destination

    *)
  4. username : string option;
    (*

    username for destination

    *)
}
Sourceval make : ?passwordParam:??? -> ?streamName:??? -> ?url:??? -> ?username:??? -> 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